    /* ── RESET & BASE ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --cream: #F5EDD7;
      --off-white: #FAF7F0;
      --chocolate: #2C1A0E;
      --dark: #0E0906;
      --hazelnut: #B8956A;
      --gold: #C8963E;
      --gold-light: #D9B070;
      --mid-brown: #6B4226;
      --font: 'Lexend', sans-serif;
      --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
      --dur-slow: 1.3s;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font); background: var(--dark); color: var(--chocolate); line-height: 24px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

    /* ── GRAIN ── */
    .grain {
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.032; pointer-events: none; z-index: 9000;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 2px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

    /* ── NAV ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 32px 64px;
      background: rgba(14, 9, 6, 0.83);
      transition: background 0.8s var(--ease-premium), padding 0.8s var(--ease-premium);
    }
    .nav.scrolled { background: rgba(14, 9, 6, 0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 20px 64px; }
    .nav-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }
    .nav-logo img { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a { font-size: .68rem; font-weight: 300; letter-spacing: .16em; text-transform: capitalize; color: rgba(245,237,215,.7); text-decoration: none; transition: color .35s; position: relative; white-space: nowrap; }
    .nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease-premium); }
    .nav-links a:hover { color: var(--cream); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a.active { color: var(--cream); }
    /* ── SUBMENU ── */
    .nav-links li.has-submenu { position: relative; }
    .nav-links .submenu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-8px); background: rgba(14,9,6,.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(200,150,62,.15); padding: 18px 0 6px; min-width: 148px; list-style: none; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s var(--ease-premium), transform .3s var(--ease-premium), visibility .3s; }
    .nav-links li.has-submenu:hover .submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
    .submenu a { display: block; padding: 10px 20px; font-size: .62rem; font-weight: 300; letter-spacing: .14em; color: rgba(245,237,215,.58); white-space: nowrap; text-decoration: none; transition: color .25s, background .25s; }
    .submenu a::after { display: none !important; }
    .submenu a:hover, .submenu a.active { color: var(--cream); background: rgba(200,150,62,.07); }
    .nav-lang { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .nav-lang-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 26px; border-radius: 100px; background: var(--chocolate); color: var(--cream); font-family: var(--font); font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .3s; }
    .nav-lang-btn:hover { background: var(--mid-brown); }
    .nav-lang a { font-family: var(--font); font-size: .6rem; font-weight: 300; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,237,215,.5); text-decoration: none; transition: color .3s; }
    .nav-lang a:hover { color: var(--cream); }


    /* ── nav fits between 768 and 1200 ── */
    @media (max-width: 1200px) {
      .nav { padding: 26px 36px; }
      .nav.scrolled { padding: 16px 36px; }
      .nav-logo img { height: 34px; }
      .nav-links { gap: 22px; }
      .nav-links a { font-size: .62rem; letter-spacing: .1em; }
      .nav-lang { gap: 8px; }
    }
    @media (max-width: 980px) {
      .nav { padding: 22px 28px; }
      .nav.scrolled { padding: 14px 28px; }
      .nav-logo img { height: 30px; }
      .nav-links { gap: 14px; }
      .nav-links a { font-size: .58rem; letter-spacing: .04em; }
      .nav-lang-btn { width: 30px; height: 22px; }
    }


    /* ── MOBILE MENU ── */
    .nav-burger {
      display: none; position: relative; z-index: 2;
      width: 44px; height: 44px; margin-right: -12px;
      align-items: center; justify-content: center;
      background: none; border: 0; padding: 0; cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-burger span {
      position: absolute; left: 11px; width: 22px; height: 1px;
      background: var(--cream); border-radius: 1px;
      transition: transform .45s var(--ease-spring);
    }
    .nav-burger span:nth-child(1) { transform: translateY(-4px); }
    .nav-burger span:nth-child(2) { transform: translateY(4px); }
    .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
    .nav-burger[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }

    .nav-mobile {
      position: fixed; inset: 0; z-index: 90;
      display: flex; flex-direction: column; justify-content: center;
      padding: 116px 28px 44px;
      background: rgba(14, 9, 6, .985);
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .45s var(--ease-premium), visibility .45s;
    }
    .nav-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-mobile-list { list-style: none; margin: 0; padding: 0; }
    .nav-mobile-list li { overflow: hidden; }
    .nav-mobile-list a {
      display: block; padding: 15px 0;
      font-family: var(--font); font-size: clamp(1.45rem, 7.5vw, 2rem);
      font-weight: 200; letter-spacing: -.02em; line-height: 1.15;
      color: rgba(245, 237, 215, .8); text-decoration: none;
      border-bottom: 1px solid rgba(245, 237, 215, .08);
      transform: translateY(115%);
      transition: transform .75s var(--ease-spring), color .3s;
    }
    .nav-mobile.open .nav-mobile-list a { transform: translateY(0); }
    .nav-mobile-list li:nth-child(1) a { transition-delay: .05s; }
    .nav-mobile-list li:nth-child(2) a { transition-delay: .10s; }
    .nav-mobile-list li:nth-child(3) a { transition-delay: .15s; }
    .nav-mobile-list li:nth-child(4) a { transition-delay: .20s; }
    .nav-mobile-list li:nth-child(5) a { transition-delay: .25s; }
    .nav-mobile-list li:nth-child(6) a { transition-delay: .30s; }
    .nav-mobile-list a.active { color: var(--gold-light); }
    .nav-mobile-foot {
      display: flex; align-items: center; gap: 20px; margin-top: 40px;
      opacity: 0; transition: opacity .5s .38s var(--ease-premium);
    }
    .nav-mobile.open .nav-mobile-foot { opacity: 1; }
    .nav-mobile-foot a {
      font-family: var(--font); font-size: .66rem; font-weight: 300;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(245, 237, 215, .42); text-decoration: none; transition: color .3s;
    }
    .nav-mobile-foot a.is-current { color: var(--cream); }

    @media (max-width: 768px) { .nav-burger { display: flex; } }
    @media (min-width: 769px) { .nav-mobile { display: none; } }
    @media (prefers-reduced-motion: reduce) {
      .nav-mobile, .nav-mobile-list a, .nav-mobile-foot, .nav-burger span { transition-duration: .01ms; }
      .nav-mobile-list a { transform: none; }
    }

    /* ── HERO ── */
    .hz-hero {
      position: relative; height: 100svh; min-height: 680px;
      display: flex; align-items: flex-end; overflow: hidden; background: var(--dark);
    }
    .hz-hero-bg { position: absolute; inset: -12%; overflow: hidden; will-change: transform; }
    .hz-hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .hz-hero-vignette {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom,
        rgba(14,9,6,.15) 0%,
        rgba(14,9,6,.05) 30%,
        rgba(14,9,6,.55) 70%,
        rgba(14,9,6,.9) 100%);
    }
    .hz-hero-content { position: relative; z-index: 2; padding: 0 64px 88px; width: 100%; max-width: 1300px; }
    .hz-hero-eyebrow { display: block; font-size: .7rem; font-weight: 300; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 24px; opacity: 0; transform: translateY(16px); animation: fadeUp 1s .4s var(--ease-premium) forwards; }
    .hz-hero-title { font-size: clamp(58px, 10vw, 148px); font-weight: 700; line-height: .88; color: var(--cream); letter-spacing: -.025em; }
    .hz-hero-title .line { display: block; overflow: hidden; }
    .hz-hero-title .line-inner { display: block; opacity: 0; transform: translateY(110%); animation: slideUp 1.3s var(--ease-spring) forwards; }
    .hz-hero-title .line:nth-child(1) .line-inner { animation-delay: .2s; }
    .hz-hero-title .line:nth-child(2) .line-inner { animation-delay: .36s; }
    .hz-hero-title .line:nth-child(3) .line-inner { animation-delay: .52s; color: var(--gold-light); font-weight: 200; font-style: italic; }
    .hz-hero-meta { margin-top: 44px; display: flex; align-items: flex-end; gap: 48px; }
    .hz-hero-sub { font-size: clamp(.82rem, 1vw, .96rem); font-weight: 300; line-height: 1.82; color: rgba(245,237,215,.68); max-width: 420px; letter-spacing: .025em; opacity: 0; animation: fadeUp 1s .9s var(--ease-premium) forwards; }
    .hz-hero-cta { display: inline-flex; align-items: center; gap: 14px; font-size: .72rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--cream); text-decoration: none; opacity: 0; animation: fadeUp 1s 1.1s var(--ease-premium) forwards; transition: gap .45s var(--ease-premium); flex-shrink: 0; }
    .hz-hero-cta:hover { gap: 22px; }
    .hz-hero-cta .cta-line { width: 48px; height: 1px; background: var(--gold); transition: width .45s var(--ease-premium); }
    .hz-hero-cta:hover .cta-line { width: 72px; }
    .hz-scroll-indicator { position: absolute; right: 64px; bottom: 88px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; opacity: 0; animation: fadeUp 1s 1.4s var(--ease-premium) forwards; }
    .hz-scroll-indicator span { font-size: .6rem; font-weight: 300; letter-spacing: .28em; text-transform: uppercase; color: rgba(245,237,215,.5); writing-mode: vertical-rl; }
    .hz-scroll-thread { width: 1px; height: 64px; background: linear-gradient(to bottom, var(--gold), transparent); animation: threadPulse 2.4s ease-in-out infinite; }

    /* ── KEYFRAMES ── */
    @keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes threadPulse {
      0%, 100% { opacity: .3; transform: scaleY(.8); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    }

    /* ── SCROLL REVEAL ── */
    .r { opacity: 0; transform: translateY(48px); transition: opacity var(--dur-slow) var(--ease-premium), transform var(--dur-slow) var(--ease-premium); }
    .r.on { opacity: 1; transform: translateY(0); }

    /* ── INTRO STATEMENT ── */
    .hz-intro {
      background: var(--off-white);
      padding: clamp(100px, 12vw, 160px) 0 clamp(80px, 9vw, 128px);
    }
    .hz-intro-inner { max-width: 1400px; margin: 0 auto; padding: 0 64px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(52px, 7vw, 120px); }
    .hz-intro-label { display: block; font-size: .68rem; font-weight: 300; letter-spacing: .32em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 28px; }
    .hz-intro-title { font-size: clamp(38px, 5.5vw, 74px); font-weight: 300; line-height: 1.04; letter-spacing: -.018em; color: var(--chocolate); }
    .hz-intro-title em { font-style: italic; font-weight: 200; color: var(--mid-brown); }
    .hz-intro-rule { width: 44px; height: 1px; background: var(--gold); margin: 40px 0; }
    .hz-intro-body { font-size: clamp(.88rem, 1.05vw, .98rem); font-weight: 300; line-height: 1.9; color: var(--mid-brown); letter-spacing: .022em; max-width: 500px; }

    /* ── PHASE I SECTION ── */

    /* ── SUPPLY CHAIN (occupies the old Product Catalogue slot) ── */
    .st-chain { padding: clamp(80px, 10vw, 130px) 0 clamp(28px, 4vw, 52px); }
    .st-chain-label { display: block; font-size: .68rem; font-weight: 300; letter-spacing: .32em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: clamp(40px, 5vw, 64px); }
    .st-steps { list-style: none; position: relative; max-width: 780px; }
    .st-steps::before {
      content: ''; position: absolute; left: 21px; top: 14px; bottom: 14px; width: 1px;
      background: linear-gradient(to bottom, rgba(200,150,62,.55), rgba(200,150,62,.10));
    }
    .st-step {
      position: relative; display: grid;
      grid-template-columns: 76px minmax(0, 1fr);
      /* the text sits on its own grid row, so row-gap must be 0 — spacing comes from the name */
      gap: 0 clamp(18px, 3vw, 40px); align-items: start;
      padding: clamp(24px, 2.8vw, 34px) 0;
      border-top: 1px solid rgba(107,66,38,.14);
    }
    .st-step:last-child { border-bottom: 1px solid rgba(107,66,38,.14); }
    .st-step-idx {
      justify-self: start; position: relative; z-index: 1;
      display: inline-flex; align-items: center; justify-content: center;
      width: 42px; height: 42px; border-radius: 50%;
      background: #EDE8D4; border: 1px solid rgba(200,150,62,.45);
      font-size: .62rem; font-weight: 400; letter-spacing: .12em; color: var(--gold);
    }
    .st-step-name {
      font-size: clamp(1.12rem, 1.8vw, 1.62rem); font-weight: 300;
      letter-spacing: -.015em; color: var(--chocolate); line-height: 1.22;
      margin-bottom: 10px;
    }
    .st-step-text {
      grid-column: 2;
      font-size: clamp(.88rem, 1.05vw, .98rem); font-weight: 300; line-height: 1.9;
      letter-spacing: .022em; color: var(--mid-brown);
    }
    @media (max-width: 768px) {
      .st-chain { padding: 72px 0 32px; }
      .st-steps::before { left: 18px; }
      .st-step { grid-template-columns: 56px minmax(0, 1fr); gap: 0 16px; }
      .st-step-idx { width: 36px; height: 36px; }
    }

    .hz-phase-one { background: #EDE8D4; padding: 0 0 clamp(80px, 10vw, 140px); position: relative; overflow: hidden; }
    .hz-phase-one-inner { max-width: 1400px; margin: 0 auto; padding: 0 64px; position: relative; z-index: 1; }
    /* Right-hand photograph. It bleeds off the edge like the illustration it
       replaces, but a real photo needs three things the artwork did not:
       cover framing, a pull-back on the saturation so the green sits inside the
       cream/gold palette, and a wash of the section colour feathering all three
       exposed edges. The wash is solid #EDE8D4 over a solid #EDE8D4 section,
       which is far more predictable than compositing two mask layers. */
    .hz-phase-figure {
      position: absolute; right: 0; top: 0; bottom: 0;
      /* Anchored rather than sized by percentage: the left edge never comes
         closer than 940px from the viewport's left, which keeps a clear gutter
         beside the 780px step column at every width. With the fade gone there
         is nothing left to hide an overlap. */
      width: calc(100% - 940px); max-width: 540px; margin: 0;
      pointer-events: none; user-select: none;
    }
    .hz-phase-decor {
      width: 100%; height: 100%; display: block;
      object-fit: cover; object-position: center;
      filter: saturate(.68) contrast(1.02) sepia(.08);
    }
    /* Below this the remaining strip is too narrow to hold the portrait crop,
       so the photo drops out instead of turning into a sliver. */
    @media (max-width: 1300px) { .hz-phase-figure { display: none; } }

    /* ── CAROUSEL ── */
    .hz-carousel-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 52px; flex-wrap: wrap; gap: 16px; }
    .hz-carousel-phases { display: flex; gap: 10px; }
    .hz-carousel-phase-btn {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: .62rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase;
      padding: 8px 18px; border-radius: 100px; cursor: pointer; font-family: var(--font);
      transition: background .35s var(--ease-premium), color .35s, border-color .35s;
    }
    .hz-carousel-phase-btn.avail { background: rgba(200,150,62,.09); color: var(--gold); border: 1px solid rgba(200,150,62,.22); }
    .hz-carousel-phase-btn.avail.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
    .hz-carousel-phase-btn.avail.active .badge-dot { background: var(--dark) !important; }
    .hz-carousel-phase-btn.coming { background: rgba(44,26,14,.04); color: rgba(107,66,38,.6); border: 1px solid rgba(44,26,14,.1); }
    .hz-carousel-phase-btn.coming.active { background: rgba(44,26,14,.1); color: var(--mid-brown); border-color: rgba(44,26,14,.2); }
    .hz-carousel-phase-btn .badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .hz-carousel-phase-btn.avail .badge-dot { background: var(--gold); }
    .hz-carousel-phase-btn.coming .badge-dot { background: rgba(107,66,38,.4); }
    .hz-carousel-nav { display: flex; align-items: center; gap: 16px; background: rgba(237,232,212,.82); backdrop-filter: blur(8px); border: 1px solid rgba(44,26,14,.14); border-radius: 100px; padding: 8px 16px 8px 20px; }
    .hz-carousel-counter { font-size: .65rem; font-weight: 400; letter-spacing: .22em; color: var(--chocolate); min-width: 72px; text-align: center; }
    .hz-carousel-btn {
      width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(44,26,14,.28);
      background: rgba(44,26,14,.07); cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .35s, border-color .35s;
    }
    .hz-carousel-btn:hover:not(:disabled) { background: var(--chocolate); border-color: var(--chocolate); }
    .hz-carousel-btn:hover:not(:disabled) svg { stroke: var(--cream); }
    .hz-carousel-btn svg { display: block; stroke: var(--chocolate); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .35s; }
    .hz-carousel-btn:disabled { opacity: .25; cursor: default; pointer-events: none; }
    .hz-carousel-track-wrap { overflow: hidden; }
    .hz-carousel-track { display: flex; border-top: 1px solid rgba(44,26,14,.08); transition: transform .72s cubic-bezier(.25,.46,.45,.94); will-change: transform; }
    .hz-card { flex: 0 0 auto; position: relative; padding: 52px 44px 56px; background: var(--off-white); border-right: 1px solid rgba(44,26,14,.07); border-bottom: 1px solid rgba(44,26,14,.07); box-sizing: border-box; transition: background .45s var(--ease-premium); }
    .hz-card:hover { background: rgba(250,247,240,.7); }
    .hz-card::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 3px; background: var(--gold); transition: width .5s var(--ease-premium); }
    .hz-card:hover::before { width: 72px; }
    .hz-card.phase-2::before { background: rgba(200,150,62,.22); }
    .hz-card.phase-2:hover::before { background: rgba(200,150,62,.45); width: 72px; }
    .hz-card-num { font-size: clamp(42px,4vw,64px); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: rgba(200,150,62,.16); margin-bottom: 20px; }
    .hz-card-name { font-size: clamp(20px,2.2vw,30px); font-weight: 600; line-height: 1.15; letter-spacing: -.012em; color: var(--chocolate); margin-bottom: 8px; }
    .hz-card.phase-2 .hz-card-name { color: rgba(44,26,14,.45); }
    .hz-card-sub { font-size: .7rem; font-weight: 300; letter-spacing: .02em; color: var(--hazelnut); margin-bottom: 28px; }
    .hz-card-rule { width: 32px; height: 1px; background: rgba(200,150,62,.3); margin-bottom: 22px; }
    .hz-card.phase-2 .hz-card-rule { background: rgba(200,150,62,.15); }
    .hz-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
    .hz-card-tag { font-size: .58rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; padding: 5px 12px; background: rgba(200,150,62,.08); color: var(--mid-brown); border: 1px solid rgba(200,150,62,.18); border-radius: 2px; }
    .hz-card.phase-2 .hz-card-tag { background: rgba(200,150,62,.04); color: rgba(107,66,38,.48); border-color: rgba(200,150,62,.1); }
    .hz-card-desc { font-size: .82rem; font-weight: 300; line-height: 1.88; color: rgba(107,66,38,.75); letter-spacing: .018em; }
    .hz-card.phase-2 .hz-card-desc { color: rgba(107,66,38,.46); }
    /* ── CAROUSEL SECTION ── */
    .hz-carousel-section { background: #f8f2e6; padding: clamp(64px,8vw,104px) 0 0; }
    .hz-carousel-section-inner { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
    .hz-carousel-banner { margin: clamp(64px,8vw,96px) 0 0; line-height: 0; }
    .hz-carousel-banner img { width: 100%; display: block; }

    .hz-carousel-progress { height: 2px; background: rgba(44,26,14,.06); position: relative; }
    .hz-carousel-progress-fill { position: absolute; top: 0; left: 0; height: 2px; background: linear-gradient(to right, var(--gold), rgba(200,150,62,.35)); transition: width .72s cubic-bezier(.25,.46,.45,.94); width: 50%; }
    .hz-vine-arrow {
      display: flex; justify-content: center; margin-top: 40px;
      transition: opacity .72s var(--ease-premium), transform .72s var(--ease-premium);
    }
    .hz-vine-arrow.hidden { opacity: 0; transform: translateX(18px); pointer-events: none; }
    .hz-vine-arrow img {
      width: min(520px, 68%); height: auto;
      animation: vine-drift 3.2s cubic-bezier(.45,.05,.55,.95) infinite;
      transform-origin: left center;
    }
    @keyframes vine-drift {
      0%   { transform: translateX(0);   opacity: .72; }
      50%  { transform: translateX(14px); opacity: 1;   }
      100% { transform: translateX(0);   opacity: .72; }
    }
    @media (max-width: 768px) {
      .hz-vine-arrow img { width: min(320px, 85%); }
    }

    /* ── B2B BESPOKE SECTION ── */
    /* ── ORIGIN PROFILE ── */
    .hz-origin { background: #f8f2e6; padding: clamp(80px, 10vw, 132px) 0 clamp(80px, 10vw, 132px); }
    .hz-origin-inner { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
    .hz-origin-head { max-width: 760px; margin-bottom: clamp(48px, 5vw, 76px); }
    .hz-origin-label { display: block; font-size: .68rem; font-weight: 300; letter-spacing: .32em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 26px; }
    .hz-origin-title { font-size: clamp(30px, 4vw, 54px); font-weight: 300; line-height: 1.06; letter-spacing: -.018em; color: var(--chocolate); }
    .hz-origin-title em { font-style: italic; font-weight: 200; color: var(--mid-brown); }
    .hz-origin-body { margin-top: 28px; font-size: clamp(.86rem, 1vw, .95rem); font-weight: 300; line-height: 1.9; color: var(--mid-brown); letter-spacing: .022em; max-width: 620px; }

    .hz-origin-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(48px, 6vw, 104px); align-items: start; }
    .hz-origin-sub { display: block; font-size: .62rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 30px; }

    /* variety rows */
    .hz-var { border-top: 1px solid rgba(44,26,14,.14); padding: 18px 0; display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px; }
    .hz-var:last-child { border-bottom: 1px solid rgba(44,26,14,.14); }
    .hz-var-name { font-size: .95rem; font-weight: 400; color: var(--chocolate); letter-spacing: -.005em; }
    .hz-var-note { display: block; margin-top: 5px; font-size: .74rem; font-weight: 300; line-height: 1.6; color: rgba(107,66,38,.6); letter-spacing: .015em; }
    .hz-var-pct { font-size: 1.15rem; font-weight: 200; color: var(--mid-brown); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }

    /* caliber bars */
    .hz-cal { margin-bottom: 22px; }
    .hz-cal:last-child { margin-bottom: 0; }
    .hz-cal-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
    .hz-cal-size { font-size: .8rem; font-weight: 400; color: var(--chocolate); letter-spacing: .02em; font-variant-numeric: tabular-nums; }
    .hz-cal-pct { font-size: .78rem; font-weight: 300; color: rgba(107,66,38,.62); font-variant-numeric: tabular-nums; }
    .hz-cal-track { height: 4px; background: rgba(44,26,14,.09); position: relative; overflow: hidden; }
    .hz-cal-fill { position: absolute; inset: 0 auto 0 0; background: var(--gold); width: 0; transition: width 1.4s var(--ease-premium); }
    .hz-cal.on .hz-cal-fill { width: var(--w); }
    .hz-cal.is-lead .hz-cal-fill { background: var(--mid-brown); }
    .hz-cal.is-lead .hz-cal-size { font-weight: 600; }
    .hz-origin-foot { margin-top: 30px; font-size: .78rem; font-weight: 300; line-height: 1.8; color: rgba(107,66,38,.62); letter-spacing: .018em; border-left: 2px solid rgba(200,150,62,.4); padding-left: 18px; }

    @media (max-width: 900px) {
      .hz-origin-grid { grid-template-columns: 1fr; gap: 56px; }
    }
    @media (max-width: 768px) {
      .hz-origin { padding: 64px 0; }
      .hz-origin-inner { padding-left: 28px; padding-right: 28px; }
    }

    .hz-bespoke { background: var(--chocolate); padding: clamp(100px, 12vw, 160px) 0; border-top: 1px solid rgba(245,237,215,.06); }
    .hz-bespoke-inner { max-width: 1400px; margin: 0 auto; padding: 0 64px; display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: clamp(64px, 9vw, 140px); }
    .hz-bespoke-kicker { display: block; font-size: .62rem; font-weight: 400; letter-spacing: .34em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 18px; }
    .hz-bespoke-label { display: block; font-size: .7rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
    .hz-bespoke-title { font-size: clamp(34px, 4.5vw, 64px); font-weight: 300; line-height: 1.06; letter-spacing: -.018em; color: var(--cream); }
    .hz-bespoke-title em { font-style: italic; font-weight: 200; color: var(--gold-light); }
    .hz-bespoke-rule { width: 44px; height: 1px; background: rgba(200,150,62,.4); margin: 44px 0; }
    .hz-bespoke-body { font-size: clamp(.84rem, 1vw, .96rem); font-weight: 300; line-height: 1.92; color: rgba(245,237,215,.52); letter-spacing: .022em; margin-bottom: 20px; }
    .hz-bespoke-note { font-size: .78rem; font-weight: 300; line-height: 1.8; color: rgba(245,237,215,.3); letter-spacing: .02em; border-left: 2px solid rgba(200,150,62,.28); padding-left: 20px; }
    .hz-bespoke-cta {
      display: inline-flex; align-items: center; gap: 16px;
      font-size: .72rem; font-weight: 400; letter-spacing: .24em; text-transform: uppercase;
      color: var(--gold-light); text-decoration: none; margin-top: 44px;
      transition: gap .45s var(--ease-premium);
    }
    .hz-bespoke-cta:hover { gap: 26px; }
    .hz-bespoke-cta .bespoke-line { width: 48px; height: 1px; background: var(--gold); transition: width .45s var(--ease-premium); }
    .hz-bespoke-cta:hover .bespoke-line { width: 72px; }
    /* Right side visual */
    .hz-bespoke-visual { position: relative; }
    .hz-bespoke-quote { font-size: clamp(1.2rem, 2.2vw, 2rem); font-weight: 300; line-height: 1.52; letter-spacing: -.01em; color: rgba(245,237,215,.68); font-style: italic; }
    .hz-bespoke-quote strong { font-weight: 600; font-style: normal; color: var(--cream); }
    .hz-bespoke-specs { margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(245,237,215,.06); }
    .hz-bespoke-spec { background: var(--chocolate); padding: 28px 24px; }
    .hz-bespoke-spec-label { font-size: .58rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 10px; }
    .hz-bespoke-spec-val { font-size: .86rem; font-weight: 300; color: rgba(245,237,215,.65); line-height: 1.55; letter-spacing: .01em; }

    /* ── FOOTER ── */
    footer { background: var(--dark); padding: 88px 0 52px; }
    .footer-grid { max-width: 1400px; margin: 0 auto; padding: 0 64px 64px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px; border-bottom: 1px solid rgba(245,237,215,.055); }
    .footer-brand .brand-mark { display: inline-block; }
    .footer-brand .brand-mark img { height: 34px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; transition: opacity .3s; }
    .footer-brand .brand-mark:hover img { opacity: 1; }
    .footer-brand .brand-tag { margin-top: 18px; font-size: .82rem; font-weight: 300; line-height: 1.78; color: rgba(245,237,215,.36); letter-spacing: .03em; max-width: 280px; }
    .footer-col h4 { font-size: .63rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 28px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
    .footer-col a { font-size: .84rem; font-weight: 300; letter-spacing: .05em; color: rgba(245,237,215,.48); text-decoration: none; transition: color .32s; }
    .footer-col a:hover { color: var(--cream); }
    .footer-bottom { max-width: 1400px; margin: 44px auto 0; padding: 0 64px; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p, .footer-bottom-links a { font-size: .67rem; font-weight: 300; letter-spacing: .13em; color: rgba(245,237,215,.22); text-decoration: none; transition: color .3s; }
    .footer-bottom-links { display: flex; gap: 36px; list-style: none; }
    .footer-bottom-links a:hover { color: rgba(245,237,215,.55); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .hz-intro-inner { grid-template-columns: 1fr; }
      .hz-bespoke-inner { grid-template-columns: 1fr; }
      .hz-bespoke-visual { display: none; }
    }
    @media (max-width: 768px) {      .hz-carousel-section { padding: 48px 0 0; }      .hz-carousel-section-inner { padding-left: 28px; padding-right: 28px; }      .hz-carousel-banner { margin-left: 0; margin-right: 0; }      .nav { padding: 24px 28px; }
      .nav.scrolled { padding: 16px 28px; }
      .nav-links, .nav-lang { display: none; }
      .hz-hero-content { padding: 0 28px 72px; }
      .hz-scroll-indicator { display: none; }
      .hz-hero-meta { flex-direction: column; align-items: flex-start; gap: 24px; }
      .hz-intro { padding: 80px 0 64px; }
      .hz-intro-inner { padding-left: 28px; padding-right: 28px; }
      .hz-phase-one { padding: 0 0 72px; }
      .hz-phase-one-inner { padding-left: 28px; padding-right: 28px; }
      .hz-carousel-bar { flex-direction: column; align-items: flex-start; }
      .hz-card { padding: 40px 28px 44px; }
      .hz-bespoke { padding: 80px 0; }
      .hz-bespoke-inner { padding-left: 28px; padding-right: 28px; }
      footer { padding: 64px 0 40px; }
      .footer-grid { padding-left: 28px; padding-right: 28px; grid-template-columns: 1fr; gap: 44px; }
      .footer-bottom { padding-left: 28px; padding-right: 28px; flex-direction: column; gap: 20px; text-align: center; }
      .footer-bottom-links { justify-content: center; }
    }
    @media (max-width: 480px) {
      .hz-bespoke-specs { grid-template-columns: 1fr; }
    }

/* ─────────────────────────────────────────
   MOBILE TAP TARGETS
   The design's link sizes come from desktop pointer accuracy. On touch the
   mobile-menu language switcher measured 19x24px and the footer links 17px
   tall — well under the 44x44 minimum in WCAG 2.5.5 and Apple's HIG.
   Padding only: nothing here moves the visual design, the hit area just
   grows around the text.
   ───────────────────────────────────────── */
@media (max-width: 768px) {

  /* Language switcher inside the mobile menu */
  .nav-mobile-foot {
    gap: 4px;
  }

  .nav-mobile-foot a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 8px;
    font-size: .78rem;
  }

  /* Footer navigation */
  .footer-col ul li a,
  .footer-bottom-links a {
    display: inline-block;
    padding: 12px 0;
    line-height: 20px;
  }

  .footer-col ul li,
  .footer-bottom-links li {
    line-height: 1;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
  }

  /* Hero call-to-action: the primary action on most pages, and only ~24px
     tall from its text alone. */
  .hero-cta,
  .jn-hero-cta,
  .hz-hero-cta,
  .s-cta-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Logos: wide enough to hit, but short. */
  .nav-logo,
  .brand-mark {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Footer bottom row: 44px tall already, widen the short ones. */
  .footer-bottom-links a {
    min-width: 44px;
    text-align: center;
  }
}
