/* ============================================
   FONTS — Alte Haas Grotesk (interlude brand)
============================================ */
@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('https://db.onlinewebfonts.com/t/38025932dce48e268882d955f7a66826.woff2') format('woff2'),
       url('https://db.onlinewebfonts.com/t/38025932dce48e268882d955f7a66826.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   DESIGN SYSTEM — Direction C: Hybrid
   Typography: Direction A (Cormorant Garamond + DM Sans)
   Colors: Direction A palette (Warm Cream, Sage Green, Terracotta, Lavender)
   Layouts: Best of A + B
============================================ */
:root {
  /* Primary Palette */
  --sage-green: #C2CFC0;
  --warm-cream: #F4EFE1;
  --deep-burgundy: #4A1E28;
  --terracotta: #C45A35;

  /* Accent */
  --lavender: #B9A1CE;

  /* Neutrals */
  --off-white: #FAF8F4;
  --warm-gray: #A89F94;
  --medium-gray: #6B6560;
  --dark-brown: #2E2320;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, Helvetica, Arial, sans-serif;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(46, 35, 32, 0.06);
  --shadow-md: 0 4px 12px rgba(46, 35, 32, 0.08);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.4s;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark-brown);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }

/* ========================================
   NAVIGATION — Direction A style
   Fixed, pill CTA, logo image
======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 64px;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 35, 32, 0.06);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 100px; width: auto; }

.nav-links { display: flex; gap: 40px; list-style: none; }

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--deep-burgundy); }

/* ========================================
   INTERLUDE — Lavender accent quote block
   "For those who explore the world..."
   From Direction A
======================================== */
.interlude {
  background: var(--sage-green);
  padding: 180px 80px 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 124px; /* offset for fixed nav */
}


/* Animated bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(74, 30, 40, 0.22);
  background: rgba(74, 30, 40, 0.04);
  pointer-events: none;
  z-index: 0;
  animation: bubbleRise linear infinite;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-420px) scale(1.08);
    opacity: 0;
  }
}

.interlude-brand {
  font-family: 'Alte Haas Grotesk', var(--font-display);
  font-size: 80px;
  font-weight: 400;
  color: var(--deep-burgundy);
  line-height: 1.05;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.interlude-tagline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--deep-burgundy);
  opacity: 0.65;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========================================
   PRODUCT — Direction B layout (50/50 split)
   Re-skinned with Direction A palette
======================================== */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.product-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--lavender) 0%, #9B82B5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: auto;
  height: 80%;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(74,30,40,0.2));
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 80px;
  background: var(--warm-cream);
  position: relative;
}

.product-content::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
}

.product-overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 32px;
}

.product-name {
  font-family: 'Alte Haas Grotesk', var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--deep-burgundy);
  line-height: 1.05;
  margin-bottom: 24px;
}

.divider {
  width: 48px;
  height: 1.5px;
  background: var(--terracotta);
  margin-bottom: 32px;
}

.divider--lavender {
  background: var(--lavender);
  width: 40px;
}

.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 480px;
}

.product-details {
  display: flex;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(46, 35, 32, 0.08);
  margin-bottom: 40px;
}

.product-detail-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.product-detail-value {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--deep-burgundy);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--deep-burgundy);
  color: var(--warm-cream);
  padding: 18px 48px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-primary:hover { background: #5C2A35; }

/* ========================================
   ABOUT — Direction B layout (text left 5fr, image right 7fr)
   Re-skinned with Direction A palette
======================================== */
.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 60vh;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 80px;
  background: var(--off-white);
}

.about-image {
  position: relative;
  overflow: hidden;
  height: 900px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--deep-burgundy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-signature {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--deep-burgundy);
}

/* ========================================
   PROCESS — Fermentation steps section
   Off-white bg, numbered two-column list
======================================== */
.process {
  padding: 128px 80px;
  background: var(--warm-cream);
}

.process-header {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.process-header .section-eyebrow {
  text-align: center;
}

.process-header .section-title {
  text-align: center;
}

.process-header .divider--lavender {
  margin: 0 auto 32px;
}

.process-intro {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 48px 56px;
  border-top: 1px solid rgba(46, 35, 32, 0.08);
  align-items: flex-start;
}

/* Right column steps get a left border */
.process-step:nth-child(even) {
  border-left: 1px solid rgba(46, 35, 32, 0.08);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--lavender);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--deep-burgundy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-step-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--medium-gray);
  line-height: 1.8;
}

/* ========================================
   MOODBOARD — Direction B layout (full-bleed)
   Re-skinned with Direction A palette
======================================== */
.moodboard {
  padding: 96px 80px;
  background: var(--warm-cream);
}

.moodboard-alt {
  background: var(--sage-green);
}

.moodboard-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto 40px;
}

.moodboard-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--deep-burgundy);
  line-height: 1.2;
}

.moodboard-caption {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.moodboard-img {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ========================================
   MISSION — Direction A style
   Dark centered section with 3 columns
======================================== */
.mission {
  background: var(--deep-burgundy);
  padding: 128px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(185,161,206,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(194,207,192,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.mission-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 48px;
  position: relative;
}

.mission-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--warm-cream);
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto 64px;
  position: relative;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.mission-item {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 239, 225, 0.06);
  position: relative;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
}

.mission-item:nth-child(1)::before { background: var(--terracotta); }
.mission-item:nth-child(2)::before { background: var(--lavender); }
.mission-item:nth-child(3)::before { background: var(--sage-green); }

.mission-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 16px;
}

.mission-num--terracotta { color: var(--terracotta); }
.mission-num--lavender   { color: var(--lavender); }
.mission-num--sage       { color: var(--sage-green); }

.mission-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(244, 239, 225, 0.65);
  line-height: 1.7;
}

.mission-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-top: 20px;
}

.mission-tag--lavender {
  color: var(--lavender);
  background: rgba(185,161,206,0.1);
}
.mission-tag--sage {
  color: var(--sage-green);
  background: rgba(194,207,192,0.12);
}
.mission-tag--terracotta {
  color: var(--terracotta);
  background: rgba(196,90,53,0.1);
}

/* ========================================
   CONTACT — Direction A style
   Split with form
======================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--off-white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 80px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--deep-burgundy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--medium-gray);
  align-items: baseline;
}

.contact-item strong {
  font-weight: 500;
  color: var(--deep-burgundy);
  min-width: 56px;
}

.contact-item::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 80px;
  background: var(--warm-cream);
}

.form-group { margin-bottom: 32px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark-brown);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(46, 35, 32, 0.12);
  outline: none;
  transition: border-color 0.3s ease;
}
.form-input::placeholder { color: var(--warm-gray); font-weight: 300; }
.form-input:focus { border-bottom-color: var(--lavender); }

.form-textarea {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark-brown);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(46, 35, 32, 0.12);
  outline: none;
  resize: none;
  min-height: 100px;
  transition: border-color 0.3s ease;
}
.form-textarea::placeholder { color: var(--warm-gray); font-weight: 300; }
.form-textarea:focus { border-bottom-color: var(--lavender); }

.form-input--error {
  border-bottom-color: var(--terracotta);
}

.form-textarea--error {
  border-bottom-color: var(--terracotta);
}

.form-message {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.form-message--success {
  background: rgba(194, 207, 192, 0.25);
  color: #2E5A2E;
  border: 1px solid rgba(194, 207, 192, 0.5);
}

.form-message--error {
  background: rgba(196, 90, 53, 0.1);
  color: var(--terracotta);
  border: 1px solid rgba(196, 90, 53, 0.25);
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 32px;
}

.form-checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--deep-burgundy);
  cursor: pointer;
}

.form-checkbox-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--medium-gray);
  line-height: 1.5;
  cursor: pointer;
}

/* Compact button variant */
.btn-primary--compact {
  padding: 16px 36px;
  align-self: flex-start;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   FOOTER — Direction A style
   Deep burgundy with lavender headings
======================================== */
.footer {
  background: var(--deep-burgundy);
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
  z-index: 0;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: 'Alte Haas Grotesk', var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-cream);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--warm-cream);
  line-height: 1.6;
}

.footer-heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(244, 239, 225, 0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-link:hover { color: var(--warm-cream); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 239, 225, 0.5);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  margin-top: 12px;
  transition: color 0.3s ease;
}
.footer-social:hover { color: var(--warm-cream); }

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 239, 225, 0.08);
  font-size: 12px;
  color: rgba(244, 239, 225, 0.25);
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 150;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--deep-burgundy);
  color: var(--warm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(74,30,40,0.25);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: #5C2A35;
  transform: translateY(-3px);
}

/* ========================================
   COOKIE BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 64px;
  background: var(--deep-burgundy);
  color: rgba(244, 239, 225, 0.75);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.cookie-btn--accept {
  background: var(--warm-cream);
  color: var(--deep-burgundy);
}
.cookie-btn--accept:hover {
  background: #fff;
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(244, 239, 225, 0.55);
  border: 1px solid rgba(244, 239, 225, 0.2);
}
.cookie-btn--decline:hover {
  border-color: rgba(244, 239, 225, 0.4);
  color: var(--warm-cream);
}

/* ========================================
   TERMS & CONDITIONS PAGE
======================================== */
.terms {
  padding: 180px 80px 96px;
  background: var(--off-white);
  margin-top: 124px;
}

.terms-content {
  max-width: 720px;
  margin: 0 auto;
}

.terms-updated {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 48px;
}

.terms-heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--deep-burgundy);
  margin-bottom: 12px;
  margin-top: 40px;
}

.terms-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.terms-link {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.3s ease;
}
.terms-link:hover {
  color: var(--deep-burgundy);
}

/* Footer inline link */
.footer-link--inline {
  display: inline;
  margin-bottom: 0;
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .nav { padding: 10px 32px; }

  .interlude { padding: 140px 48px 120px; margin-top: 96px; }
  .interlude-brand { font-size: 56px; }
  .interlude-tagline { font-size: 22px; }

  .product { grid-template-columns: 1fr; min-height: auto; }
  .product-image { height: 60vh; }
  .product-content { padding: 64px 48px; }
  .product-name { font-size: 48px; }

  .about { grid-template-columns: 1fr; min-height: auto; }
  .about-content { padding: 64px 48px; order: 2; }
  .about-image { height: 50vh; order: 1; }

  .process { padding: 96px 48px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step:nth-child(even) { border-left: none; }
  .process-step { padding: 40px 0; }

  .moodboard { padding: 64px 32px; }

  .mission { padding: 96px 48px; }
  .mission-title { font-size: 36px; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; max-width: 400px; }

  .contact { grid-template-columns: 1fr; min-height: auto; }
  .contact-info { padding: 64px 48px; }
  .contact-form { padding: 48px; }

  .footer { grid-template-columns: 1fr; gap: 40px; padding: 48px; }

  .cookie-banner { flex-direction: column; padding: 20px 32px; text-align: center; }
  .cookie-actions { justify-content: center; }

  .terms { padding: 140px 48px 64px; margin-top: 96px; }
}

@media (max-width: 640px) {
  .nav { padding: 8px 24px; }
  .nav-links { gap: 24px; }
  .nav-link { font-size: 11px; }

  .interlude { padding: 120px 24px 96px; }
  .interlude-brand { font-size: 42px; }
  .interlude-tagline { font-size: 18px; }
  .nav-logo img { height: 56px; }

  .product-name { font-size: 42px; }
  .product-details { flex-wrap: wrap; gap: 24px; }

  .section-title { font-size: 34px; }
  .contact-title { font-size: 34px; }

  .process { padding: 80px 24px; }
  .process-header { margin-bottom: 48px; }
  .process-step { padding: 32px 0; gap: 20px; }
  .process-step-num { font-size: 32px; min-width: 40px; }
}