/* ─── RESET & BASE ─────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    ::selection { background: #B8865F; color: #fff; }

    /* ─── TOKENS ─────────────────────────────────────────────  */
    :root {
      --cream:      #FAF7F2;
      --milk:       #F3EFE8;
      --sand:       #E4DDD0;
      --caramel:    #B8865F;
      --terra:      #9C6242;
      --coffee:     #3A1C0C;
      --espresso:   #200E05;
      --mocha:      #795136;
      --sage:       #8FAA7F;
      --sage-light: #E2E8DD;
      --white:      #FFFFFF;
      --black:      #0A0806;

      --text-h:     var(--coffee);
      --text-b:     rgba(58,28,12,.65);
      --text-m:     rgba(58,28,12,.4);

      --f-display:  'Playfair Display', Georgia, serif;
      --f-serif:    'DM Serif Display', Georgia, serif;
      --f-sans:     'DM Sans', system-ui, sans-serif;
      --f-heading:  'Outfit', sans-serif;

      --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out: cubic-bezier(0.45, 0, 0.25, 1);

      --sh-sm: 0 2px 12px rgba(58,28,12,.06);
      --sh-md: 0 8px 32px rgba(58,28,12,.10);
      --sh-lg: 0 24px 64px rgba(58,28,12,.16);
      --sh-xl: 0 40px 100px rgba(58,28,12,.22);
    }

    body {
      background: var(--cream);
      color: var(--text-h);
      font-family: var(--f-sans);
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─── SCROLLBAR ──────────────────────────────────────────  */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--caramel); border-radius: 99px; }

    /* ─── CONTAINER ──────────────────────────────────────────  */
    .container {
      max-width: 1380px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 5vw, 5rem);
    }

    /* Navbar Moved to components.css */


    /* ════════════════════════════════════════════════════════
       HERO
    ════════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      height: 91svh;
      min-height: 640px;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: var(--espresso);
    }

    /* animated grain overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: .035;
      z-index: 3;
      pointer-events: none;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../assets/bg/hero-luxury.webp');
      background-size: cover;
      background-position: center 40%;
      transform: scale(1.08);
      transition: transform 12s ease-out, filter 1.5s ease;
      z-index: 0;
    }
    .hero-bg.loaded { transform: scale(1); filter: blur(0); }
    .hero-bg.progressive { filter: blur(20px) brightness(0.7); }

    /* Progressive Image Styles */
    .progressive-img {
      transition: filter 0.8s ease, opacity 0.5s ease;
      filter: blur(10px);
    }
    .progressive-img.is-loaded {
      filter: blur(0);
    }

    /* layered gradient for drama */
    .hero-gradient {
      position: absolute;
      inset: 0;
      background: 
        linear-gradient(to bottom, rgba(20,8,2,.15) 0%, rgba(20,8,2,.55) 50%, rgba(20,8,2,.90) 88%, #0A0806 100%),
        linear-gradient(to right, rgba(20,8,2,.3) 0%, transparent 60%);
      z-index: 1;
    }

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

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      font-family: var(--f-sans);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .45em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp .9s var(--ease-out) .2s forwards;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      width: 32px; height: 1px;
      background: rgba(255,255,255,.3);
    }

    .hero-title {
      font-family: var(--f-display);
      font-size: clamp(3.5rem, 11vw, 10rem);
      font-weight: 900;
      line-height: .95;
      letter-spacing: -.02em;
      color: #fff;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 1.1s var(--ease-out) .4s forwards;
    }
    .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: rgba(255,255,255,.7);
      display: block;
      font-size: .65em;
      letter-spacing: .05em;
    }

    .hero-sub {
      font-family: var(--f-sans);
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,.65);
      max-width: 520px;
      margin: 0 auto 3.5rem;
      opacity: 0;
      animation: fadeUp .9s var(--ease-out) .65s forwards;
    }

    .hero-cta {
      display: flex;
      gap: 1.25rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .9s var(--ease-out) .85s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: var(--caramel);
      color: #fff;
      font-family: var(--f-sans);
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 1.1rem 2.75rem;
      border-radius: 99px;
      border: none;
      cursor: pointer;
      transition: background .35s, transform .35s var(--ease-out), box-shadow .35s;
      box-shadow: 0 8px 32px rgba(184,134,95,.4);
    }
    .btn-primary:hover {
      background: var(--terra);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(156,98,66,.5);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: rgba(255,255,255,.1);
      color: rgba(255,255,255,.9);
      font-family: var(--f-sans);
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 1.1rem 2.5rem;
      border-radius: 99px;
      border: 1px solid rgba(255,255,255,.25);
      cursor: pointer;
      backdrop-filter: blur(8px);
      transition: background .35s, border-color .35s, transform .35s var(--ease-out);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.5);
      transform: translateY(-4px);
    }

    /* scroll indicator */
    .scroll-cue {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .75rem;
      opacity: 0;
      animation: fadeIn 1s var(--ease-out) 1.5s forwards;
    }
    .scroll-cue span {
      font-family: var(--f-sans);
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .3em;
      color: rgba(255,255,255,.4);
      text-transform: uppercase;
    }
    .scroll-cue-bar {
      width: 1px;
      height: 56px;
      background: rgba(255,255,255,.15);
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }
    .scroll-cue-bar::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,.7));
      animation: scrollBar 2s ease-in-out 2s infinite;
    }
    @keyframes scrollBar {
      0%   { top: -50%; }
      100% { top: 150%; }
    }

    /* hero stats */
    .hero-stats {
      position: absolute;
      bottom: 3rem;
      right: clamp(2rem, 5vw, 5rem);
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      opacity: 0;
      animation: fadeIn 1s var(--ease-out) 1.2s forwards;
    }
    .hero-stat {
      text-align: right;
    }
    .hero-stat .num {
      font-family: var(--f-display);
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .hero-stat .lbl {
      font-family: var(--f-sans);
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-top: .25rem;
    }

    /* ════════════════════════════════════════════════════════
       MARQUEE TICKER
    ════════════════════════════════════════════════════════ */
    .ticker {
      background: var(--caramel);
      overflow: hidden;
      padding: .8rem 0;
    }
    .ticker-track {
      display: flex;
      gap: 4rem;
      width: max-content;
      animation: ticker 28s linear infinite;
    }
    .ticker-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-family: var(--f-sans);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,255,.9);
      white-space: nowrap;
    }
    .ticker-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,.5);
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ════════════════════════════════════════════════════════
       SECTIONS SHARED
    ════════════════════════════════════════════════════════ */
    .section { padding: clamp(5rem, 10vw, 9rem) 0; }
    .section-white { background: var(--white); }
    .section-cream { background: var(--cream); }
    .section-milk  { background: var(--milk); }

    .label-tag {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      font-family: var(--f-sans);
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--caramel);
      margin-bottom: 1.25rem;
    }
    .label-tag::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--caramel);
    }

    .section-title {
      font-family: var(--f-display);
      font-size: clamp(2.5rem, 6vw, 5.5rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -.02em;
      color: var(--coffee);
    }
    .section-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--caramel);
    }

    /* ════════════════════════════════════════════════════════
       CATEGORIES
    ════════════════════════════════════════════════════════ */
    .cats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-top: 4rem;
    }
    .cat-card {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
      background: var(--sand);
    }
    .cat-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease-out), filter .7s;
    }
    .cat-card:hover img { transform: scale(1.08); filter: brightness(.85); }
    .cat-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20,8,2,.8) 0%, rgba(20,8,2,.1) 50%, transparent 100%);
      transition: opacity .5s;
    }
    .cat-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2rem 1.75rem;
      transform: translateY(4px);
      transition: transform .4s var(--ease-out);
    }
    .cat-card:hover .cat-info { transform: translateY(0); }
    .cat-name {
      font-family: var(--f-display);
      font-size: 1.35rem;
      font-weight: 600;
      color: #fff;
      display: block;
      margin-bottom: .35rem;
    }
    .cat-cta {
      font-family: var(--f-sans);
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--caramel);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .35s .05s, transform .35s .05s var(--ease-out);
    }
    .cat-card:hover .cat-cta { opacity: 1; transform: translateY(0); }

    /* ════════════════════════════════════════════════════════
       FEATURED PRODUCTS
    ════════════════════════════════════════════════════════ */
    .feat-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .view-all {
      font-family: var(--f-sans);
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--coffee);
      display: flex;
      align-items: center;
      gap: .5rem;
      border-bottom: 1px solid var(--coffee);
      padding-bottom: 2px;
      transition: color .3s, border-color .3s;
    }
    .view-all:hover { color: var(--caramel); border-color: var(--caramel); }
    .view-all i { font-size: .7rem; transition: transform .3s; }
    .view-all:hover i { transform: translateX(4px); }

    .products-grid-wrapper {
      position: relative;
    }

    .products-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 2.5rem;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 1.5rem 0.5rem;
      cursor: grab;
      user-select: none;
    }
    .products-grid::-webkit-scrollbar { display: none; }
    .products-grid:active { cursor: grabbing; }

    .products-grid .prod-card {
      flex: 0 0 380px;
      scroll-snap-align: center;
    }

    @media (max-width: 768px) {
      .products-grid .prod-card { flex: 0 0 320px; }
      .products-grid { gap: 1.5rem; }
    }

    @media (max-width: 480px) {
      .products-grid .prod-card { flex: 0 0 280px; }
    }

    /* Product scroll indicators - always visible */
    .products-scroll-indicators {
      display: flex;
      justify-content: center;
      gap: .5rem;
      margin-top: 2rem;
    }
    .products-scroll-indicators .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sand);
      cursor: pointer;
      transition: all .3s var(--ease-out);
    }
    .products-scroll-indicators .dot.active {
      background: var(--caramel);
      width: 24px;
      border-radius: 4px;
    }

    .prod-card {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--sh-sm);
      transition: transform .55s var(--ease-out), box-shadow .55s;
      cursor: pointer;
    }
    .prod-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }

    .prod-img {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      background: var(--milk);
    }
    .prod-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease-out);
    }
    .prod-card:hover .prod-img img { transform: scale(1.07); }

    .prod-badge {
      position: absolute;
      top: 1rem; left: 1rem;
      background: var(--sage);
      color: #fff;
      font-family: var(--f-sans);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .3rem .85rem;
      border-radius: 99px;
      z-index: 2;
    }
    .prod-badge.oos { background: rgba(156,98,66,.9); }

    .prod-action {
      position: absolute;
      bottom: -60px;
      left: 0; right: 0;
      display: flex;
      justify-content: center;
      z-index: 3;
      transition: bottom .4s var(--ease-out);
      padding: 0 1.5rem;
    }
    .prod-card:hover .prod-action { bottom: 1rem; }
    .prod-action button {
      width: 100%;
      background: var(--mocha);
      color: #fff;
      border: none;
      border-radius: 99px;
      padding: .85rem;
      font-family: var(--f-sans);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .3s;
    }
    .prod-action button:hover { background: var(--caramel); }

    .prod-info {
      padding: 1.5rem 1.75rem 1.75rem;
    }
    .prod-cat {
      font-family: var(--f-sans);
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: .5rem;
    }
    .prod-name {
      font-family: var(--f-display);
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--coffee);
      line-height: 1.3;
      margin-bottom: 1.25rem;
    }
    .prod-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .prod-price {
      font-family: var(--f-heading);
      font-weight: 700;
      color: var(--caramel);
      font-size: 1.15rem;
    }
    .prod-stars {
      color: var(--caramel);
      font-size: .75rem;
      letter-spacing: .1em;
    }

    /* ════════════════════════════════════════════════════════
       ABOUT / MISSION SECTION (Card Style)
    ════════════════════════════════════════════════════════ */
    .mission-grid-wrapper {
      position: relative;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      max-width: 1000px;
      margin: 0 auto 2rem;
    }

    .mission-card {
      background: var(--milk);
      border-radius: 2rem;
      padding: 0;
      display: flex;
      flex-direction: column;
      height: 600px;
      box-shadow: var(--sh-sm);
      transition: transform .5s var(--ease-out), box-shadow .5s;
      position: relative;
      overflow: hidden;
    }

    /* Subtle texture for cards */
    .mission-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .mission-card.featured {
      background: var(--coffee);
      color: #fff;
    }

    .mission-card.featured .label-tag { color: var(--caramel); }
    .mission-card.featured .label-tag::before { background: var(--caramel); }
    .mission-card.featured h2 { color: #fff; }
    .mission-card.featured p { color: rgba(255,255,255,.65); }

    .mission-card:hover { 
      transform: translateY(-8px); 
      box-shadow: var(--sh-lg); 
    }

    /* Support for Background Image + Floating Text Layout */
    .mission-card.bg-image .mission-image {
      position: absolute;
      inset: 0;
      height: 100%;
      aspect-ratio: auto;
      z-index: 1;
    }

    .mission-card.bg-image .mission-content {
      position: relative;
      z-index: 3;
      justify-content: flex-end;
      background: 
        linear-gradient(to top, rgba(32, 14, 5, 0.9) 0%, rgba(32, 14, 5, 0.2) 60%, transparent 100%),
        linear-gradient(to bottom, rgba(32, 14, 5, 0.4) 0%, transparent 30%);
      color: #fff;
      height: 100%;
    }

    .mission-card.bg-image .label-tag {
      position: absolute;
      top: 2.5rem;
      left: 2.5rem;
      color: #fff !important;
      border-color: rgba(255,255,255,0.4);
    }
    .mission-card.bg-image .label-tag::before { background: #fff !important; }

    .mission-card.bg-image h2, 
    .mission-card.bg-image h2 em { color: #fff !important; }
    .mission-card.bg-image p { color: rgba(255,255,255,0.8); }

    .mission-image {
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;
      background: var(--sand);
      position: relative;
    }

    .mission-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease-out);
    }

    .mission-card:hover .mission-image img {
      transform: scale(1.08);
    }

    /* Subtle overlay for images in dark card */
    .mission-card.featured .mission-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(32, 14, 5, 0.2);
    }

    .mission-icon {
      font-size: 3rem;
      margin-bottom: 2rem;
      line-height: 1;
    }

    .mission-content {
      padding: 2rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
      height: 100%;
    }

    .mission-card h2 {
      font-family: var(--f-display);
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--coffee);
    }
    .mission-card h2 em { font-style: italic; font-weight: 400; color: var(--caramel); }

    .mission-card p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text-b);
      max-width: 440px;
    }

    /* Mission scroll indicators */
    .mission-scroll-indicators {
      display: none;
      justify-content: center;
      gap: .5rem;
      margin-top: 1rem;
    }
    .mission-scroll-indicators .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sand);
      cursor: pointer;
      transition: all .3s var(--ease-out);
    }
    .mission-scroll-indicators .dot.active {
      background: var(--caramel);
      width: 24px;
      border-radius: 4px;
    }

    /* values strip */
    .values-strip {
      display: flex;
      gap: 0;
      margin-top: clamp(4rem, 8vw, 7rem);
    }
    .value-item {
      flex: 1;
      padding: 2.5rem 2rem;
      border-right: 1px solid var(--sand);
      transition: background .35s;
    }
    .value-item:last-child { border-right: none; }
    .value-item:hover { background: var(--milk); }
    .value-icon {
      font-size: 2rem;
      margin-bottom: 1.25rem;
      display: block;
    }
    .value-title {
      font-family: var(--f-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--coffee);
      margin-bottom: .6rem;
    }
    .value-desc {
      font-family: var(--f-sans);
      font-size: .9rem;
      line-height: 1.7;
      color: var(--text-b);
    }

    /* ════════════════════════════════════════════════════════
       TESTIMONIALS
    ════════════════════════════════════════════════════════ */
    .reviews-grid-wrapper {
      position: relative;
      margin-top: 4rem;
    }

    .reviews-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1.5rem;
      padding: 0 0 1.5rem 0; /* Extra bottom for focus shadow */
      scrollbar-width: none;
      -ms-overflow-style: none;
      align-items: stretch;
      cursor: grab;
      user-select: none;
    }
    .reviews-grid:active { cursor: grabbing; }
    .reviews-grid::-webkit-scrollbar { display: none; }

    /* Review scroll indicators */
    .reviews-scroll-indicators {
      display: flex;
      justify-content: center;
      gap: .5rem;
      margin-top: 1rem;
    }
    .reviews-scroll-indicators .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sand);
      cursor: pointer;
      transition: all .3s var(--ease-out);
    }
    .reviews-scroll-indicators .dot.active {
      background: var(--caramel);
      width: 24px;
      border-radius: 4px;
    }

    .review-card {
      flex: 0 0 calc(33.333% - 1rem);
      scroll-snap-align: center;
      background: var(--white);
      border-radius: 1.5rem;
      padding: 2.5rem 2.25rem;
      box-shadow: var(--sh-sm);
      transition: transform .5s var(--ease-out), box-shadow .5s;
    }
    .review-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
    .review-card.featured {
      background: var(--sage-light);
      padding: 3rem 2.5rem;
    }
    .review-stars { font-size: .9rem; letter-spacing: .2em; color: var(--caramel); margin-bottom: 1.25rem; }
    .review-card.featured .review-stars { color: var(--coffee); }
    .review-text {
      font-family: var(--f-display);
      font-size: 1.15rem;
      font-style: italic;
      line-height: 1.65;
      color: var(--coffee);
      margin-bottom: 1.75rem;
    }
    .review-card.featured .review-text { color: var(--coffee); }
    .review-author {
      display: flex;
      align-items: center;
      gap: .75rem;
    }
    .review-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--coffee);
      flex-shrink: 0;
    }
    .review-card.featured .review-avatar { background: rgba(0,0,0,.08); color: var(--coffee); }
    .review-name {
      font-family: var(--f-sans);
      font-size: .82rem;
      font-weight: 600;
      color: var(--coffee);
    }
    .review-card.featured .review-name { color: var(--coffee); }
    .review-role {
      font-size: .73rem;
      color: var(--text-m);
    }
    .review-card.featured .review-role { color: var(--text-b); }

    /* ════════════════════════════════════════════════════════
       CTA BAND
    ════════════════════════════════════════════════════════ */
    .cta-band {
      background: linear-gradient(135deg, var(--caramel) 0%, var(--terra) 100%);
      border-radius: 2.5rem;
      padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 7rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      flex-wrap: wrap;
      box-shadow: 0 24px 80px rgba(184,134,95,.35);
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '✦';
      position: absolute;
      right: 10%;
      top: 50%;
      transform: translateY(-50%);
      font-size: clamp(8rem, 18vw, 20rem);
      color: rgba(255,255,255,.05);
      pointer-events: none;
      line-height: 1;
    }
    .cta-band-text h2 {
      font-family: var(--f-display);
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: .75rem;
    }
    .cta-band-text p {
      color: rgba(255,255,255,.7);
      font-size: 1rem;
      max-width: 420px;
    }
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: #fff;
      color: var(--terra);
      font-family: var(--f-sans);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 1.1rem 2.75rem;
      border-radius: 99px;
      white-space: nowrap;
      transition: background .3s, transform .4s var(--ease-out), box-shadow .4s;
      box-shadow: 0 8px 32px rgba(0,0,0,.15);
    }
    .btn-white:hover {
      background: var(--cream);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,.25);
    }

    /* Footer Moved to components.css */


    /* ════════════════════════════════════════════════════════
       TOAST NOTIFICATION
    ════════════════════════════════════════════════════════ */
    .toast {
      position: fixed;
      top: 7rem; right: 1.5rem;
      background: var(--coffee);
      color: #fff;
      font-family: var(--f-sans);
      font-size: .85rem;
      font-weight: 500;
      padding: 1rem 1.75rem;
      border-radius: 99px;
      box-shadow: var(--sh-lg);
      z-index: 9999;
      transform: translateX(120%);
      transition: transform .45s var(--ease-out);
    }
    .toast.show { transform: translateX(0); }
    .toast.success { background: var(--sage); }

    /* ════════════════════════════════════════════════════════
       REVEAL ANIMATION
    ════════════════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
    }
    .reveal.up { transform: translateY(36px); }
    .reveal.left { transform: translateX(-36px); }
    .reveal.right { transform: translateX(36px); }
    .reveal.visible { opacity: 1; transform: none; }

    /* Fix for horizontal scroll sections: 
       ensure children are visible when parent begins reveal. */
    .products-grid.reveal.visible .prod-card,
    .reviews-grid.reveal.visible .review-card,
    .mission-grid.reveal.visible .mission-card {
       opacity: 1 !important;
       transform: none !important;
    }

    /* ════════════════════════════════════════════════════════
       ANIMATIONS
    ════════════════════════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ════════════════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .cats { grid-template-columns: repeat(2, 1fr); }
      .mission { grid-template-columns: 1fr; }
      .mission-visual { min-height: 300px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .products-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .review-card { flex: 0 0 calc(50% - 1rem); }
      .values-strip { flex-direction: column; }
      .value-item { border-right: none; border-bottom: 1px solid var(--sand); }
      .value-item:last-child { border-bottom: none; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-stats { display: none; }
      .cats { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .cta-band { text-align: center; justify-content: center; }
      .cta-band-text p { margin: 0 auto; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 540px) {
      /* Products - horizontal scroll on mobile */
      .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
      }
      .products-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
      }
      .prod-card {
        min-width: 85%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
      }
      .products-scroll-indicators {
        display: flex;
      }

      /* Mission - horizontal scroll on mobile */
      .mission-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
      }
      .mission-grid::-webkit-scrollbar {
        display: none;
      }
      .mission-card {
        min-width: 85%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        padding: 0;
        height: 500px;
      }
      .mission-card h2 {
        font-size: 1.85rem;
      }
      .mission-scroll-indicators {
        display: flex;
      }

      .review-card {
        min-width: unset;
        flex: 0 0 85%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
      }
      .reviews-scroll-indicators {
        display: flex;
      }

      .hero-cta { flex-direction: column; align-items: center; }
      .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    }