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

  :root {
    --wheat: #E8D5B0;
    --wheat-light: #F5ECD8;
    --wheat-pale: #FAF4E8;
    --stone: #8B6F47;
    --stone-dark: #5C4A32;
    --cream: #FAF6EE;
    --gold: #C9962A;
    --gold-light: #E8B84B;
    --gold-pale: #F5D98A;
    --charcoal: #2A2520;
    --charcoal-mid: #4A3F35;
    --charcoal-light: #6B5E52;
    --olive: #7A7A5C;
    --olive-light: #A8A882;
    --warm-white: #FEFCF8;
    --off-black: #1A1510;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
    cursor: default;
  }

  /* Grain texture overlay */
  body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ========== NAVIGATION ========== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  nav.scrolled {
    background: rgba(254, 252, 248, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.2rem 5vw;
    border-bottom: 0.5px solid rgba(139, 111, 71, 0.12);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.4s;
  }
  nav.scrolled .nav-logo { color: var(--charcoal); }

  .nav-center {
    display: flex;
    gap: 3rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-center a {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: none;
    color: rgba(250, 246, 238, 0.65);
    text-decoration: none;
    transition: color 0.3s;
  }
  nav.scrolled .nav-center a { color: var(--charcoal-light); }
  .nav-center a:hover { color: var(--gold); }

  .nav-cta {
    padding: 0.6rem 1.6rem;
    border: 0.5px solid rgba(250, 246, 238, 0.3);
    color: rgba(250, 246, 238, 0.8);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: none;
    text-decoration: none;
    transition: all 0.3s;
  }
  nav.scrolled .nav-cta {
    border-color: var(--stone);
    color: var(--stone-dark);
  }
  .nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
  }

  /* ========== HERO ========== */
  .hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--off-black);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 110%, rgba(92, 58, 24, 0.55) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 80% 20%, rgba(40, 28, 12, 0.8) 0%, transparent 60%),
      linear-gradient(170deg, #1A1510 0%, #261B0E 50%, #1A1510 100%);
  }

  /* Wheat particle canvas */
  #particle-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  /* Decorative grain arch */
  .hero-arch {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 120px;
    background: var(--warm-white);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 860px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: none;
    color: var(--gold);
    margin-bottom: 2.5rem;
    animation: heroFadeUp 1s ease 0.2s both;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 30px;
    height: 0.5px;
    background: var(--gold);
    opacity: 0.5;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6.5vw, 5.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 2.2rem;
    animation: heroFadeUp 1.2s ease 0.4s both;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
  }

  .hero-divider {
    width: 40px;
    height: 0.5px;
    background: rgba(250, 246, 238, 0.2);
    margin: 0 auto 1.8rem;
    animation: heroFadeUp 1s ease 0.6s both;
  }

  .hero-sub {
    font-size: 0.88rem;
    color: rgba(250, 246, 238, 0.45);
    letter-spacing: 0.06em;
    margin-bottom: 3.5rem;
    animation: heroFadeUp 1s ease 0.7s both;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: heroFadeUp 1s ease 0.9s both;
  }

  .btn-gold {
    padding: 1rem 2.8rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: none;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline-light {
    padding: 1rem 2.8rem;
    background: transparent;
    color: rgba(250, 246, 238, 0.75);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: none;
    font-weight: 300;
    text-decoration: none;
    border: 0.5px solid rgba(250, 246, 238, 0.25);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-scroll-hint {
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: heroFadeUp 1s ease 1.2s both;
  }
  .scroll-bar {
    width: 0.5px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(201, 150, 42, 0.6));
    animation: scrollDrop 2.5s ease-in-out infinite;
  }
  @keyframes scrollDrop {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }
  .scroll-label {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: none;
    color: rgba(250, 246, 238, 0.3);
  }

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

  /* ========== SECTION UTILITIES ========== */
  .section-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: none;
    color: var(--olive);
    margin-bottom: 1.2rem;
  }
  .section-eyebrow-light {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: none;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .reveal.in-view { opacity: 1; transform: none; }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.45s; }

  /* ========== PROBLEM SECTION ========== */
  .problem {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .problem-cold {
    background: #191512;
    padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 6vw, 6rem);
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .problem-cold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 30px,
      rgba(255,255,255,0.012) 30px,
      rgba(255,255,255,0.012) 31px
    );
  }

  .problem-warm {
    background: var(--wheat-pale);
    padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 6vw, 6rem);
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .problem-warm::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(201, 150, 42, 0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  .prob-label {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: none;
    margin-bottom: 2.5rem;
  }
  .prob-label-cold { color: rgba(255,255,255); }
  .prob-label-warm { color: var(--olive); }

  .prob-chain {
    list-style: none;
    margin-bottom: 3.5rem;
  }
  .prob-chain li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }
  .prob-chain-cold li {
    color: rgba(255,255,255);
    border-bottom: 0.5px solid rgba(255,255,255,0.05);
  }
  .prob-chain-warm li {
    color: var(--charcoal-mid);
    border-bottom: 0.5px solid rgba(139, 111, 71, 0.15);
  }
  .chain-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .chain-dot-cold { background: rgba(255,255,255); }
  .chain-dot-warm { background: var(--gold); }

  .prob-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.35;
  }
  .prob-quote-cold { color: rgba(255,255,255); }
  .prob-quote-warm { color: var(--charcoal); }

  /* ========== THE GRAINLEY WAY ========== */
  .way {
    padding: clamp(6rem, 12vw, 10rem) 5vw;
    background: var(--cream);
  }
  .way-header {
    text-align: center;
    margin-bottom: clamp(4rem, 8vw, 7rem);
  }
  .way-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
  }
  .way-sub {
    color: var(--olive-light);
    font-size: 0.88rem;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .way-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1060px;
    margin: 0 auto;
  }
  .way-track::before {
    content: '';
    position: absolute;
    top: 2.8rem;
    left: 12%;
    right: 12%;
    height: 0.5px;
    background: linear-gradient(90deg, transparent, var(--wheat) 20%, var(--gold) 50%, var(--wheat) 80%, transparent);
  }

  .way-step {
    text-align: center;
    padding: 0 1.5rem;
  }
  .step-circle {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    border: 0.5px solid var(--wheat);
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s, transform 0.3s;
  }
  .way-step:hover .step-circle {
    border-color: var(--gold);
    transform: scale(1.06);
  }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
  }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
  }
  .step-body {
    font-size: 0.8rem;
    color: var(--olive);
    line-height: 1.75;
  }

  /* ========== TEXTURE IMMERSION ========== */
  .texture {
    padding: clamp(7rem, 14vw, 12rem) 5vw;
    background: var(--off-black);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .texture-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 150, 42, 0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .texture-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .t-ring {
    position: absolute;
    border-radius: 50%;
    border: 0.5px solid rgba(201, 150, 42, 0.1);
    transform: translate(-50%, -50%);
    animation: ringPulse 5s ease-in-out infinite;
  }
  @keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%,-50%) scale(1.02); }
  }

  .texture-label { position: relative; z-index: 1; }
  .texture-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    max-width: 720px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
  }
  .texture-headline em { font-style: italic; color: var(--gold-light); }

  .grain-pills {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .pill {
    padding: 0.45rem 1.3rem;
    border: 0.5px solid rgba(201, 150, 42, 0.25);
    color: rgba(250, 246, 238, 0.5);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: none;
    transition: all 0.3s;
  }
  .pill:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ========== SHOP ========== */
  .shop {
    padding: clamp(6rem, 12vw, 10rem) 5vw;
    background: var(--warm-white);
  }
  .shop-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1100px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
  }
  .shop-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-top: 0.6rem;
  }
  .shop-all {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: none;
    color: var(--stone);
    text-decoration: none;
    border-bottom: 0.5px solid var(--stone);
    padding-bottom: 2px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .shop-all:hover { color: var(--gold); border-color: var(--gold); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .prod-card {
    position: relative;
    cursor: pointer;
  }
  .prod-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.6rem;
    position: relative;
  }
  .prod-img {
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .prod-card:hover .prod-img { transform: scale(1.04); }

  .prod-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    padding: 0.28rem 0.85rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: none;
    font-weight: 500;
    z-index: 1;
  }

  .prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
  }
  .prod-desc {
    font-size: 0.82rem;
    color: var(--olive);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.7rem;
  }
  .prod-notes {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: none;
    color: var(--stone);
    margin-bottom: 1.5rem;
  }
  .prod-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .prod-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
  }
  .prod-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--olive-light);
    margin-left: 3px;
  }
  .prod-btn {
    padding: 0.65rem 1.5rem;
    background: var(--charcoal);
    color: var(--cream);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.3s;
  }
  .prod-btn:hover { background: var(--stone-dark); }

  /* ===== CINEMATIC PRODUCT CARDS ===== */

  /* Override grid for editorial feel */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1160px;
    margin: 0 auto;
    align-items: start;
  }

  .prod-card {
    position: relative;
    cursor: pointer;
    isolation: isolate;
  }

  /* Tall cinematic aspect ratio */
  .prod-img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1.8rem;
    position: relative;
    background: var(--off-black);
    /* Subtle shadow for depth */
    box-shadow:
      0 4px 24px rgba(26, 21, 16, 0.10),
      0 1px 4px rgba(26, 21, 16, 0.08);
    transition: box-shadow 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .prod-card:hover .prod-img-wrap {
    box-shadow:
      0 20px 60px rgba(26, 21, 16, 0.22),
      0 4px 16px rgba(26, 21, 16, 0.14);
  }

  /* The actual image — covers entire container */
  .prod-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .prod-card:hover .prod-img { transform: scale(1.06); }

  /* Cinematic gradient overlays */
  .prod-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(26, 21, 16, 0.0) 40%,
        rgba(26, 21, 16, 0.45) 100%
      );
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.65s ease;
  }

  /* Top vignette for editorial depth */
  .prod-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse 120% 80% at 50% 0%,
      rgba(26, 21, 16, 0.18) 0%,
      transparent 65%
    );
    z-index: 2;
    pointer-events: none;
  }

  .prod-card:hover .prod-img-wrap::before {
    opacity: 0.7;
  }

  /* Badge sits above overlays */
  .prod-badge {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    padding: 0.3rem 0.9rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    font-weight: 500;
    z-index: 5;
    backdrop-filter: blur(4px);
  }

  /* Hover reveal: product name appears inside image */
  .prod-img-overlay-name {
    position: absolute;
    bottom: 1.6rem;
    left: 1.6rem;
    right: 1.6rem;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .prod-card:hover .prod-img-overlay-name {
    opacity: 1;
    transform: translateY(0);
  }
  .prod-img-overlay-name .overlay-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.04em;
    line-height: 1.25;
  }
  .prod-img-overlay-name .overlay-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold-light);
    margin-top: 0.25rem;
  }

  /* Subtle golden line accent below image on hover */
  .prod-img-wrap .prod-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 6;
  }
  .prod-card:hover .prod-img-wrap .prod-accent-line {
    transform: scaleX(1);
  }

  /* Stagger card heights slightly for editorial rhythm */
  .prod-card:nth-child(2) { margin-top: 2.5rem; }

  /* Text area refinements */
  .prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
  }
  .prod-desc {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 0.75rem;
  }
  .prod-notes {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--stone);
    margin-bottom: 1.6rem;
  }
  .prod-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 0.5px solid rgba(139, 111, 71, 0.14);
  }

  /* Remove old gradient backgrounds */
  .pv-1, .pv-2, .pv-3 { background: none; }

  /* ========== WHY IT FEELS DIFFERENT ========== */
  .why {
    padding: clamp(6rem, 12vw, 10rem) 5vw;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .why::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,150,42,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .why-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
  }
  .why-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.25;
    margin-bottom: 2rem;
  }
  .why-headline em { font-style: italic; color: var(--gold-light); }
  .why-body {
    font-size: 0.88rem;
    color: rgba(250, 246, 238, 0.4);
    line-height: 1.9;
    max-width: 540px;
    margin: 0 auto 3.5rem;
  }
  .why-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 0.5px solid rgba(255,255,255,0.07);
    padding-top: 2.5rem;
  }
  .why-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .why-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: none;
    color: rgba(250, 246, 238, 0.3);
  }

  /* ========== FRESHNESS CLOCK ========== */
  .freshness {
    padding: clamp(6rem, 12vw, 10rem) 5vw;
    background: var(--wheat-pale);
  }
  .fresh-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
  }
  .fresh-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
  }
  .fresh-subtitle {
    font-size: 0.88rem;
    color: var(--olive-light);
    margin-bottom: 5rem;
  }

  .fresh-compare {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    align-items: stretch;
  }
  .fresh-card {
    padding: 3.5rem 2.5rem;
    text-align: center;
  }
  .fresh-card-bad {
    background: rgba(139,111,71,0.06);
    border: 0.5px solid rgba(139,111,71,0.15);
  }
  .fresh-card-good {
    background: var(--charcoal);
  }
  .fresh-tag-bad {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: none;
    color: rgba(139,111,71,0.6);
    margin-bottom: 2rem;
  }
  .fresh-tag-good {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: none;
    color: var(--gold);
    margin-bottom: 2rem;
  }
  .fresh-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .fresh-big-bad { color: #C0A882; }
  .fresh-big-good { color: var(--gold-light); }
  .fresh-unit-bad {
    font-size: 0.72rem;
    color: rgba(139,111,71,0.4);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
  }
  .fresh-unit-good {
    font-size: 0.72rem;
    color: rgba(201,150,42,0.5);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
  }
  .fresh-desc-bad {
    font-size: 0.8rem;
    color: var(--olive-light);
    line-height: 1.7;
  }
  .fresh-desc-good {
    font-size: 0.8rem;
    color: rgba(250,246,238,0.45);
    line-height: 1.7;
  }
  .fresh-vs {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vs-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--stone);
  }

  /* ========== SOCIAL PROOF ========== */
  .social {
    padding: clamp(6rem, 12vw, 10rem) 5vw;
    background: var(--warm-white);
  }
  .social-head {
    text-align: center;
    margin-bottom: 5rem;
  }
  .social-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
    font-style: italic;
  }
  .reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .review-card {
    padding: 2.8rem 2.4rem;
    background: var(--cream);
    border: 0.5px solid rgba(139,111,71,0.12);
    transition: transform 0.3s;
  }
  .review-card:hover { transform: translateY(-5px); }
  .review-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--wheat);
    margin-bottom: 1rem;
  }
  .review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.65;
    margin-bottom: 2.2rem;
  }
  .review-author {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: none;
    color: var(--olive);
  }

  /* ========== ABOUT ========== */
  .about {
    padding: clamp(8rem, 16vw, 14rem) 5vw;
    background: var(--off-black);
    position: relative;
    overflow: hidden;
  }
  .about::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,150,42,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .about-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .about-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 2.5rem;
  }
  .about-headline em { font-style: italic; color: var(--gold-light); }
  .about-body {
    font-size: 0.9rem;
    color: rgba(250,246,238,0.4);
    line-height: 1.95;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ========== FINAL CTA ========== */
  .final {
    padding: clamp(8rem, 16vw, 14rem) 5vw;
    background: var(--wheat-pale);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,150,42,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .final-rule {
    width: 50px;
    height: 0.5px;
    background: var(--gold);
    margin: 0 auto 3.5rem;
  }
  .final-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
  }
  .final-headline em { font-style: italic; color: var(--stone); }
  .final-sub {
    font-size: 0.88rem;
    color: var(--olive);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
  }
  .btn-dark-lg {
    display: inline-block;
    padding: 1.15rem 3.5rem;
    background: var(--charcoal);
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: none;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
  }
  .btn-dark-lg:hover { background: var(--stone-dark); transform: translateY(-2px); }

  /* ========== FOOTER ========== */
  footer {
    background: var(--charcoal);
    border-top: 0.5px solid rgba(255,255,255,0.05);
    padding: 3rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    color: rgba(250,246,238,0.4);
  }
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .footer-links a {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: none;
    color: rgba(250,246,238,0.22);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 0.68rem;
    color: rgba(250,246,238,0.18);
    letter-spacing: 0.06em;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    .nav-center { display: none; }
    .problem { grid-template-columns: 1fr; }
    .way-track { grid-template-columns: 1fr 1fr; }
    .way-track::before { display: none; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .fresh-compare { grid-template-columns: 1fr; }
    .fresh-vs { display: none; }
    .reviews { grid-template-columns: 1fr; max-width: 480px; }
    .why-stat-row { grid-template-columns: 1fr; gap: 1.5rem; }
    footer { flex-direction: column; text-align: center; }
  }
  @media (max-width: 600px) {
    nav { padding: 1.2rem 1.5rem; }
    .products-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .way-track { grid-template-columns: 1fr; }
    .shop-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .fresh-compare { max-width: 400px; margin: 0 auto; }
  }

/* ===== Polish: responsive typography, cinematic media, smooth motion ===== */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, video { max-width: 100%; height: auto; display: block; }
.cinematic-media, .cinematic-media img, .cinematic-media video {
  width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter .8s ease;
}
.cinematic-media:hover img, .cinematic-media:hover video { transform: scale(1.04); filter: saturate(1.05); }
a, button { transition: color .35s ease, background-color .35s ease, border-color .35s ease, transform .5s cubic-bezier(.2,.7,.2,1), opacity .35s ease; }
a:hover, button:hover { letter-spacing: inherit; }
::selection { background: rgba(201,150,42,.25); color: var(--off-black, #1A1510); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
/* Fluid type scale */
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.8rem); }
p  { font-size: clamp(0.95rem, 1.05vw, 1.05rem); line-height: 1.7; }
/* Mobile spacing tighten */
@media (max-width: 768px) {
  section { padding-left: 5vw !important; padding-right: 5vw !important; }
  nav { padding: 1rem 5vw !important; }
}
