/* 1937 Farms — shared site styles (extracted from index.html) */
  /* ⚠ TOXIGENESIS IS DISABLED ON PURPOSE — DO NOT UNCOMMENT UNTIL LICENSED.
     Verified with Typodermic: the free Toxigenesis license covers DESKTOP use
     (posters, shirts, logos, video). Embedding it in a webpage via @font-face
     is a separate paid WEB license, sold per-domain via MyFonts.
     Serving the .woff from this page without it is unlicensed use.

     Buy the web license → https://www.myfonts.com/collections/toxigenesis-font-typodermic
     Then delete this comment, restore the block below, and drop the Archivo
     <link> in <head>. Nothing else changes — Toxigenesis is already first in
     every font stack.

  @font-face{
    font-family:'Toxigenesis';
    src:url('../toxigenesis-bd.woff') format('woff'),
        url('../toxigenesis-bd.ttf') format('truetype');
    font-weight:700; font-style:normal; font-display:swap;
  }
  */
  :root{
    --canvas:#EDE7DC; --paper:#FFFDF9; --ink:#16232B; --ink-2:#2C3A44; --muted:#6B675C;
    --accent:#2F5D7C; --accent-2:#3E7396; --red:#C0392B; --red-2:#A5301F;
    --olive:#5C7C39; --lime:#AEC53B; --on-dark:#F6F2E9;
    --line:rgba(22,35,43,.14); --line-2:rgba(22,35,43,.22);
    --maxw:1180px;
    /* Nav height as a token. Anything that anchors or offsets against the
       sticky header subtracts THIS — never a hardcoded number. */
    --nav-h:112px;
  }
  *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body{margin:0;background:var(--canvas);color:var(--ink);
    font:16px/1.65 'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    -webkit-font-smoothing:antialiased}
  a{color:inherit;text-decoration:none}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
  .display{font-family:'Toxigenesis','Archivo','Inter',sans-serif;font-weight:700;letter-spacing:.01em;line-height:1.05}
  .em{color:var(--red)}
  .eyebrow{font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--muted)}

  /* ---------- age gate ---------- */
  #gate{position:fixed;inset:0;z-index:200;background:#101B22;color:var(--on-dark);
    display:flex;align-items:center;justify-content:center;text-align:center;padding:24px}
  #gate .g-inner{max-width:460px}
  #gate img{width:min(300px,80%);margin:0 auto 26px;display:block;
    filter:brightness(0) saturate(100%) invert(96%) sepia(8%) saturate(360%) hue-rotate(3deg) brightness(103%) contrast(94%)}
  #gate h2{font-family:'Toxigenesis','Archivo','Inter',sans-serif;font-weight:700;font-size:22px;margin:0 0 10px}
  #gate p{color:rgba(246,242,233,.72);font-size:14.5px;margin:0 0 24px}
  .g-btns{display:flex;gap:12px;justify-content:center}
  .g-btns button{font:inherit;font-weight:700;cursor:pointer;border-radius:10px;padding:12px 30px;border:1px solid transparent}
  #gYes{background:var(--red);color:#FFF7F2}
  #gYes:hover{background:var(--red-2)}
  #gNo{background:transparent;color:var(--on-dark);border-color:rgba(246,242,233,.35)}

  /* ---------- nav ---------- */
  /* Was 88% opaque — headings scrolled underneath and were half-legible.
     Near-solid + a soft shadow so the header reads as a layer above the page. */
  .nav{position:sticky;top:0;z-index:100;background:rgba(237,231,220,.97);
    backdrop-filter:saturate(180%) blur(14px);border-bottom:1px solid var(--line);
    box-shadow:0 1px 0 rgba(22,35,43,.04)}
  .nav-in{max-width:var(--maxw);margin:0 auto;padding:0 24px;height:var(--nav-h);
    display:flex;align-items:center;justify-content:space-between;gap:24px}
  /* Anchor links landed with headings tucked under the sticky nav. */
  section[id]{scroll-margin-top:calc(var(--nav-h) + 12px)}
  .nav img{height:94px;width:auto;display:block}
  .nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:8px;margin-left:auto}
  .nav-toggle span{display:block;width:26px;height:2px;background:var(--ink);margin:6px 0;
    transition:transform .2s,opacity .2s}
  .nav-in.open .nav-toggle span:nth-child(1){transform:translateY(8px) rotate(45deg)}
  .nav-in.open .nav-toggle span:nth-child(2){opacity:0}
  .nav-in.open .nav-toggle span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
  .nav-links{display:flex;align-items:center;gap:28px;font-size:14px;font-weight:500}
  .nav-links a{padding-bottom:3px;border-bottom:2px solid transparent;transition:color .12s,border-color .12s}
  .nav-links a:hover{color:var(--accent);border-bottom-color:var(--red)}
  .nav-links a.nav-cta{background:var(--red);color:#FFF7F2;padding:10px 20px;border-bottom:0;border-radius:10px;
    font-weight:700;font-size:14px;line-height:1;display:inline-flex;align-items:center}
  .nav-links a.nav-cta:hover{background:var(--red-2);color:#FFF7F2;border-bottom-color:transparent}

  /* Products dropdown. Hover on pointer devices, and focus-within so it is
     still reachable by keyboard — a hover-only menu is unusable with a
     keyboard and invisible to screen readers. */
  .nav-drop{position:relative}
  .nav-drop-t{cursor:pointer}
  .nav-menu{position:absolute;top:100%;left:-14px;min-width:190px;
    background:var(--paper);border:1px solid var(--line);border-radius:12px;
    box-shadow:0 14px 34px rgba(22,35,43,.13);
    padding:8px;margin-top:10px;display:flex;flex-direction:column;gap:2px;
    opacity:0;visibility:hidden;transform:translateY(-6px);
    transition:opacity .14s,transform .14s,visibility .14s}
  .nav-drop:hover .nav-menu,
  .nav-drop:focus-within .nav-menu{opacity:1;visibility:visible;transform:none}
  .nav-menu a{padding:9px 12px;border-radius:8px;border-bottom:none;font-size:14px}
  .nav-menu a:hover{background:var(--accent-soft);color:var(--accent);border-bottom:none}
  /* Bridges the 10px gap so the menu does not vanish as the pointer travels
     from the trigger down into it. */
  .nav-drop::after{content:"";position:absolute;top:100%;left:0;right:0;height:14px}
  /* Marks a link that leaves the site, so "Apparel" opening a new tab is not
     a surprise. Small and muted — a signal, not decoration. */
  .ext{font-size:10px;opacity:.5;vertical-align:1px}

  @media(max-width:900px){
    .nav-in{height:84px}
    .nav img{height:64px}
    .nav-toggle{display:block}
    .nav-links{position:absolute;top:100%;left:0;right:0;flex-direction:column;align-items:stretch;
      gap:0;background:rgba(237,231,220,.99);border-top:1px solid var(--line);
      box-shadow:0 14px 26px -12px rgba(22,35,43,.32);padding:6px 20px 18px;display:none}
    .nav-in.open .nav-links{display:flex}
    .nav-links a{padding:13px 4px;border-bottom:1px solid var(--line);border-radius:0}
    .nav-links a:hover{border-bottom-color:var(--line)}
    .nav-links a.nav-cta{margin-top:12px;text-align:center;border-radius:10px;border-bottom:0;padding:13px 20px}
    .nav-drop-t{padding:13px 4px}
    .nav-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;
      background:transparent;min-width:0;padding:0 0 4px 12px;border:0}
  }

  /* ---------- hero ---------- */
  /* Two scrims, not one. A flat top-to-bottom gradient muddies the whole
     photograph, and this particular frame has bright greenhouse roofs sitting
     directly behind the headline — so type washed out even with a bottom scrim.
       1. LEFT scrim gives the text column a consistent dark base regardless of
          what's behind it, and dies off by 62% so the barn side stays clean.
       2. BOTTOM scrim anchors the frame and carries into the ticker.
     Order matters: left is listed first so it paints on top. */
  /* The still stays on .hero as a background. It is the poster: it paints
     instantly, it is what mobile and reduced-motion users get, and it is what
     shows if the video is missing or still buffering. The video layers ON TOP
     of it, so a missing file degrades to exactly the page we had before. */
  .hero{position:relative;min-height:calc(94vh - var(--nav-h));display:flex;align-items:flex-end;
    overflow:hidden;
    background: url('../img/hero-farm-aerial.jpg') center 42%/cover no-repeat;
    color:var(--on-dark)}

  /* Video sits above the still, below the scrims. */
  .hero-vid{position:absolute;inset:0;width:100%;height:100%;
    object-fit:cover;object-position:center 42%;z-index:0;
    /* Fades in once the first frame is ready, so you never see a black flash
       between poster and playback. JS adds .is-ready on 'canplay'. */
    opacity:0;transition:opacity .6s ease}
  .hero-vid.is-ready{opacity:1}

  /* Scrims moved off the background shorthand into their own layer, because a
     positioned video child would otherwise paint over them. Same two gradients
     as before: left-weighted for the text column, bottom-weighted to anchor. */
  .hero::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
    background:
      linear-gradient(100deg,rgba(16,27,34,.78) 0%,rgba(16,27,34,.55) 26%,rgba(16,27,34,.16) 48%,rgba(16,27,34,0) 62%),
      linear-gradient(180deg,rgba(16,27,34,.42) 0%,rgba(16,27,34,.10) 34%,rgba(16,27,34,.62) 74%,rgba(16,27,34,.88) 100%)}

  /* Below ~900px the frame crops to the middle and the text spans full width,
     so a left-weighted scrim no longer lines up with the type. Go vertical.
     The video is also removed entirely here -- see the display:none below. */
  @media (max-width:900px){
    .hero::after{background:
      linear-gradient(180deg,rgba(16,27,34,.50) 0%,rgba(16,27,34,.24) 30%,rgba(16,27,34,.72) 70%,rgba(16,27,34,.92) 100%)}
  }

  /* Two cases where the video should never load or play:
       1. Small screens -- a background loop on cellular is rude. Poster only.
       2. prefers-reduced-motion -- accessibility, same rule the ticker follows.
     display:none also stops most browsers from fetching the source at all,
     which is the point: it is a bandwidth decision, not just a visual one. */
  @media (max-width:900px){ .hero-vid{display:none} }
  @media (prefers-reduced-motion:reduce){ .hero-vid{display:none} }

  /* Everything above the scrim layer. */
  .hero-in{position:relative;z-index:2;max-width:var(--maxw);margin:0 auto;
    padding:0 24px 84px;width:100%}
  /* Quiet scroll cue — the hero is nearly full-height, so tell people
     there's more without shouting about it. */
  .hero-cue{position:absolute;left:50%;bottom:26px;transform:translateX(-50%);
    font-size:10.5px;letter-spacing:.22em;text-transform:uppercase;
    color:rgba(246,242,233,.52);display:flex;flex-direction:column;
    align-items:center;gap:7px}
  .hero-cue::after{content:"";width:1px;height:26px;
    background:linear-gradient(180deg,rgba(246,242,233,.5),transparent)}
  .hero .eyebrow{color:rgba(246,242,233,.78)}
  .hero h1{font-size:clamp(42px,7.5vw,86px);margin:14px 0 18px;max-width:16ch}
  .hero h1 .em{color:#E4705F}
  .hero p{max-width:48ch;font-size:17.5px;color:rgba(246,242,233,.86);margin:0 0 28px}
  .hero-btns{display:flex;gap:12px;flex-wrap:wrap}
  .btn{display:inline-block;padding:14px 26px;border-radius:10px;font-weight:700;font-size:15px}
  .btn-red{background:var(--red);color:#FFF7F2}
  .btn-red:hover{background:var(--red-2)}
  .btn-ghost{border:1px solid rgba(246,242,233,.42);color:var(--on-dark)}
  .btn-ghost:hover{background:rgba(246,242,233,.10)}

  /* ---------- ticker ---------- */
  .ticker{background:var(--ink);color:var(--on-dark);overflow:hidden;padding:14px 0}
  .ticker-track{display:flex;gap:44px;white-space:nowrap;animation:slide 34s linear infinite;width:max-content}
  .ticker span{font-size:12.5px;font-weight:600;letter-spacing:.13em;text-transform:uppercase;
    color:rgba(246,242,233,.82);display:inline-flex;align-items:center;gap:44px}
  .ticker span::after{content:"◆";color:var(--lime);font-size:9px}
  @keyframes slide{from{transform:translateX(0)}to{transform:translateX(-50%)}}
  @media(prefers-reduced-motion:reduce){.ticker-track{animation:none}}

  /* ---------- sections ---------- */
  section{padding:96px 0}
  .sec-head{max-width:62ch;margin-bottom:44px}
  .sec-head h2{font-size:clamp(30px,4.4vw,46px);margin:12px 0 16px}
  .sec-head p{font-size:17px;color:var(--ink-2);margin:0}

  /* Numbers carried too little weight against the body copy. Bigger, and a
     brand-red keyline on top so the row reads as one deliberate band. */
  .stats{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:56px}
  .stat{background:var(--paper);border:1px solid var(--line);border-radius:14px;
    padding:30px 26px 28px;position:relative;overflow:hidden;
    box-shadow:0 1px 2px rgba(22,35,43,.04),0 6px 18px -10px rgba(22,35,43,.18)}
  .stat::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:var(--red)}
  .stat .n{font-family:'Toxigenesis','Archivo','Inter',sans-serif;font-weight:700;
    font-size:clamp(38px,4.4vw,52px);line-height:1;color:var(--accent);letter-spacing:.005em}
  .stat .l{font-size:13.5px;color:var(--muted);margin-top:12px;line-height:1.5}
  @media(max-width:760px){.stats{grid-template-columns:1fr}}

  /* Was centered — a tall portrait image left the text column floating in the
     middle with dead space above and below. Top-aligned, and the image is
     aspect-constrained so one very tall photo can't dictate the whole row. */
  .split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
  /* 4:5 ran ~550px against a ~320px text column — a visible dead gap under the
     copy. Square brings the columns close enough to read as a pair. */
  .split img{width:100%;border-radius:16px;display:block;
    aspect-ratio:1/1;object-fit:cover;
    box-shadow:0 1px 2px rgba(22,35,43,.06),0 20px 50px -24px rgba(22,35,43,.45)}
  @media(max-width:880px){.split{grid-template-columns:1fr;gap:32px}}

  .alt{background:var(--paper);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}

  /* ---------- product grid ---------- */
  .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px}
  .card{background:var(--paper);border:1px solid var(--line);border-radius:14px;padding:26px 24px;
    box-shadow:0 1px 2px rgba(22,35,43,.04);transition:border-color .14s,box-shadow .14s,transform .14s}
  .card:hover{border-color:var(--accent);transform:translateY(-2px);
    box-shadow:0 8px 24px -12px rgba(47,93,124,.45)}
  .card .mark{width:34px;height:34px;border-radius:8px;background:var(--accent);color:var(--on-dark);
    display:grid;place-items:center;font-weight:700;font-size:15px;margin-bottom:16px;transform:rotate(45deg)}
  .card .mark i{transform:rotate(-45deg);font-style:normal}
  .card h3{font-size:18px;margin:0 0 8px;font-weight:700}
  .card p{margin:0;font-size:14.5px;color:var(--ink-2)}

  /* ---------- awards ----------
     Dark band on purpose: the page is cream end-to-end, so the one moment
     of real proof gets its own room. Reads like a trophy case, not a badge. */
  .awards{background:var(--ink);color:var(--on-dark);padding:104px 0}
  .awards .eyebrow{color:rgba(246,242,233,.58)}
  .awards h2{font-size:clamp(30px,4.4vw,46px);margin:12px 0 14px}
  .awards h2 .em{color:#E4705F}
  .awards .lede{max-width:54ch;color:rgba(246,242,233,.78);font-size:17px;margin:0}
  .aw-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:48px}
  .aw-card{background:rgba(246,242,233,.045);border:1px solid rgba(246,242,233,.14);
    border-radius:16px;overflow:hidden;transition:border-color .16s,transform .16s}
  .aw-card:hover{border-color:rgba(174,197,59,.55);transform:translateY(-3px)}
  /* 4:5 pushed the strain name below the fold on a laptop — the name IS the
     credential, so it has to be visible with the photo. 3:4 brings it up. */
  .aw-ph{aspect-ratio:3/4;position:relative;display:grid;place-items:center;
    background:linear-gradient(155deg,#1E2E38 0%,#16232B 60%,#101B22 100%)}
  /* Absolutely positioned, NOT a grid item. As a centered grid item the img's
     height:100% is a cyclic percentage against a content-sized row, so it fell
     back to intrinsic height and the container grew past its aspect-ratio —
     three source files with three different native ratios gave three different
     card heights. Taking the img out of flow lets aspect-ratio actually hold. */
  .aw-ph img{position:absolute;inset:0;width:100%;height:100%;
    object-fit:cover;display:block}
  /* Tricho Jordan and White Truffle are studio shots of an isolated cola with a
     lot of empty black above the subject. A centered 3:4 crop leaves the flower
     sitting low in the card; biasing the crop downward puts it on center. The
     Flyin Hawaiian frame is a full macro and needs no correction. */
  .aw-ph img.is-isolated{object-position:center 62%}
  .aw-ph .slot{text-align:center;padding:20px;color:rgba(246,242,233,.30);
    font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;line-height:1.9}
  .aw-meta{padding:22px 22px 26px}
  .aw-cat{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
    color:var(--lime);margin-bottom:9px}

  /* The repeat winner gets a lime keyline and a corner badge. One card is
     lifted, not all three — if everything is emphasised nothing is. */
  .aw-card.is-champion{border-color:rgba(174,197,59,.42)}
  .aw-badge{position:absolute;top:14px;right:14px;z-index:2;
    background:var(--lime);color:#16232B;
    font-size:10.5px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
    padding:6px 11px;border-radius:999px;
    box-shadow:0 4px 14px rgba(0,0,0,.35)}
  .aw-name{font-family:'Toxigenesis','Archivo','Inter',sans-serif;font-weight:700;font-size:21px;
    letter-spacing:.01em;line-height:1.2;margin:0 0 8px}
  .aw-note{font-size:13.5px;color:rgba(246,242,233,.62);margin:0;line-height:1.55}
  .aw-foot{margin-top:40px;display:flex;align-items:center;gap:14px;flex-wrap:wrap;
    font-size:13px;color:rgba(246,242,233,.55)}
  .aw-foot .rule{flex:1;height:1px;background:rgba(246,242,233,.16);min-width:40px}
  @media(max-width:880px){.aw-grid{grid-template-columns:1fr}.awards{padding:72px 0}}

  /* ---------- 1937 timeline ---------- */
  .tl{margin:0}
  .tl-row{display:grid;grid-template-columns:26px 1fr;gap:18px;padding-bottom:26px;position:relative}
  .tl-row:last-child{padding-bottom:0}
  .tl-rail{position:relative;display:flex;justify-content:center}
  .tl-rail::before{content:"";position:absolute;top:5px;bottom:-26px;width:2px;background:var(--line-2)}
  .tl-row:last-child .tl-rail::before{display:none}
  .tl-dot{position:relative;z-index:1;width:14px;height:14px;border-radius:50%;background:var(--red);
    box-shadow:0 0 0 4px var(--paper)}
  .tl-row.is-now .tl-dot{background:var(--olive)}
  .tl-year{font-family:'Archivo',system-ui,sans-serif;font-weight:800;font-size:21px;line-height:1;
    color:var(--ink);margin:0 0 5px}
  .tl-row.is-now .tl-year{color:var(--olive)}
  .tl-body p{margin:0;font-size:14.5px;line-height:1.5;color:var(--ink-2)}

  /* ---------- find us ---------- */
  .find-in{max-width:640px;margin:0 auto;text-align:center}
  .find-note{margin:18px 0 0;font-size:12.5px;color:var(--muted)}
  .store-wrap{max-width:860px;margin:30px auto 8px;text-align:left}
  .store-head{font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);
    text-align:center;margin:0 0 20px}
  .store-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:2px 26px}
  .store-item{display:flex;flex-direction:column;padding:11px 2px;border-top:1px solid var(--line)}
  .store-item .s-name{font-weight:600;font-size:15px;color:var(--ink);line-height:1.25}
  .store-item .s-city{font-size:12.5px;color:var(--muted);margin-top:2px}
  .store-upd{text-align:center;font-size:11.5px;color:var(--muted);margin:22px 0 30px}

  /* ---------- fresh drops / strain explorer ---------- */
  .drops-head{text-align:center;max-width:660px;margin:0 auto}
  .drops-filter{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin:24px 0 26px}
  .drops-chip{border:1px solid var(--line-2);background:transparent;color:var(--ink-2);
    font:600 13px/1 inherit;padding:9px 16px;border-radius:999px;cursor:pointer;transition:.12s}
  .drops-chip:hover{border-color:var(--ink-2)}
  .drops-chip.is-on{background:var(--ink);color:var(--on-dark);border-color:var(--ink)}
  .drops-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(224px,1fr));gap:14px}
  .strain{border:1px solid var(--line);border-radius:12px;background:var(--paper);padding:15px 16px;
    cursor:pointer;transition:transform .12s,border-color .12s;text-align:left}
  .strain:hover{border-color:var(--line-2);transform:translateY(-2px)}
  .strain.no-detail,.strain.no-detail:hover{cursor:default;transform:none;border-color:var(--line)}
  .strain-top{display:flex;align-items:flex-start;gap:8px;justify-content:space-between}
  .strain-name{font-weight:700;font-size:15.5px;color:var(--ink);line-height:1.25}
  .tbadge{font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
    padding:3px 8px;border-radius:999px;white-space:nowrap;flex:none}
  .tbadge.sativa{background:rgba(192,57,43,.15);color:#C0392B}
  .tbadge.indica{background:rgba(47,93,124,.15);color:#2f5d7c}
  .tbadge.hybrid{background:rgba(92,124,57,.15);color:#5C7C39}
  .strain-forms{font-size:12px;color:var(--muted);margin-top:8px}
  .strain-award{color:var(--red);font-weight:700}
  .strain-detail{display:none;margin-top:12px;padding-top:12px;border-top:1px solid var(--line)}
  .strain.is-open .strain-detail{display:block}
  .strain-detail .lin{font-size:12.5px;color:var(--ink-2);margin:0 0 9px;line-height:1.5}
  .strain-detail .lin b{color:var(--ink)}
  .terp{display:inline-block;font-size:11px;color:var(--ink-2);background:rgba(0,0,0,.045);
    border-radius:999px;padding:3px 9px;margin:0 5px 5px 0}
  .drops-upd{text-align:center;font-size:11.5px;color:var(--muted);margin:26px 0 0}
  @media(max-width:600px){.drops-grid{grid-template-columns:1fr 1fr}}

  /* ---------- contact ---------- */
  .cta-band{background:var(--ink);color:var(--on-dark);border-radius:18px;padding:56px 48px;text-align:center}
  .cta-band h2{font-size:clamp(28px,4vw,42px);margin:0 0 14px}
  .cta-band .em{color:#E4705F}
  .cta-band p{max-width:52ch;margin:0 auto 28px;color:rgba(246,242,233,.82)}
  .cta-feats{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;max-width:840px;margin:4px auto 30px;text-align:left}
  .cta-feat{border-top:2px solid rgba(228,112,95,.55);padding-top:14px}
  .cta-feat h4{margin:0 0 6px;font-size:15px;color:var(--on-dark);font-weight:700}
  .cta-feat p{margin:0;max-width:none;font-size:13.5px;line-height:1.5;color:rgba(246,242,233,.72)}
  @media(max-width:700px){.cta-band{padding:40px 26px}.cta-feats{grid-template-columns:1fr;gap:16px}}


  /* ---------- footer ---------- */
  footer{background:var(--ink);color:rgba(246,242,233,.74);padding:64px 0 34px;margin-top:0}
  .f-top{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:44px;margin-bottom:44px}
  footer img.f-logo{width:230px;margin-bottom:18px;display:block;
    filter:brightness(0) saturate(100%) invert(96%) sepia(8%) saturate(360%) hue-rotate(3deg) brightness(103%) contrast(94%)}
  footer h4{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--on-dark);margin:0 0 14px}
  footer ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:9px;font-size:14.5px}
  footer a:hover{color:var(--lime)}
  .warn{border-top:1px solid rgba(246,242,233,.16);padding-top:24px;font-size:12px;line-height:1.6;
    color:rgba(246,242,233,.60)}
  .warn strong{color:var(--on-dark)}
  .f-bot{margin-top:20px;font-size:12px;color:rgba(246,242,233,.5);display:flex;
    justify-content:space-between;gap:16px;flex-wrap:wrap}
  @media(max-width:820px){.f-top{grid-template-columns:1fr;gap:30px}}

/* ---------- store map (Leaflet) ---------- */
.store-map{height:460px;border-radius:16px;border:1px solid var(--line);overflow:hidden;
  margin:8px auto 22px;max-width:980px;background:var(--paper)}
.pin-1937{display:block;width:16px;height:16px;border-radius:50%;background:var(--red);
  border:2px solid #fff;box-shadow:0 1px 5px rgba(0,0,0,.45)}
.leaflet-container{font-family:'Inter',sans-serif}
.leaflet-popup-content{margin:11px 13px;font-size:14px;line-height:1.4}
.leaflet-popup-content .lp-city{font-size:11px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);margin-bottom:5px}
.leaflet-popup-content .lp-name{font-weight:600;color:var(--ink);display:block;margin-top:1px}
@media(max-width:600px){.store-map{height:360px}}

/* ===== home motion + hero award + instagram (added) ===== */
.hero-award{display:inline-flex;align-items:center;gap:7px;background:rgba(246,242,233,.14);border:1px solid rgba(246,242,233,.30);color:var(--on-dark);font-weight:700;font-size:12.5px;letter-spacing:.02em;padding:7px 13px;border-radius:999px;margin-bottom:16px}
.hero-award svg{color:var(--lime)}
.js-reveal .reveal{opacity:0;transform:translateY(20px);transition:opacity .7s cubic-bezier(.2,.7,.2,1),transform .7s cubic-bezier(.2,.7,.2,1)}
.js-reveal .reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.js-reveal .reveal{opacity:1!important;transform:none!important;transition:none}}
.nav{transition:box-shadow .18s ease,background .18s ease}
.nav.shrunk{box-shadow:0 2px 18px rgba(22,35,43,.10)}
.nav.shrunk .nav-in{height:80px}
.nav.shrunk .nav img{height:66px}
.ig-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:22px}
.iggrid{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.iggrid a{position:relative;aspect-ratio:1/1;overflow:hidden;border-radius:12px;display:block;background:var(--ink-2)}
.iggrid img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.iggrid a:hover img{transform:scale(1.08)}
@media(max-width:900px){.iggrid{grid-template-columns:repeat(3,1fr)}}

/* ===== drops notify form (added) ===== */
.notify-wrap{display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}
.notify-form{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.notify-form input{font:500 15px Inter,system-ui,sans-serif;padding:13px 16px;border-radius:10px;border:1px solid var(--line-2);background:var(--paper);color:var(--ink);min-width:240px}
.notify-form input:focus{outline:2px solid var(--accent);outline-offset:1px}
.notify-msg{font-size:13.5px;font-weight:600;flex-basis:100%}
.notify-msg.ok{color:var(--olive)}
.notify-msg.err{color:var(--red)}

/* ===== fix: keep header above Leaflet map controls (z-index) ===== */
.nav{z-index:1100}
#gate{z-index:1200}
/* belt-and-suspenders: cap Leaflet's own control layer below the nav */
.leaflet-top,.leaflet-bottom{z-index:500}
