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

  :focus-visible {
    outline: 2px solid var(--rust);
    outline-offset: 2px;
  }

  :root {
    --cream: oklch(0.97 0.01 80);
    --dark: #1C1410;
    --brown: #3D2510;
    --rust: #A8442A;
    --rust-light: #C25A3A;
    --gold: #C49A5A;
    --green: #3D5240;
    --text-muted: #6B5B4E;
    --border: rgba(60,35,15,0.12);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--dark);
    font-weight: 300;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 48px);
    height: 64px;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease, height 0.3s cubic-bezier(0.16,1,0.3,1);
  }

  nav.scrolled:hover {
    height: 74px;
  }

  nav.scrolled {
    background: oklch(0.97 0.01 80 / 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 41px);
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 3px;
  }

  .nav-logo-name {
    font-size: 1em;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .nav-logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.25em;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    line-height: 1;
  }

  .nav-links {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    list-style: none;
    position: relative;
  }

  .nav-links a {
    font-size: clamp(12px, 1.3vw, 16px);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.5s ease;
    display: block;
    padding-bottom: 4px;
  }

  .nav-links a:hover { color: #fff; }

  nav.scrolled .nav-links a { color: var(--dark); }
  nav.scrolled .nav-links a:hover { color: var(--rust); }

  nav.scrolled .nav-logo {
    color: var(--dark);
  }

  nav.scrolled .nav-logo-sub {
    color: var(--dark);
  }

  nav.scrolled .nav-logo-name {
    color: var(--dark);
  }

  .nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: var(--rust);
    border-radius: 2px;
    transition: left 0.25s cubic-bezier(0.4,0,0.2,1), width 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
    opacity: 0;
    pointer-events: none;
  }

  .btn-waitlist {
    background: var(--rust);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-family: 'Jost', sans-serif;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
    border-radius: 8px;
  }

  .btn-waitlist:hover { background: var(--rust-light); }
  .btn-waitlist:active { transform: scale(0.97); }

  /* HERO */
  .hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: clamp(500px, 80vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    filter: brightness(0.55);
    transform: scale(1.15) translateY(0px);
    will-change: transform;
    overflow: hidden;
  }

  .hero-placeholder,
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 clamp(16px, 4vw, 48px);
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 18vw, 138px);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .hero-content p {
    font-size: clamp(17px, 2.5vw, 24px);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.55;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content .hero-brew-note {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
  }

  .hero-form {
    display: flex;
    gap: 10px;
    max-width: clamp(300px, 40vw, 400px);
    margin: 0 auto 14px;
  }

  .hero-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: rgba(255,255,255,0.92);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--dark);
    outline: none;
    border-radius: 8px;
  }

  .hero-form input::placeholder { color: #aaa; }

  .hero-form button {
    background: var(--rust);
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1), opacity 0.25s;
    letter-spacing: 0.02em;
    border-radius: 8px;
  }

  .hero-form button:hover {
    background: var(--rust-light);
    transform: scale(1.07);
    opacity: 0.9;
  }

  .hero-form button:active {
    transform: scale(1);
    opacity: 0.8;
  }

  .hero-content .hero-note {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
  }

  /* SECTIONS */
  section { padding: clamp(64px, 8vw, 100px) clamp(24px, 4vw, 48px); }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 600;
    text-align: center;
    color: var(--dark);
    margin-bottom: clamp(40px, 5vw, 64px);
    letter-spacing: -0.01em;
  }

  #why .section-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 600;
    font-style: normal;
  }

  /* WHY WARDA */
  #why {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    max-width: 1472px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
  }

  .why-card {
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    position: relative;
    cursor: default;
  }

  .why-card:hover {
    z-index: 10;
    box-shadow: 0 28px 64px rgba(0,0,0,0.2);
  }

  .why-card:hover .why-card-img {
    transform: scale(1.07);
  }

  .why-card-body { transition: background 0.4s; }

  .why-card:hover .why-card-body {
    background: #fdf9f5;
  }

  .why-card h3 { transition: color 0.3s; }

  .why-card:hover h3 {
    color: var(--rust);
  }

  .why-card-img-wrap {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
  }

  .why-card-img {
    width: 100%;
    height: clamp(200px, 22vw, 340px);
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }



  .why-card-body { padding: clamp(20px, 2.5vw, 32px) clamp(20px, 2.5vw, 32px) clamp(28px, 3vw, 40px); transition: background 0.4s; }

  .why-card h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
  }

  .why-card p {
    font-family: 'Lato', sans-serif;
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-muted);
  }

  /* COLLECTION HEADER */
  .collection-header {
    text-align: center;
    padding: clamp(48px, 7vw, 80px) 24px clamp(32px, 5vw, 56px);
  }

  .collection-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: clamp(10px, 0.9vw, 12px);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
  }

  .collection-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.1;
  }
  .collection-title em {
    font-style: italic;
    font-weight: 400;
    display: block;
  }

  .collection-desc {
    font-family: 'Jost', sans-serif;
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
  }

  /* PRODUCTS — Two-column carousel */
  #products {
    position: relative;
    width: 100%;
    padding: clamp(60px, 8vw, 100px) 0;
    overflow: hidden;
    transition: background-color 0.8s ease;
  }

  /* Background + theme per product */
  #products.products--red {
    background-color: #B8785A;
    --product-text: #FFF5EE;
    --product-text-muted: rgba(255, 245, 238, 0.75);
    --product-accent: #FFF5EE;
    --product-pill-bg: rgba(255, 245, 238, 0.15);
    --product-pill-border: rgba(255, 245, 238, 0.3);
    --product-btn-bg: rgba(61, 37, 16, 0.85);
    --product-btn-text: #FFF5EE;
    --product-card-shadow: rgba(100, 40, 10, 0.25);
    --product-pill-bg-hover: rgba(61, 37, 16, 0.6);
    --product-pill-border-hover: rgba(61, 37, 16, 0.7);
  }

  #products.products--adeni {
    background-color: #C5CFA8;
    --product-text: #2A3A1E;
    --product-text-muted: rgba(42, 58, 30, 0.7);
    --product-accent: #3D5240;
    --product-pill-bg: rgba(61, 82, 64, 0.1);
    --product-pill-border: rgba(61, 82, 64, 0.3);
    --product-btn-bg: rgba(61, 82, 64, 0.9);
    --product-btn-text: #F7F3EF;
    --product-card-shadow: rgba(30, 50, 20, 0.18);
    --product-pill-bg-hover: rgba(42, 58, 30, 0.55);
    --product-pill-border-hover: rgba(42, 58, 30, 0.65);
  }

  /* Carousel arrows */
  .product-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--product-pill-border);
    background: var(--product-pill-bg);
    color: var(--product-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.8s, color 0.8s, transform 0.2s;
  }

  .product-arrow:hover {
    background: var(--product-pill-bg);
    filter: brightness(1.15);
    transform: translateY(-50%) scale(1.06);
  }

  .product-arrow--left { left: clamp(12px, 2vw, 32px); }
  .product-arrow--right { right: clamp(12px, 2vw, 32px); }

  /* Two-column layout */
  .product-layout {
    position: relative;
    z-index: 1;
    max-width: 1472px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
  }

  /* Image card */
  .product-image-card {
    flex: 0 0 48%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #products .product-image-card.product-visible:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  }

  #products.products--red .product-image-card.product-visible:hover {
    box-shadow: 0 16px 52px rgba(0, 0, 0, 0.6);
  }

  .product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  #products .product-image-card.product-visible:hover .product-card-img {
    transform: scale(1.07);
  }

  .product-card-img.fading-out {
    opacity: 0;
    transform: scale(0.94);
  }

  .product-card-img.fading-in {
    opacity: 0;
    transform: scale(1.04);
  }

  /* Product details */
  .product-details {
    flex: 1;
  }

  .product-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--product-text-muted);
    margin-bottom: 20px;
    transition: color 0.8s ease;
  }

  .coming-soon-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--product-text);
    display: inline-block;
    position: relative;
    transition: background 0.8s ease;
    animation: coming-soon-pulse 1.8s ease-in-out infinite;
  }

  .coming-soon-dot::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid var(--product-text);
    opacity: 0;
    transition: border-color 0.8s ease;
    animation: coming-soon-ring 1.8s ease-out infinite;
  }

  @keyframes coming-soon-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(0.82); }
  }

  @keyframes coming-soon-ring {
    0%   { transform: scale(0.7); opacity: 0.55; }
    100% { transform: scale(2.4); opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    .coming-soon-dot,
    .coming-soon-dot::after { animation: none; }
    .coming-soon-dot::after { display: none; }
  }

  .product-detail-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--product-text);
    margin-bottom: 8px;
    line-height: 1.1;
    transition: color 0.8s ease, opacity 0.3s ease;
  }
  .product-detail-name em {
    font-style: italic;
    font-weight: 500;
  }

  .product-detail-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--product-text-muted);
    margin-bottom: 24px;
    transition: color 0.8s ease, opacity 0.3s ease;
  }

  .product-detail-desc {
    font-family: 'Jost', sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    color: var(--product-text-muted);
    margin-bottom: 32px;
    max-width: 440px;
    font-weight: 300;
    transition: color 0.8s ease, opacity 0.3s ease;
  }

  .product-ingredients-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--product-text-muted);
    margin-bottom: 12px;
    transition: color 0.8s ease;
  }

  .product-ingredient-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }

  .ingredient-pill {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    padding: 8px 22px;
    border-radius: 24px;
    border: 1px solid var(--product-pill-border);
    background: var(--product-pill-bg);
    color: var(--product-text);
    font-weight: 400;
    transition: background 0.8s ease, border-color 0.8s ease, color 0.8s ease;
  }

  .product-notify-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.1vw, 15px);
    font-style: italic;
    color: var(--product-text-muted);
    margin-bottom: 24px;
    transition: color 0.8s ease;
  }

  .product-notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    border-radius: 8px;
    background: var(--product-btn-bg);
    color: var(--product-btn-text);
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-weight: 500;
    transition: background 0.8s ease, color 0.8s ease, transform 0.2s ease, filter 0.2s ease;
  }

  .product-notify-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
  }

  /* Ingredient pills darken on section hover */
  .product-layout:hover .ingredient-pill {
    background: var(--product-pill-bg-hover);
    border-color: var(--product-pill-border-hover);
  }

  /* Dot indicators */
  .product-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: clamp(32px, 4vw, 56px);
    position: relative;
    z-index: 5;
  }

  .product-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--product-text-muted);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s ease, border-radius 0.3s ease,
                background 0.3s ease, border-color 0.8s ease;
  }

  .product-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--product-text);
    border-color: var(--product-text);
  }

  .product-dot:hover {
    border-color: var(--product-text);
  }

  /* Scroll reveal — matches why-card pattern */
  #products .product-image-card,
  #products .product-details {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  }

  #products .product-image-card.product-visible,
  #products .product-details.product-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    #products,
    .product-card-img,
    .product-arrow,
    .ingredient-pill,
    .product-notify-btn { transition: none !important; }
    #products .product-image-card,
    #products .product-details { opacity: 1; transform: none; }
  }

  /* Enable vertical scroll through swipe-capable image card */
  .product-image-card { touch-action: pan-y; }

  /* Mobile stack hidden by default (desktop shows carousel) */
  .products-mobile-stack { display: none; }

  /* Mobile — swap carousel for Paired Spreads stack */
  @media (max-width: 768px) {
    /* Suppress desktop carousel */
    #products {
      background: transparent !important;
      padding: 0 !important;
      transition: none !important;
    }
    .product-layout,
    .product-arrow,
    .product-dots { display: none !important; }

    /* Show mobile stack */
    .products-mobile-stack { display: block; }
  }

  /* ================================================================
     PRODUCTS MOBILE STACK — "Paired Spreads" layout (≤768px only)
     All rules use pms- prefix; zero effect on desktop.
     ================================================================ */

  /* Intro */
  .pms-intro {
    position: relative;
    padding: 72px 24px 52px;
    text-align: center;
    background: #F7F3EF;
  }
  .pms-intro::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 26px;
    background: rgba(26,26,26,0.22);
  }
  .pms-intro__eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(26,26,26,0.55);
    margin-bottom: 16px;
  }
  .pms-intro__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(44px, 12vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: #1A1A1A;
  }
  .pms-intro__title em {
    font-style: italic;
    font-weight: 400;
    display: block;
  }
  .pms-intro__lede {
    margin: 20px auto 0;
    max-width: 400px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18.5px;
    line-height: 1.5;
    color: rgba(26,26,26,0.7);
  }

  /* Sheet themes */
  .pms-sheet--red {
    background: #B8785A;
    --pms-text: #FFF5EE;
    --pms-muted: rgba(255,245,238,0.68);
    --pms-rule: rgba(255,245,238,0.28);
    --pms-chip: rgba(46,24,10,0.65);
    --pms-grad: linear-gradient(to bottom, rgba(72,34,10,0) 0%, rgba(72,34,10,0.22) 55%, rgba(72,34,10,0.55) 100%);
  }
  .pms-sheet--adeni {
    background: #C5CFA8;
    --pms-text: #2A3A1E;
    --pms-muted: rgba(42,58,30,0.65);
    --pms-rule: rgba(42,58,30,0.3);
    --pms-chip: rgba(30,42,20,0.75);
    --pms-grad: linear-gradient(to bottom, rgba(30,42,20,0) 0%, rgba(30,42,20,0.15) 55%, rgba(30,42,20,0.4) 100%);
  }

  /* Sheet base */
  .pms-sheet {
    position: relative;
    overflow: hidden;
    padding-bottom: 48px;
    isolation: isolate;
  }

  /* Watermark numeral */
  .pms-sheet__watermark {
    position: absolute;
    top: 8px;
    right: -8px;
    z-index: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 180px;
    line-height: 0.8;
    color: var(--pms-text);
    opacity: 0.09;
    pointer-events: none;
    user-select: none;
  }

  /* Header row */
  .pms-sheet__header {
    position: relative;
    padding: 22px 24px 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .pms-sheet__header-left {
    font-family: 'Jost', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--pms-muted);
  }
  .pms-sheet__header-left em {
    font-style: normal;
    color: var(--pms-text);
    margin-right: 2px;
  }
  .pms-sheet__header-right {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--pms-muted);
  }

  /* Image */
  .pms-sheet__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    z-index: 1;
  }
  .pms-sheet__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pms-sheet__image-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 50%;
    background: var(--pms-grad);
    pointer-events: none;
  }

  /* Coming Soon chip */
  .pms-sheet__chip {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 10px;
    background: var(--pms-chip);
    color: #FFF5EE;
    font-family: 'Jost', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .pms-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: pms-dot-pulse 1.8s ease-in-out infinite;
  }
  @keyframes pms-dot-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.45; transform:scale(.7); }
  }
  @media (prefers-reduced-motion: reduce) {
    .pms-dot { animation: none; }
  }

  /* Product name — editorial overlap into image */
  .pms-sheet__name {
    position: relative;
    z-index: 3;
    margin-top: -0.42em;
    padding: 0 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(74px, 22vw, 120px);
    line-height: 0.88;
    letter-spacing: -0.035em;
    color: var(--pms-text);
    text-shadow: 0 4px 32px rgba(0,0,0,0.22);
  }
  .pms-sheet__name em {
    font-style: italic;
    font-weight: 500;
  }

  /* Subtitle */
  .pms-sheet__subtitle {
    margin-top: 18px;
    padding: 0 24px;
    font-family: 'Jost', sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--pms-muted);
  }

  /* Description */
  .pms-sheet__desc {
    margin-top: 20px;
    padding: 0 24px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.45;
    color: var(--pms-text);
  }

  /* Hairline rule */
  .pms-sheet__rule {
    height: 1px;
    background: var(--pms-rule);
    margin: 28px 24px 0;
  }

  /* Detail row */
  .pms-sheet__detail {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px 0;
  }
  .pms-sheet__count-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 52px;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--pms-text);
  }
  .pms-sheet__count-label {
    margin-top: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pms-muted);
  }
  .pms-sheet__ingredients {
    flex: 1;
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16.5px;
    line-height: 1.4;
    color: var(--pms-muted);
    padding-bottom: 4px;
  }
  .pms-sheet__ingredients strong {
    font-weight: 500;
    color: var(--pms-text);
  }

  /* CTA — underline text-link with arrow */
  .pms-sheet__cta {
    margin-top: 28px;
    padding: 0 24px;
  }
  .pms-sheet__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 8px;
    border-bottom: 1px solid var(--pms-text);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--pms-text);
    text-decoration: none;
    transition: gap 0.3s ease;
  }
  .pms-sheet__cta-link:hover { gap: 18px; }
  .pms-arrow {
    display: inline-block;
    width: 16px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.3s ease;
  }
  .pms-sheet__cta-link:hover .pms-arrow { width: 24px; }
  .pms-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: rotate(45deg);
  }

  /* Chapter break between sheets */
  .pms-break {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 44px 0 40px;
    background: #F7F3EF;
  }
  .pms-break::before,
  .pms-break::after {
    content: "";
    width: 48px;
    height: 1px;
    background: rgba(26,26,26,0.2);
  }
  .pms-break::before { margin-left: auto; }
  .pms-break::after  { margin-right: auto; }
  .pms-break__mark {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: rgba(26,26,26,0.55);
  }

  /* INGREDIENT IMMERSION — illustrated oil-painting triptych */
  #ingredients {
    padding: clamp(64px, 8vw, 120px) clamp(24px, 4vw, 48px);
    text-align: center;
    background: #faf6f0;
  }

  .ingredient-section-head {
    max-width: 680px;
    margin: 0 auto clamp(48px, 6vw, 80px);
  }

  .ingredient-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
  }

  .ingredient-section-head h2 em {
    font-style: italic;
    color: var(--rust);
    font-weight: 500;
  }

  .ingredient-section-head > p {
    font-family: 'Jost', sans-serif;
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
  }

  .ingredient-triptych {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
    align-items: end;
  }

  .ingredient-panel {
    position: relative;
    cursor: pointer;
  }

  .ingredient-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(0) scale(1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s ease;
    will-change: transform;
  }

  .ingredient-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }

  /* Hover-only motion — lift, scale, intensify shadow, gold glow */
  .ingredient-panel:hover .ingredient-card {
    transform: translateY(-14px) scale(1.03);
    filter: drop-shadow(0 32px 48px rgba(60, 35, 15, 0.22))
            drop-shadow(0 0 60px rgba(196, 154, 90, 0.28));
  }

  /* Gold halo behind card */
  .ingredient-panel::before {
    content: '';
    position: absolute;
    inset: 10% 5% -5%;
    z-index: -1;
    background: radial-gradient(ellipse at center bottom, rgba(196, 154, 90, 0.28) 0%, transparent 70%);
    opacity: 0;
    filter: blur(28px);
    transition: opacity 0.6s ease;
    pointer-events: none;
  }

  .ingredient-panel:hover::before { opacity: 1; }

  /* Caption */
  .ingredient-caption { margin-top: 28px; }

  .ingredient-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 600;
    color: var(--dark);
    display: inline-block;
    letter-spacing: 0.01em;
    position: relative;
    transform: translateY(4px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ingredient-panel:hover .ingredient-name { transform: translateY(0); }

  /* Underline draws in from center */
  .ingredient-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--rust);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ingredient-panel:hover .ingredient-name::after { width: 32px; }

  .ingredient-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(14px, 1.1vw, 16px);
    color: var(--text-muted);
    max-width: 300px;
    margin: 14px auto 0;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s ease 0.08s, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
  }

  .ingredient-panel:hover .ingredient-note {
    opacity: 1;
    transform: translateY(0);
  }

  /* Closing pull-quote */
  .ingredient-closer {
    max-width: 600px;
    margin: clamp(56px, 7vw, 88px) auto 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(17px, 1.5vw, 21px);
    color: var(--brown);
    line-height: 1.6;
    position: relative;
  }

  .ingredient-closer::before,
  .ingredient-closer::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 14px;
    opacity: 0.6;
  }

  /* Mobile */
  @media (max-width: 900px) {
    .ingredient-triptych {
      grid-template-columns: 1fr;
      max-width: 480px;
      gap: 48px;
    }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .ingredient-panel:hover .ingredient-card { transform: scale(1.02); }
    .ingredient-note,
    .ingredient-name { transition: none !important; }
  }

  /* HERITAGE BANNER */
  .heritage-banner {
    position: relative;
    height: clamp(400px, 40vw, 560px);
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .heritage-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/heritage-bg.png');
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.45) sepia(0.3);
  }

  .heritage-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 1472px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
  }

  .heritage-content-inner {
    max-width: 700px;
  }

  .heritage-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 84px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .heritage-content p {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
  }

  .btn-outline {
    display: inline-block;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 10px 24px;
    font-family: 'Jost', sans-serif;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

  .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.9);
  }

  .btn-outline:active {
    transform: scale(0.97);
  }

  /* PERFECT BREW */
  #brew { padding: clamp(64px, 8vw, 100px) 0; }

  #brew > .section-title,
  #brew > .brew-subtitle {
    padding-left: clamp(24px, 4vw, 48px);
    padding-right: clamp(24px, 4vw, 48px);
  }

  .brew-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: -50px;
    margin-bottom: 64px;
  }

  .brew-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
    max-width: 1472px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
  }

  .brew-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .brew-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 28px;
  }

  .brew-tab {
    background: none;
    border: none;
    padding: 15px 0;
    margin-right: clamp(16px, 2.5vw, 32px);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
  }

  .brew-tab.active { color: var(--rust); }

  .brew-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0; right: 0;
    height: 2px;
    background: var(--rust);
  }

  .brew-panel { display: none; }
  .brew-panel.active { display: block; }

  .brew-panel h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--dark);
  }

  .brew-panel > p {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
  }

  .brew-tips {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .brew-tips li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--dark);
    line-height: 1.6;
  }

  .brew-tips li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
  }

  /* THE WARDA JOURNAL — homepage blog preview */
  #journal {
    /* Lighter cream so it reads as its own section vs the cream above */
    background: oklch(0.99 0.006 85);
    padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 100px);
  }
  /* Share the same 1472px content band as other homepage sections */
  #journal .blog-hero,
  #journal .blog-grid-section {
    max-width: 1472px;
    margin: 0 auto;
    padding-left: clamp(24px, 4vw, 48px);
    padding-right: clamp(24px, 4vw, 48px);
  }
  #journal .blog-hero {
    padding-top: 0;
    padding-bottom: clamp(32px, 4vw, 48px);
  }
  #journal .blog-grid-section {
    padding-top: 0;
    padding-bottom: 0;
  }
  /* Match /blog/ grid exactly so a single card sits left-aligned in its first track */
  #journal .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
  }
  #journal .home-journal-more {
    text-align: center;
    margin-top: clamp(36px, 4vw, 56px);
  }
  #journal .home-journal-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    transition: gap 0.3s ease, color 0.3s ease;
  }
  #journal .home-journal-more-link:hover {
    color: var(--rust-light);
    gap: 16px;
  }
  #journal .home-journal-chev {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.2px solid currentColor;
    border-top: 1.2px solid currentColor;
    transform: rotate(45deg);
    position: relative;
    top: 0.5px;
  }
  @media (max-width: 900px) {
    #journal .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  }

  /* TESTIMONIALS */
  .testimonials {
    background: var(--green);
    padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
    text-align: center;
  }

  .testimonials h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.03em;
    margin-bottom: clamp(28px, 4vw, 44px);
  }

  .testimonial-slider {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
  }

  .testimonial-slide {
    display: none;
    background: rgba(255,255,255,0.1);
    padding: clamp(24px, 3vw, 40px) clamp(28px, 4vw, 48px);
    border-radius: 4px;
  }

  .testimonial-slide.active { display: block; }

  .testimonial-slide blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
  }

  .testimonial-author {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    letter-spacing: 0.05em;
  }

  .testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .testimonial-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
  }

  .testimonial-btn:hover { background: rgba(255,255,255,0.15); }

  .testimonial-dots { display: flex; gap: 0; }

  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s;
    padding: 18px;
    background-clip: content-box;
  }

  .testimonial-dot.active { background-clip: content-box; }

  .testimonial-dot.active { background: #fff; }

  /* FOOTER */
  footer {
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: clamp(24px, 2.5vw, 32px) clamp(24px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
  }

  .footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  .footer-ig {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-ig:hover { color: var(--rust); }
  .footer-ig svg { width: 18px; height: 18px; }

  .footer-tiktok {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-tiktok:hover { color: var(--rust); }
  .footer-tiktok svg { width: 18px; height: 18px; }

  .footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .footer-links a {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--rust);
  }

  /* STATIC PAGES (about, privacy) */
  .static-page {
    padding-top: 64px;
  }

  .page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 24px) clamp(48px, 8vw, 80px);
  }

  .page-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .page-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
  }

  .page-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--dark);
    margin: 36px 0 12px;
  }

  .page-content p {
    font-family: 'Lato', 'Jost', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .page-content a {
    color: var(--rust);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .page-content a:hover {
    color: var(--rust-light);
  }

  .page-content ul,
  .page-content ol {
    margin: 16px 0 20px;
    padding-left: 24px;
  }

  .page-content li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-family: 'Lato', 'Jost', sans-serif;
    font-size: 17px;
    line-height: 1.85;
  }

  .page-content strong {
    color: var(--dark);
    font-weight: 700;
  }

  /* About page */
  .about-page section {
    padding: 0;
  }

  .about-hero {
    text-align: center;
    margin-bottom: 48px;
  }

  .about-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }

  .about-section {
    margin-bottom: 32px;
  }

  /* SCROLL REVEALS */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }

  /* CARD STAGGER */
  .why-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  }

  .why-card.card-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .why-card.card-visible:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
  }

  .why-card:nth-child(1):not(.card-visible) { transition-delay: 0s; }
  .why-card:nth-child(2):not(.card-visible) { transition-delay: 0.15s; }
  .why-card:nth-child(3):not(.card-visible) { transition-delay: 0.3s; }

  /* HAMBURGER — hidden on desktop */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    order: 3;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  nav.scrolled .nav-hamburger span { background: var(--dark); }
  nav.nav-open .nav-hamburger span { background: #fff; }
  nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* RESPONSIVE — 900px */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .btn-waitlist { display: none; }

    nav.nav-open .nav-links {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 64px; left: 0; right: 0;
      background: rgba(28,20,16,0.97);
      padding: 8px 24px 24px;
      gap: 0;
      z-index: 99;
    }
    nav.nav-open .nav-links li { width: 100%; list-style: none; }
    nav.nav-open .nav-links a {
      display: block;
      padding: 14px 0;
      font-size: 16px;
      color: rgba(255,255,255,0.9);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Hero */
    .hero-form { flex-direction: column; max-width: 360px; margin-left: auto; margin-right: auto; }
    .hero-form input, .hero-form button { width: 100%; border-radius: 6px; }

    /* Why Warda */
    .why-grid { grid-template-columns: 1fr; max-width: 460px; }

    /* Products */
    .product-cards { grid-template-columns: 1fr; max-width: 480px; }

    /* Ingredient */
    .ingredient-row { grid-template-columns: 1fr; }

    /* Heritage */
    .heritage-banner { height: auto; min-height: 380px; padding: 80px 0; }
    .heritage-content-inner { max-width: 100%; }

    /* Brew */
    .brew-layout { grid-template-columns: 1fr; }

    /* Footer */
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  }

  /* RESPONSIVE — 480px (small phones) */
  @media (max-width: 480px) {
    .why-card-img { height: 220px; }
    .hero-form { max-width: 100%; }
  }

  /* REDUCED MOTION */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-bg { transform: none !important; transition: none; }
    .why-card { transition: none !important; }
    .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  }
