    *, *::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(--cream); 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.95); 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; }
    }

    /* ── 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; }
    }
    @keyframes lineGrow { to { transform: scaleY(1); } }

    /* ── 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); } 
    .r-left  { opacity: 0; transform: translateX(-52px); transition: opacity var(--dur-slow) var(--ease-premium), transform var(--dur-slow) var(--ease-premium); }
    .r-right { opacity: 0; transform: translateX( 52px); transition: opacity var(--dur-slow) var(--ease-premium), transform var(--dur-slow) var(--ease-premium); }
    .r-left.on, .r-right.on { opacity: 1; transform: translate(0,0); }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .jn-hero {
      position: relative; padding: 140px 64px 80px;
      height: clamp(520px, 50vh, 780px);
      overflow: hidden; background: var(--dark);
    }
    .jn-hero-bg { position: absolute; inset: -6%; overflow: hidden; will-change: transform; }
    .jn-hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .jn-hero-vignette {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(14,9,6,.08) 0%, rgba(14,9,6,.04) 30%, rgba(14,9,6,.62) 70%, rgba(14,9,6,.94) 100%),
        linear-gradient(to right, rgba(14,9,6,.5) 0%, rgba(14,9,6,.0) 60%);
    }
    .jn-hero-vline {
      position: absolute; top: 0; left: 64px;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent 5%, rgba(200,150,62,.18) 30%, rgba(200,150,62,.08) 75%, transparent);
    }
    .jn-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1300px; }
    .jn-hero-eyebrow {
      display: block; font-size: .7rem; font-weight: 300; letter-spacing: .36em; text-transform: uppercase;
      color: var(--gold-light); margin-bottom: 28px;
      opacity: 0; transform: translateY(16px); animation: fadeUp 1s .4s var(--ease-premium) forwards;
    }
    .jn-hero-title {
      font-size: clamp(38px, 5vw, 80px); font-weight: 700;
      line-height: .88; color: var(--cream); letter-spacing: -.028em;
    }
    /* The reveal slides each line up out of an overflow-hidden box, which also
       clipped descenders off the bottom (the "gy" in technology, the "p" in crop).
       Padding the inner line gives them room; the matching negative margin keeps
       the line rhythm identical, and the next line's clip box never paints a
       background, so the descender above stays visible. */
    .jn-hero-title .line { display: block; overflow: hidden; margin-bottom: -.16em; }
    .jn-hero-title .line:last-child { margin-bottom: 0; }
    .jn-hero-title .line-inner { display: block; padding-bottom: .16em; opacity: 0; transform: translateY(110%); animation: slideUp 1.3s var(--ease-spring) forwards; }
    .jn-hero-title .line:nth-child(1) .line-inner { animation-delay: .2s; }
    .jn-hero-title .line:nth-child(2) .line-inner { animation-delay: .38s; color: var(--gold-light); font-weight: 200; font-style: italic; }
    .jn-hero-meta {
      margin-top: 44px; display: flex; align-items: flex-end; gap: 48px;
      opacity: 0; animation: fadeUp 1s .9s var(--ease-premium) forwards;
    }
    .jn-hero-sub {
      font-size: clamp(.84rem, 1vw, .96rem); font-weight: 300; line-height: 1.88;
      color: rgba(245,237,215,.62); max-width: 440px; letter-spacing: .022em;
    }
    .jn-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; flex-shrink: 0;
      transition: gap .45s var(--ease-premium);
    }
    .jn-hero-cta:hover { gap: 22px; }
    .jn-hero-cta .cta-line { width: 48px; height: 1px; background: var(--gold); transition: width .45s var(--ease-premium); }
    .jn-hero-cta:hover .cta-line { width: 72px; }
    .jn-scroll-indicator { display: none; }
    .jn-scroll-indicator span { font-size: .6rem; font-weight: 300; letter-spacing: .28em; text-transform: uppercase; color: rgba(245,237,215,.45); writing-mode: vertical-rl; }
    .jn-scroll-thread { width: 1px; height: 64px; background: linear-gradient(to bottom, var(--gold), transparent); animation: threadPulse 2.4s ease-in-out infinite; }

    /* ── FACILITY ── */
    .jn-fac { background: var(--chocolate); padding: clamp(88px, 10vw, 140px) 0; border-top: 1px solid rgba(245,237,215,.05); }
    .jn-fac-inner { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
    .jn-fac-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 120px); align-items: end; margin-bottom: clamp(44px, 5vw, 72px); }
    .jn-fac-label { display: block; font-size: .68rem; font-weight: 300; letter-spacing: .34em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 24px; }
    .jn-fac-title { font-size: clamp(30px, 4vw, 56px); font-weight: 300; line-height: 1.06; letter-spacing: -.018em; color: var(--cream); }
    .jn-fac-title em { font-style: italic; font-weight: 200; color: var(--gold-light); }
    .jn-fac-body { font-size: clamp(.84rem, 1vw, .94rem); font-weight: 300; line-height: 1.9; color: rgba(245,237,215,.45); letter-spacing: .02em; }

    .jn-fac-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
    .jn-fac-shot { position: relative; overflow: hidden; background: #0d0906; aspect-ratio: 9 / 10; }
    .jn-fac-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s var(--ease-premium); }
    .jn-fac-shot:hover img { transform: scale(1.06); }
    .jn-fac-cap {
      position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 14px;
      font-size: .58rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
      color: rgba(245,237,215,.82);
      background: linear-gradient(to top, rgba(14,9,6,.82), transparent);
    }
    .jn-fac-specs { margin-top: clamp(36px, 4vw, 56px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.4vw, 40px); }
    .jn-fac-spec { border-top: 1px solid rgba(200,150,62,.32); padding-top: 18px; }
    .jn-fac-spec-val { display: block; font-size: clamp(1.15rem, 1.7vw, 1.5rem); font-weight: 300; letter-spacing: -.02em; color: var(--cream); line-height: 1.2; }
    .jn-fac-spec-lbl { display: block; margin-top: 9px; font-size: .68rem; font-weight: 300; line-height: 1.65; color: rgba(245,237,215,.42); letter-spacing: .02em; }

    @media (max-width: 1024px) {
      .jn-fac-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
      .jn-fac-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .jn-fac-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
    }
    @media (max-width: 560px) {
      .jn-fac-inner { padding-left: 28px; padding-right: 28px; }
      .jn-fac-specs { grid-template-columns: 1fr; }
    }


    /* ── the factory footage is brighter than the orchard footage, so this hero
       needs a heavier left wash to keep the headline legible ── */
    .jn-hero-vignette {
      background:
        linear-gradient(to bottom, rgba(14,9,6,.18) 0%, rgba(14,9,6,.10) 30%, rgba(14,9,6,.66) 70%, rgba(14,9,6,.94) 100%),
        linear-gradient(to right, rgba(14,9,6,.78) 0%, rgba(14,9,6,.42) 38%, rgba(14,9,6,0) 72%);
    }

    /* ── CAPABILITIES (replaces the numeric spec tiles) ── */
    .fac-caps { margin-top: clamp(48px, 5vw, 76px); border-top: 1px solid rgba(200,150,62,.32); }
    .fac-cap {
      display: grid; grid-template-columns: 64px 1fr;
      gap: clamp(20px, 3vw, 48px); align-items: baseline;
      padding: clamp(22px, 2.4vw, 30px) 0;
      border-bottom: 1px solid rgba(245,237,215,.08);
      transition: background .4s var(--ease-premium), padding .4s var(--ease-premium);
    }
    .fac-cap:hover { background: rgba(200,150,62,.035); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
    .fac-cap-idx {
      font-size: .62rem; font-weight: 400; letter-spacing: .24em;
      text-transform: uppercase; color: var(--gold); line-height: 1.9;
    }
    /* Each row now carries a process name above its description, so the text
       column is a block of its own; baseline alignment still lands on the name. */
    .fac-cap-body { max-width: 74ch; }
    .fac-cap-name {
      font-size: clamp(1.05rem, 1.5vw, 1.3rem); font-weight: 300;
      line-height: 1.24; letter-spacing: -.012em; color: var(--cream);
      margin-bottom: 12px;
    }
    .fac-cap-text {
      font-size: clamp(.86rem, 1.05vw, .98rem); font-weight: 300;
      line-height: 1.78; letter-spacing: .016em;
      color: rgba(245,237,215,.5);
    }

    @media (max-width: 560px) {
      .fac-cap { grid-template-columns: 1fr; gap: 10px; }
      .fac-cap-idx { line-height: 1.2; }
    }

    /* ─────────────────────────────────────────
       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: 768px) {
      .nav { padding: 24px 28px; }
      .nav.scrolled { padding: 16px 28px; }
      .nav-links, .nav-lang { display: none; }
      .jn-hero { padding: 120px 28px 60px; }
      .jn-hero-vline { left: 28px; }
      .jn-scroll-indicator { display: none; }
      .jn-hero-meta { flex-direction: column; align-items: flex-start; gap: 24px; }
      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; }
    }

/* ─────────────────────────────────────────
   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;
  }
}
