:root {
  --plum-900: #1a0a1f;
  --plum-800: #2d1235;
  --plum-700: #4a1d56;
  --plum-600: #6b2878;
  --plum-500: #7B2D8E;
  --plum-400: #9b4db0;
  --plum-300: #c07dd0;
  --plum-200: #e0c0ea;
  --plum-100: #f3e5f7;
  --plum-50: #faf5fc;
  --amber-600: #c47f08;
  --amber-500: #F5A623;
  --amber-400: #f7b94a;
  --amber-300: #fad48a;
  --amber-200: #fce8c0;
  --amber-100: #fef6e8;
  --neutral-900: #111110;
  --neutral-800: #1e1e1d;
  --neutral-700: #2e2e2d;
  --neutral-600: #454544;
  --neutral-500: #6e6e6c;
  --neutral-400: #90908e;
  --neutral-300: #b8b8b5;
  --neutral-200: #d4d4d1;
  --neutral-100: #e8e8e5;
  --neutral-50: #f5f5f3;
  --neutral-25: #FAFAF8;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--neutral-25);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* TYPOGRAPHY */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-500);
  margin-bottom: 12px;
  background: var(--plum-100);
  padding: 6px 14px;
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--neutral-500);
  max-width: 640px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px 28px; font-size: 1rem; }

.btn-amber {
  background: var(--amber-500);
  color: var(--neutral-900);
  box-shadow: 0 2px 8px rgba(245,166,35,0.3);
}
.btn-amber:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--plum-700);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--plum-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250,250,248,0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--plum-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-icon { color: var(--plum-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-600);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--plum-600); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--plum-500);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-700) 35%, var(--plum-600) 60%, var(--plum-500) 100%);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(245,166,35,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(192,125,208,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(245,166,35,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-300);
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-stat { text-align: left; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber-400);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-image { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.hero-img-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--neutral-800);
  z-index: 2;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-100);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-600);
}
.trust-item svg { color: var(--plum-500); flex-shrink: 0; }

/* FLAVORS */
.flavors {
  padding: 100px 0;
  background: var(--neutral-25);
}
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.flavor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--neutral-100);
}
.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--plum-200);
}
.flavor-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.flavor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.flavor-card:hover .flavor-img img { transform: scale(1.06); }
.flavor-body { padding: 24px; }
.flavor-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}
.flavor-body p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.65;
}

/* ABOUT */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/6; }
.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.about-experience {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--plum-600);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--amber-400);
}
.exp-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
  font-size: 1rem;
  color: var(--neutral-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--plum-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--plum-600);
}
.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--neutral-800);
  margin-bottom: 2px;
}
.about-feature span {
  font-size: 0.85rem;
  color: var(--neutral-500);
}

/* PROCESS */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--neutral-25) 0%, var(--plum-50) 100%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--plum-200), var(--amber-300), var(--plum-200));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--plum-400);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--plum-600);
  border: 3px solid var(--plum-100);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--plum-600);
  color: var(--white);
  border-color: var(--plum-600);
  transform: scale(1.06);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* GALLERY */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--large { grid-column: span 5; grid-row: span 2; }
.gallery-item--large img { aspect-ratio: 6/5; }
.gallery-item--wide { grid-column: span 7; }
.gallery-item--wide img,
.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
  aspect-ratio: 4/3;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-700) 100%);
  color: var(--white);
}
.testimonials .section-tag { background: rgba(245,166,35,0.15); color: var(--amber-300); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--plum-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  border: 2px solid var(--amber-500);
}
.author-name {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* CTA */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amber-600) 0%, var(--amber-500) 50%, var(--plum-600) 100%);
}
.cta .container { position: relative; z-index: 1; }
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; color: var(--white); }
.cta-content .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact {
  padding: 100px 0;
  background: var(--neutral-25);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-text {
  font-size: 1rem;
  color: var(--neutral-500);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.detail-icon {
  width: 44px;
  height: 44px;
  background: var(--plum-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--plum-600);
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neutral-400);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--plum-600); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--neutral-800);
  background: var(--neutral-25);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,45,142,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { color: #10b981; flex-shrink: 0; }

/* FOOTER */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo-icon { color: var(--amber-500); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.footer-col a:hover { color: var(--amber-400); }
.footer-col svg { flex-shrink: 0; opacity: 0.6; }
.footer-col ul li svg { color: var(--amber-500); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-floating-card { left: 50%; transform: translateX(-50%); bottom: -12px; }
  .flavors-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 480px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--neutral-100);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.active span { background: var(--neutral-700); }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 80px; }
  .hero-wave svg { height: 50px; }
  .hero-floating-card { display: none; }

  .flavors-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--large img,
  .gallery-item--wide img { aspect-ratio: 16/9; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-items { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-grid { padding: 40px 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large,
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--large img,
  .gallery-item--wide img { aspect-ratio: 4/3; }
}
