@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --color-coral: #e8a598;
  --color-cream: #faf6f2;
  --color-sage: #b5c4a8;
  --color-navy: #1a365d;
  --color-white: #ffffff;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-border: #e2e8f0;
  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 50%;
  --shadow-sm: 0 1px 2px rgba(26,54,93,0.05);
  --shadow-md: 0 4px 12px rgba(26,54,93,0.08);
  --shadow-lg: 0 8px 24px rgba(26,54,93,0.12);
  --shadow-xl: 0 16px 48px rgba(26,54,93,0.16);
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --max-width: 75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: relative;
  padding: var(--space-lg) 0;
  background: transparent;
  z-index: 1001;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-xs) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-coral);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 110;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition-base);
  border-radius: 2px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--color-white);
  padding: var(--space-3xl) var(--space-xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
  z-index: 105;
}

.nav-mobile.active {
  transform: translateY(0);
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 100;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-3xl);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-coral);
  background: rgba(232, 165, 152, 0.15);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.hero-text {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 32rem;
  margin-bottom: var(--space-xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #2d4a7c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-navy);
}

.btn-coral {
  background: var(--color-coral);
  color: var(--color-white);
}

.btn-coral:hover {
  background: #d8958a;
  transform: translateY(-2px);
}

.hero-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background-image: url('../visuals/bg-image-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-sage);
  border-radius: 0 0 0 40%;
  z-index: 1;
  opacity: 0.6;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-coral);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.section-text {
  color: var(--color-text-light);
  max-width: 36rem;
  margin: 0 auto;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-sage) 100%);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.card-text {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.features-grid {
  display: grid;
  gap: var(--space-lg);
}

.curved-section {
  position: relative;
  background: var(--color-white);
  padding: var(--space-3xl) 0;
  margin: var(--space-2xl) 0;
}

.curved-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--color-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.curved-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--color-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.asymmetric-block {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.asymmetric-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(232, 165, 152, 0.15);
  border-radius: 50%;
}

.asymmetric-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.asymmetric-text {
  opacity: 0.9;
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-lg);
}

.products-grid {
  display: grid;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: var(--space-lg);
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.product-desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-coral);
}

.testimonial-card {
  background: linear-gradient(135deg, var(--color-sage) 0%, rgba(181, 196, 168, 0.6) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  z-index: 1009;
  position: relative;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(232, 165, 152, 0.05);
}

.faq-icon {
  font-size: 1rem;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.contact-wrapper {
  display: grid;
  gap: var(--space-xl);
}

.contact-info {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 50%;
  height: 80%;
  background: rgba(181, 196, 168, 0.2);
  border-radius: 50%;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.contact-item-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  transition: border-color var(--transition-fast);
  background: var(--color-cream);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-coral);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-coral);
}

.form-checkbox label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.form-checkbox a {
  color: var(--color-coral);
  text-decoration: underline;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  margin-top: var(--space-xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.footer-link {
  font-size: 0.8125rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-link:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  opacity: 0.7;
  text-align: center;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transform: translateY(150%);
  transition: transform var(--transition-slow);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.8125rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.cookie-text a {
  color: var(--color-coral);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.cookie-accept {
  background: var(--color-navy);
  color: var(--color-white);
}

.cookie-decline {
  background: var(--color-cream);
  color: var(--color-text);
}

.page-hero {
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 30%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-sage) 0%, transparent 100%);
  opacity: 0.2;
  border-radius: 0 0 50% 50%;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.page-subtitle {
  color: var(--color-text-light);
  max-width: 32rem;
  margin: 0 auto;
}

.content-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.content-block p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.content-block ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-block li {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.thank-you-section {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-sage) 100%);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 2rem;
  margin: 0 auto var(--space-xl);
}

.thank-you-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.thank-you-text {
  color: var(--color-text-light);
  max-width: 28rem;
  margin: 0 auto var(--space-xl);
}

.error-section {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 600;
  color: var(--color-coral);
  line-height: 1;
  opacity: 0.8;
}

.error-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin: var(--space-md) 0;
}

.error-text {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.about-grid {
  display: grid;
  gap: var(--space-xl);
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 250px;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: rgba(232, 165, 152, 0.1);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-coral);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: var(--space-xs);
}

.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-coral);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) + 4px);
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  border-radius: var(--radius-full);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-coral);
  text-transform: uppercase;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-navy);
  margin: var(--space-xs) 0;
}

.timeline-text {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.process-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.process-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-coral);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.process-content {
  flex: 1;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.process-text {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.flow-section {
  background: linear-gradient(135deg, rgba(232, 165, 152, 0.1) 0%, rgba(181, 196, 168, 0.1) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.flow-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.overlap-cards {
  display: grid;
  gap: var(--space-md);
}

.overlap-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.overlap-card:nth-child(2) {
  margin-left: var(--space-md);
}

.overlap-card:nth-child(3) {
  margin-left: var(--space-xl);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, #2d4a7c 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: rgba(232, 165, 152, 0.1);
  border-radius: 50%;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.cta-text {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.artisan-grid {
  display: grid;
  gap: var(--space-md);
}

.artisan-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.artisan-image {
  height: 180px;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-sage) 100%);
}

.artisan-body {
  padding: var(--space-lg);
  text-align: center;
}

.artisan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.artisan-role {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-coral);
}

.value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-sage) 100%);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  flex-shrink: 0;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.value-text {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.kit-features {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.kit-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.kit-feature i {
  color: var(--color-sage);
  font-size: 0.875rem;
}

@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .artisan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .burger {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .cookie-popup {
    max-width: 400px;
    left: var(--space-lg);
  }
  
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .overlap-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .overlap-card:nth-child(2),
  .overlap-card:nth-child(3) {
    margin-left: 0;
    transform: translateY(var(--space-lg));
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: var(--space-3xl) 0;
  }
  
  .section {
    padding: var(--space-3xl) 0 var(--space-3xl);
  }
  
  .product-image {
    height: 240px;
  }
}