/* ============================================================
   BRITISH BIRD FEEDERS  -  "The Quiet Hour"
   One stylesheet. Outfit throughout, self-hosted (fonts.css).
   Palette: dusk (a hedge at last light) - chalk (limewash) -
   ember (a robin breast, the signature) - gilt (hairline metal).
   ============================================================ */

:root {
  --dusk:      #16211f;
  --dusk-2:    #1e2e2a;
  --dusk-3:    #273832;
  --dusk-deep: #0e1614;

  --chalk:     #f4f1ea;
  --chalk-2:   #eae4d8;
  --chalk-3:   #ded6c6;
  --paper:     #ffffff;

  --ember:     #b4472c;
  --ember-lt:  #cb6244;
  --ember-dk:  #8e3520;
  --gilt:      #c9a961;
  --gilt-lt:   #e0c68f;
  --sage:      #6e8271;

  --ink:       #131b18;
  --ink-soft:  #56605c;
  --ink-faint: #5f6963;   /* 5.7:1 on paper, 5.05 on chalk - the old
                             #7d8782 failed WCAG AA at 3.71 */
  --gilt-ink:  #7a5d1c;   /* gilt is a 2.25:1 hairline colour; text
                             that happens to be gold uses this instead */

  --line:      rgba(19, 27, 24, 0.14);
  --hair:      rgba(19, 27, 24, 0.075);
  --hair-lt:   rgba(255, 255, 255, 0.14);

  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-sm: 0 1px 2px rgba(14, 22, 20, .05), 0 6px 18px rgba(14, 22, 20, .05);
  --shadow:    0 2px 6px rgba(14, 22, 20, .06), 0 18px 44px rgba(14, 22, 20, .09);
  --shadow-lg: 0 30px 80px rgba(14, 22, 20, .18);
  --ease:      cubic-bezier(.22, .75, .3, 1);

  --wrap:      1280px;
  --pad-y:     clamp(52px, 6vw, 86px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
/* deliberately NOT scroll-behavior:smooth on html - it hijacks the rail
   arrows' scrollLeft jumps and makes them feel broken */
body {
  margin: 0;
  font-family: 'Outfit', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
[hidden] { display: none !important; }   /* an author display:flex must not beat the attribute */

h1, h2, h3, h4, h5 {
  font-family: inherit; font-weight: 600; letter-spacing: -.022em;
  line-height: 1.13; color: var(--ink); margin: 0 0 .5em; text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 3.5vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 2.4vw, 2.2rem); }
h3 { font-size: 1.06rem; letter-spacing: -.012em; }
h4 { font-size: .95rem; }
p  { margin: 0 0 1em; }
strong, b { font-weight: 600; }
::selection { background: var(--ember); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; }
@media (min-width: 1000px) { .wrap { padding: 0 34px; } body { font-size: 16.5px; } }

.lede { font-size: clamp(.98rem, 1.05vw, 1.08rem); color: var(--ink-soft); line-height: 1.75; }
.eyebrow, .kicker {
  font-size: .67rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--ember); margin: 0 0 18px;
}
.band-deep .eyebrow, .band-dusk .eyebrow,
.band-deep .kicker, .band-dusk .kicker { color: var(--gilt-lt); }
.eyebrow-rule { display: flex; width: fit-content; align-items: center; gap: 15px; }
.eyebrow-rule::after { content: ""; width: 54px; height: 1px; background: var(--gilt); opacity: .85; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip { position: absolute; left: -999px; top: 0; background: var(--dusk); color: #fff;
        padding: 11px 18px; z-index: 400; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; top: 0; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

/* ---------- bands ---------- */
.band-paper  { background: var(--paper); }
.band-tint   { background: var(--chalk); }
.band-accent { background: var(--chalk-2); }
.band-deep, .band-dusk {
  background: var(--dusk); color: #fff;
  background-image: radial-gradient(115% 85% at 12% 0%, rgba(201, 169, 97, .13), transparent 62%);
}
.band-deep h1, .band-deep h2, .band-deep h3, .band-deep h4, .band-deep p,
.band-dusk h1, .band-dusk h2, .band-dusk h3, .band-dusk h4, .band-dusk p { color: #fff; }
.band-deep .lede, .band-dusk .lede { color: rgba(255,255,255,.76); }
.hairline { border-top: 1px solid var(--hair); }
section { padding: var(--pad-y) 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 600; font-size: .94rem;
  min-height: 50px; padding: 12px 27px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.7; flex: none; }
.btn-primary { background: var(--dusk); color: #fff; border-color: var(--dusk); }
.btn-primary:hover { background: var(--dusk-3); }
.btn-ember { background: var(--ember); color: #fff; border-color: var(--ember); }
.btn-ember:hover { background: var(--ember-dk); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--dusk); color: #fff; border-color: var(--dusk); }
.btn-light { background: #fff; color: var(--dusk); border-color: #fff; }
.btn-light:hover { background: var(--gilt); border-color: var(--gilt); color: #1b1405; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn-outline-light:hover { background: #fff; color: var(--dusk); }
.btn-big { min-height: 56px; padding: 15px 34px; font-size: 1rem; }
.btn-small { min-height: 42px; padding: 9px 20px; font-size: .86rem; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.util { background: var(--dusk-deep); color: rgba(255,255,255,.72); font-size: .71rem;
        font-weight: 500; letter-spacing: .085em; text-transform: uppercase; }
.util-in { display: flex; align-items: center; justify-content: space-between; min-height: 34px; gap: 18px; }
.util b { color: #fff; font-weight: 600; }
.util-r { display: flex; gap: 24px; align-items: center; }
.util-r span, .util-l span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.util svg { width: 13px; height: 13px; stroke: var(--gilt); fill: none; stroke-width: 1.6; flex: none; }
@media (max-width: 1080px) { .util-r span:nth-child(n+3) { display: none; } }
@media (max-width: 860px)  { .util-r span:nth-child(n+2) { display: none; } }
/* below this the two groups cannot both fit: keep one promise, centred */
@media (max-width: 700px) {
  .util-r { display: none; }
  .util-in { justify-content: center; }
  .util-l span { white-space: normal; text-align: center; }
}

.hdr { position: sticky; top: 0; z-index: 130; background: var(--dusk); transition: box-shadow .3s ease; }
.hdr::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,.5), transparent);
}
.hdr.is-scrolled { box-shadow: 0 14px 40px rgba(8, 14, 12, .3); }

.hdr-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
            gap: 24px; min-height: 104px; padding-top: 12px; padding-bottom: 12px; }
.hdr-left  { grid-column: 1; display: flex; justify-content: flex-start; min-width: 0; }
.hdr-right { grid-column: 3; display: flex; align-items: center; justify-content: flex-end; gap: 6px; min-width: 0; }

/* lockup: crest + two-line wordmark, kept >=60px tall so it holds against the nav */
.logo { grid-column: 2; display: inline-flex; align-items: center; gap: 14px;
        text-decoration: none; color: #fff; flex: none; padding: 2px; }
.logo-crest { width: 68px; height: 68px; flex: none; transition: transform .45s var(--ease); }
.logo:hover .logo-crest { transform: rotate(-4deg) scale(1.05); }
.logo-txt { display: flex; flex-direction: column; line-height: 1.02; }
.logo-txt b { font-size: 1.3rem; font-weight: 600; letter-spacing: -.025em; white-space: nowrap; }
.logo-txt i { font-style: normal; font-size: .6rem; font-weight: 600; letter-spacing: .28em;
              text-transform: uppercase; color: var(--gilt); margin-top: 5px; white-space: nowrap; }

/* search */
.hdr-search { flex: 1 1 auto; position: relative; width: 100%; max-width: 400px; }
.hdr-search form { position: relative; display: block; }
.hdr-search input {
  width: 100%; min-height: 48px; border-radius: 999px; border: 1px solid transparent;
  background: rgba(255,255,255,.96); color: var(--ink); font-family: inherit; font-size: .93rem;
  padding: 0 50px 0 46px; transition: box-shadow .25s ease, border-color .25s ease;
}
.hdr-search input::placeholder { color: #98a19c; }
.hdr-search input:focus { outline: none; border-color: var(--gilt); box-shadow: 0 0 0 4px rgba(201,169,97,.24); }
.hdr-search .s-ico { position: absolute; left: 17px; top: 50%; transform: translateY(-50%);
                     width: 17px; height: 17px; stroke: #7d867f; fill: none; stroke-width: 1.7; pointer-events: none; }
.hdr-search .s-go {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--dusk); color: #fff; display: grid; place-items: center; transition: background .2s ease;
}
.hdr-search .s-go:hover { background: var(--ember); }
.hdr-search .s-go svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.9; }

.s-pop { position: absolute; top: calc(100% + 11px); left: 0; right: 0; z-index: 40;
         background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
         overflow: hidden; padding: 8px; max-height: 64vh; overflow-y: auto; }
.s-pop-h { font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-faint);
           padding: 10px 12px 6px; font-weight: 700; }
.s-row { display: flex; align-items: center; gap: 13px; padding: 9px 12px; border-radius: 9px;
         text-decoration: none; color: var(--ink); }
.s-row:hover, .s-row.is-on { background: var(--chalk); }
.s-row img { width: 46px; height: 46px; border-radius: 7px; object-fit: contain; background: var(--chalk-2);
             mix-blend-mode: multiply; flex: none; }
.s-row-n { font-size: .9rem; font-weight: 500; line-height: 1.3; }
.s-row-p { font-size: .85rem; font-weight: 600; color: var(--ember); margin-left: auto; white-space: nowrap;
           font-variant-numeric: tabular-nums; }
.s-empty { padding: 18px 12px; color: var(--ink-soft); font-size: .9rem; }

.hdr-links { display: flex; align-items: center; gap: 2px; flex: none; }
.hdr-links a { display: flex; flex-direction: column; align-items: center; gap: 4px;
               text-decoration: none; color: rgba(255,255,255,.86); padding: 8px 12px; border-radius: 9px;
               font-size: .7rem; font-weight: 500; letter-spacing: .03em; transition: color .2s, background .2s; }
.hdr-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.hdr-links svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.45; }

.cart-btn {
  display: inline-flex; align-items: center; gap: 13px; flex: none; cursor: pointer;
  background: rgba(201,169,97,.07); border: 1px solid rgba(201,169,97,.4); border-radius: 11px;
  padding: 11px 18px; min-height: 58px; color: #fff; font-family: inherit; font-size: .98rem; font-weight: 600;
  transition: border-color .25s, background .25s, box-shadow .3s;
}
.cart-btn:hover { border-color: var(--gilt); background: rgba(201,169,97,.15); box-shadow: 0 0 0 4px rgba(201,169,97,.1); }
.cart-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-btn .cart-sum { min-width: 56px; text-align: left; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.cart-wrap { position: relative; display: inline-flex; align-items: center; padding-left: 13px;
             border-left: 1px solid rgba(255,255,255,.18); }
.cart-n { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px;
          border-radius: 999px; background: var(--ember); color: #fff; font-size: .67rem; font-weight: 700;
          display: grid; place-items: center; line-height: 1; }
.cart-btn.is-bumped .cart-n { animation: bump .45s var(--ease); }
@keyframes bump { 35% { transform: scale(1.42); } }

.burger { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.26);
          border-radius: 10px; background: transparent; cursor: pointer; flex: none;
          flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 19px; height: 1.6px; background: #fff; border-radius: 2px;
               transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- category bar + mega ---------- */
.catbar { border-top: 1px solid var(--hair-lt); background: var(--dusk); position: relative; }
.catbar > .wrap { display: flex; justify-content: center; }
.catnav { display: flex; align-items: stretch; gap: 2px; list-style: none; margin: 0; padding: 0; }
/* static, so the mega panel anchors to .catbar (full width) and never to the <li> */
.catnav > li { position: static; }
.catnav > li > a {
  display: inline-flex; align-items: center; gap: 6px; height: 48px; padding: 0 16px;
  text-decoration: none; color: rgba(255,255,255,.88); font-size: .875rem; font-weight: 500;
  white-space: nowrap; position: relative; transition: color .2s ease;
}
.catnav > li > a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 9px; height: 1px;
  background: var(--gilt); transform: scaleX(0); transform-origin: left; transition: transform .32s var(--ease);
}
.catnav > li > a:hover, .catnav > li.is-open > a { color: #fff; }
.catnav > li > a:hover::after, .catnav > li.is-open > a::after { transform: scaleX(1); }
.catnav .caret { width: 9px; height: 9px; opacity: .6; transition: transform .3s var(--ease);
                 stroke: currentColor; fill: none; stroke-width: 2; }
.catnav > li.is-open .caret { transform: rotate(180deg); }

.mega {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 125;
  background: var(--paper); color: var(--ink); border-top: 1px solid var(--hair);
  box-shadow: 0 34px 70px rgba(8, 14, 12, .22);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .26s ease, transform .3s var(--ease), visibility .26s; pointer-events: none;
}
.mega.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.mega-in { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 42px;
           align-items: start; padding-top: 30px; padding-bottom: 32px; }
.mega-cols { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px 32px; }
.mega-col h4 { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
               font-weight: 700; margin: 0 0 11px; padding-bottom: 9px; border-bottom: 1px solid var(--hair); }
.mega-col a { display: flex; align-items: baseline; gap: 8px; text-decoration: none; color: var(--ink);
              font-size: .92rem; padding: 5px 0; transition: color .18s ease, padding-left .25s var(--ease); }
.mega-col a:hover { color: var(--ember); padding-left: 6px; }
.mega-col a i { font-style: normal; font-size: .7rem; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.mega-col a.is-star { font-weight: 600; }
.mega-feat { background: var(--chalk); border-radius: var(--radius-lg); padding: 20px; text-decoration: none;
             color: var(--ink); display: flex; flex-direction: column; gap: 11px; transition: transform .35s var(--ease); }
.mega-feat:hover { transform: translateY(-3px); }
.mega-feat img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 5%;
                 mix-blend-mode: multiply; border-radius: 11px; }
.mega-feat .kicker { margin: 0; }
.mega-feat strong { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.mega-feat span { font-size: .87rem; color: var(--ink-soft); }
.mega-feat em { font-style: normal; font-weight: 600; color: var(--ember); font-size: .9rem; }

.scrim { position: fixed; inset: 0; background: rgba(8,14,12,.45); opacity: 0; visibility: hidden;
         transition: opacity .3s ease, visibility .3s; z-index: 100;
         -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.scrim.show { opacity: 1; visibility: visible; }

/* ---------- mobile nav ---------- */
.mnav { position: fixed; top: 0; bottom: 0; left: 0; width: min(92vw, 400px); z-index: 205;
        background: var(--paper); transform: translateX(-102%); transition: transform .38s var(--ease);
        display: flex; flex-direction: column; box-shadow: 22px 0 60px rgba(8,14,12,.3); }
.mnav.open { transform: none; }
.mnav-h { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px;
          border-bottom: 1px solid var(--hair); }
.mnav-h strong { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.mnav-x { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
          cursor: pointer; font-size: .95rem; font-family: inherit; }
.mnav-body { flex: 1; overflow-y: auto; padding: 6px 0 30px; }
.mnav-body > a, .mnav-acc > button {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 20px; font-size: 1rem; font-weight: 500; text-decoration: none; color: var(--ink);
  background: none; border: 0; border-bottom: 1px solid var(--hair); font-family: inherit;
  cursor: pointer; text-align: left;
}
.mnav-acc > button svg { width: 12px; height: 12px; transition: transform .3s var(--ease); opacity: .6;
                         stroke: currentColor; fill: none; stroke-width: 2; }
.mnav-acc.open > button svg { transform: rotate(180deg); }
.mnav-sub { display: none; background: var(--chalk); padding: 5px 0; }
.mnav-acc.open .mnav-sub { display: block; }
.mnav-sub a { display: block; padding: 10px 30px; font-size: .91rem; text-decoration: none; color: var(--ink-soft); }
.mnav-sub a:hover { color: var(--ember); }
.mnav-f { padding: 16px 20px; border-top: 1px solid var(--hair); font-size: .82rem; color: var(--ink-soft); }

/* ============================================================
   HERO  -  "the quiet hour": a dark editorial stage, product
   staged on a chalk plinth rather than a mascot.
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 0;
        background: var(--dusk); color: #fff; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(78% 62% at 78% 30%, rgba(201,169,97,.16), transparent 64%),
    radial-gradient(60% 60% at 12% 92%, rgba(180,71,44,.20), transparent 66%);
}
/* fine horizon rules - a hedge at last light, drawn not photographed */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%; z-index: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.028) 0 1px, transparent 1px 7px);
  mask-image: linear-gradient(180deg, transparent, #000 70%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 70%);
  pointer-events: none;
}
.hero-in { position: relative; z-index: 1; display: grid; gap: 34px;
           grid-template-columns: 1fr; padding: clamp(46px, 6vw, 84px) 0 clamp(52px, 6vw, 88px); }
@media (min-width: 940px) { .hero-in { grid-template-columns: 1.06fr .94fr; align-items: center; gap: 56px; } }
.hero-copy { max-width: 34rem; }
.hero-copy h1 { color: #fff; margin-bottom: .42em; }
.hero-copy h1 em { font-style: normal; color: var(--gilt-lt); }
.hero-sub { color: rgba(255,255,255,.8); font-size: clamp(.99rem, 1.1vw, 1.1rem); line-height: 1.72; margin-bottom: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-marks { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .82rem; color: rgba(255,255,255,.7); }
.hero-marks span { display: inline-flex; align-items: center; gap: 8px; }
.hero-marks svg { width: 15px; height: 15px; stroke: var(--gilt); fill: none; stroke-width: 1.8; flex: none; }

/* the plinth: one product, lit, with a real contact shadow */
.hero-stage { position: relative; aspect-ratio: 5/4; border-radius: var(--radius-xl);
              background: radial-gradient(96% 78% at 50% 12%, #fffdf8 0%, var(--chalk) 52%, var(--chalk-2) 100%);
              overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-stage img { position: absolute; inset: 8% 10% 14%; width: 80%; height: 78%;
                  object-fit: contain; mix-blend-mode: multiply; }
.hero-stage::after {
  content: ""; position: absolute; left: 50%; bottom: 11%; transform: translateX(-50%);
  width: 46%; height: 6%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(19,27,24,.26), rgba(19,27,24,0));
}
.hero-tag { position: absolute; left: 20px; bottom: 18px; z-index: 2; display: flex; flex-direction: column; gap: 2px; }
.hero-tag b { font-size: .92rem; font-weight: 600; color: var(--ink); }
.hero-tag span { font-size: .78rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hero-seal { position: absolute; right: 18px; top: 18px; z-index: 2; width: 82px; height: 82px; opacity: .95; }

/* ---------- assurance rail ---------- */
.assure { padding: 24px 0; background: var(--chalk); border-bottom: 1px solid var(--hair); }
.assure-in { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
@media (min-width: 860px) { .assure-in { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.assure-i { display: flex; align-items: center; gap: 13px; padding: 0 20px; border-left: 1px solid var(--hair); }
.assure-i:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 859px) { .assure-i:nth-child(odd) { border-left: 0; padding-left: 0; } }
.assure-i svg { width: 22px; height: 22px; stroke: var(--sage); fill: none; stroke-width: 1.4; flex: none; }
.assure-i b { display: block; font-size: .86rem; font-weight: 600; letter-spacing: -.005em; }
.assure-i span { display: block; font-size: .78rem; color: var(--ink-soft); }

/* ---------- section heads ---------- */
.section-head { max-width: 700px; margin-bottom: 42px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); margin: 0; font-size: 1.02rem; line-height: 1.75; max-width: 58ch; }
.band-deep .section-head p, .band-dusk .section-head p { color: rgba(255,255,255,.78); }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px;
            margin-bottom: 38px; flex-wrap: wrap; }
.head-row .section-head { margin-bottom: 0; }
.head-link { text-decoration: none; font-size: .86rem; font-weight: 600; color: inherit;
             display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px;
             border-bottom: 1px solid var(--line); transition: gap .3s var(--ease), border-color .25s ease; }
.head-link:hover { gap: 13px; border-color: var(--ember); }
.head-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.band-deep .head-link, .band-dusk .head-link { border-color: rgba(255,255,255,.3); }

/* ============================================================
   PRODUCT CARD
   Staged, not floated. Hairline via inset shadow, never a border.
   Persistent action node - nothing hides on hover, nothing shifts.
   ============================================================ */
.pcard { position: relative; height: 100%; background: var(--paper); border-radius: var(--radius-lg);
         box-shadow: inset 0 0 0 1px var(--hair); padding: 12px 12px 14px; overflow: hidden;
         display: flex; flex-direction: column;
         transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pcard:hover { transform: translateY(-5px);
               box-shadow: inset 0 0 0 1px rgba(201,169,97,.55), var(--shadow); }
.pcard-media { position: relative; display: block; aspect-ratio: 1/1; overflow: hidden;
               border-radius: 11px;
               background: radial-gradient(118% 86% at 50% 8%, #fffdf8 0%, var(--chalk) 56%, var(--chalk-2) 100%); }
.pcard-media img { width: 100%; height: 100%; object-fit: contain; padding: 10%;
                   mix-blend-mode: multiply; transition: transform .85s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.055); }
/* photographs with their own background must not multiply away */
.pcard[data-shot="lifestyle"] .pcard-media img { object-fit: cover; padding: 0; mix-blend-mode: normal; }
.pcard-media::after {
  content: ""; position: absolute; left: 50%; bottom: 10%; transform: translateX(-50%);
  width: 52%; height: 8%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(19,27,24,.2), rgba(19,27,24,0));
}
.pcard[data-shot="lifestyle"] .pcard-media::after { content: none; }

.pcard-idx { position: absolute; right: 14px; top: 10px; z-index: 2; font-size: .68rem; font-weight: 700;
             letter-spacing: .1em; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.pcard-badge { position: absolute; z-index: 2; top: 12px; left: 12px; font-size: .62rem; font-weight: 700;
               letter-spacing: .14em; text-transform: uppercase; border-radius: 4px; padding: 5px 9px;
               line-height: 1; background: rgba(22,33,31,.9); color: #fff; }
.pcard-body { padding: 15px 4px 0; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard-cat { font-size: .64rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.pcard-name { font-weight: 500; font-size: .95rem; line-height: 1.36; color: var(--ink); text-decoration: none;
              display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
              min-height: 2.72em; }
.pcard-name:hover { color: var(--ember); }
.pcard-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: flex-end;
              justify-content: space-between; gap: 12px; }
/* price as an object: mark and pence smaller, lighter, raised */
.price { font-weight: 600; font-size: 1.22rem; letter-spacing: -.02em; color: var(--ink);
         font-variant-numeric: tabular-nums; line-height: 1; display: inline-flex; align-items: flex-start; }
.price s, .price u { text-decoration: none; }
.price .cur { font-size: .68em; font-weight: 500; transform: translateY(-.42em); margin-right: 1px; }
.price .pen { font-size: .68em; font-weight: 500; transform: translateY(-.42em); margin-left: 1px; }
.price-was { color: var(--ink-faint); text-decoration: line-through; font-weight: 400; font-size: .82rem;
             font-variant-numeric: tabular-nums; margin-left: 8px; }
/* a marker, not a clearance pill */
.price-off { color: var(--ember); font-weight: 600; font-size: .8rem; letter-spacing: .01em;
             border-bottom: 1.5px solid var(--ember); padding-bottom: 1px; margin-left: 8px; }

.pcard-add {
  width: 40px; height: 40px; flex: none; border-radius: 50%; cursor: pointer; position: relative;
  background: transparent; color: var(--ink); border: 1px solid var(--line);
  display: grid; place-items: center; font-family: inherit;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.pcard:hover .pcard-add { border-color: var(--ember); color: var(--ember); }
.pcard-add:hover { background: var(--ember); color: #fff; border-color: var(--ember); transform: scale(1.07); }
.pcard-add svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.pcard-add .tick { display: none; }
.pcard-add.is-done { background: var(--sage); border-color: var(--sage); color: #fff; }
.pcard-add.is-done .plus { display: none; }
.pcard-add.is-done .tick { display: block; }
.pcard-add::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid var(--ember); opacity: 0; pointer-events: none;
}
.pcard-add.is-ping::after { animation: ping .6s var(--ease); }
@keyframes ping { from { opacity: .9; transform: scale(.7); } to { opacity: 0; transform: scale(1.25); } }

.pgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
@media (min-width: 700px)  { .pgrid { grid-template-columns: repeat(3, 1fr); gap: 32px 22px; } }
@media (min-width: 1080px) { .pgrid { grid-template-columns: repeat(4, 1fr); gap: 38px 24px; } }

/* ---------- horizontal rail ---------- */
.rail-wrap { position: relative; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(185px, 1fr); gap: 16px;
        overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
        padding: 4px 0 8px; margin: 0 -20px; padding-inline: 20px;
        scrollbar-width: none; -ms-overflow-style: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
@media (min-width: 700px) { .rail { grid-auto-columns: minmax(225px, 1fr); } }
/* an exact track width - minmax(0,x) lets grid shrink tracks to fit and kills the scroll entirely */
@media (min-width: 1000px) { .rail { grid-auto-columns: calc((100% - 96px) / 5); gap: 24px; margin: 0; padding-inline: 0; } }
.rail-nav { display: flex; gap: 9px; }
.rail-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
                   background: var(--paper); color: var(--ink); cursor: pointer; display: grid; place-items: center;
                   transition: background .25s, color .25s, border-color .25s, opacity .25s; }
.rail-nav button:hover { background: var(--dusk); color: #fff; border-color: var(--dusk); }
.rail-nav button[disabled] { opacity: .3; cursor: default; }
.rail-nav button[disabled]:hover { background: var(--paper); color: var(--ink); border-color: var(--line); }
.rail-nav svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   SHOP-BY tiles  (homepage block 3)
   ============================================================ */
.tiles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 760px)  { .tiles-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1080px) { .tiles-grid { grid-template-columns: repeat(6, 1fr); } }
.tile { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 12px; text-align: center; }
.tile-m { aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; position: relative;
          background: radial-gradient(110% 84% at 50% 10%, #fffdf8, var(--chalk) 58%, var(--chalk-2));
          box-shadow: inset 0 0 0 1px var(--hair);
          transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tile:hover .tile-m { transform: translateY(-6px); box-shadow: inset 0 0 0 1px var(--gilt), var(--shadow); }
.tile-m img { width: 100%; height: 100%; object-fit: contain; padding: 17%; mix-blend-mode: multiply; }
.tile-m[data-shot="lifestyle"] img { object-fit: cover; padding: 0; mix-blend-mode: normal; }
/* two-line min-height keeps the item counts on one baseline when a
   longer label wraps, so the row does not read as ragged */
.tile b { font-size: .93rem; font-weight: 600; letter-spacing: -.01em;
          min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
.tile span { font-size: .77rem; color: var(--ink-faint); font-variant-numeric: tabular-nums; }

/* ============================================================
   FEATURE BAND  (squirrel-proof / water) - big editorial split
   ============================================================ */
.feature { position: relative; overflow: hidden; }
.feature-in { display: grid; gap: 34px; align-items: center; }
@media (min-width: 940px) { .feature-in { grid-template-columns: 1fr 1fr; gap: 60px; }
                            .feature-in.is-flip .feature-copy { order: 2; } }
.feature-copy h2 { margin-bottom: 18px; }
.feature-list { list-style: none; margin: 24px 0 28px; padding: 0; display: grid; gap: 13px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; line-height: 1.6; }
.feature-list svg { width: 18px; height: 18px; flex: none; margin-top: 3px; stroke: var(--gilt); fill: none; stroke-width: 1.8; }
.feature-media { position: relative; border-radius: var(--radius-xl); overflow: hidden;
                 aspect-ratio: 4/3; background: radial-gradient(96% 80% at 50% 10%, #fffdf8, var(--chalk) 56%, var(--chalk-2));
                 box-shadow: var(--shadow); }
.feature-media img { position: absolute; inset: 9%; width: 82%; height: 82%; object-fit: contain; mix-blend-mode: multiply; }
.feature-media::after { content: ""; position: absolute; left: 50%; bottom: 10%; transform: translateX(-50%);
                        width: 46%; height: 6%; border-radius: 50%;
                        background: radial-gradient(closest-side, rgba(19,27,24,.22), rgba(19,27,24,0)); }
.feature-note { position: absolute; left: 18px; bottom: 16px; font-size: .74rem; letter-spacing: .16em;
                text-transform: uppercase; font-weight: 700; color: var(--ink-faint); }

/* ============================================================
   "WHICH BIRD VISITS YOU?"  -  the signature block.
   UK garden birds only. Pick a bird, get the food + the feeder.
   ============================================================ */
.birds-in { display: grid; gap: 30px; }
@media (min-width: 940px) { .birds-in { grid-template-columns: 300px minmax(0,1fr); gap: 48px; align-items: start; } }
.bird-picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (min-width: 940px) { .bird-picks { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.bird-pick {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 8px;
  border-radius: var(--radius); cursor: pointer; font-family: inherit; text-align: center;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.8);
  transition: background .25s, border-color .25s, color .25s, transform .25s var(--ease);
}
.bird-pick:hover { background: rgba(255,255,255,.09); color: #fff; transform: translateY(-2px); }
.bird-pick[aria-selected="true"] { background: rgba(201,169,97,.15); border-color: var(--gilt); color: #fff; }
.bird-pick svg { width: 34px; height: 34px; }
.bird-pick b { font-size: .78rem; font-weight: 600; letter-spacing: -.005em; }

.bird-panel { background: var(--paper); color: var(--ink); border-radius: var(--radius-xl);
              padding: clamp(22px, 3vw, 36px); box-shadow: var(--shadow-lg); }
.bird-panel h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 6px; }
.bird-panel .bird-latin { font-style: italic; color: var(--ink-faint); font-size: .88rem; margin-bottom: 16px; }
.bird-panel p { color: var(--ink-soft); }
.bird-facts { display: grid; gap: 14px; margin: 20px 0 22px; padding: 18px 0; border-top: 1px solid var(--hair);
              border-bottom: 1px solid var(--hair); }
@media (min-width: 640px) { .bird-facts { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.bird-fact b { display: block; font-size: .64rem; letter-spacing: .17em; text-transform: uppercase;
               color: var(--ink-faint); font-weight: 700; margin-bottom: 5px; }
.bird-fact span { font-size: .93rem; line-height: 1.45; }
.bird-cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   STORY / GUARANTEE / ADVICE / NEWSLETTER
   ============================================================ */
.story-in { display: grid; gap: 34px; align-items: center; }
@media (min-width: 940px) { .story-in { grid-template-columns: .92fr 1.08fr; gap: 58px; } }
.story-visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5;
                background: linear-gradient(170deg, var(--dusk-2), var(--dusk)); display: grid; place-items: center; }
.story-visual::before { content: ""; position: absolute; inset: 0;
                        background: radial-gradient(70% 55% at 50% 34%, rgba(201,169,97,.2), transparent 68%); }
.story-visual svg { width: 62%; height: auto; position: relative; z-index: 1; }
.story-quote { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 2; text-align: center;
               font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gilt-lt); font-weight: 600; }

.promise-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .promise-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.promise { background: var(--paper); border-radius: var(--radius-lg); padding: 26px 24px;
           box-shadow: inset 0 0 0 1px var(--hair); }
.promise-n { font-size: .68rem; font-weight: 700; letter-spacing: .16em; color: var(--gilt-ink);
             font-variant-numeric: tabular-nums; display: block; margin-bottom: 14px; }
.promise h3 { margin-bottom: 8px; font-size: 1.02rem; }
.promise p { margin: 0; color: var(--ink-soft); font-size: .93rem; }

.advice-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .advice-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1000px) { .advice-grid { grid-template-columns: repeat(3, 1fr); } }
.advice-card { display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--ink);
               background: var(--paper); border-radius: var(--radius-lg); padding: 26px 24px 24px;
               box-shadow: inset 0 0 0 1px var(--hair);
               transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.advice-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px rgba(201,169,97,.55), var(--shadow); }
.advice-kicker { font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ember); }
.advice-card h3 { font-size: 1.1rem; margin: 0; line-height: 1.28; }
.advice-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.advice-more { margin-top: auto; padding-top: 12px; font-size: .84rem; font-weight: 600;
               display: inline-flex; align-items: center; gap: 8px; transition: gap .3s var(--ease); }
.advice-card:hover .advice-more { gap: 13px; }
.advice-more svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

.news-in { display: grid; gap: 26px; align-items: center; }
@media (min-width: 860px) { .news-in { grid-template-columns: 1fr 1fr; gap: 52px; } }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-form input { flex: 1 1 220px; min-height: 54px; border-radius: 999px; border: 1px solid rgba(255,255,255,.24);
                   background: rgba(255,255,255,.07); color: #fff; font-family: inherit; font-size: .95rem; padding: 0 22px; }
.news-form input::placeholder { color: rgba(255,255,255,.5); }
.news-form input:focus { outline: none; border-color: var(--gilt); background: rgba(255,255,255,.11); }
.news-small { font-size: .8rem; color: rgba(255,255,255,.55); margin: 14px 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dusk); color: rgba(255,255,255,.72); padding: clamp(48px,5vw,72px) 0 26px;
          background-image: radial-gradient(90% 70% at 8% 0%, rgba(201,169,97,.1), transparent 60%); }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 38px; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr repeat(5, 1fr); gap: 28px; } }
.footer-brand .logo { padding: 0; margin-bottom: 16px; }
.footer-blurb { font-size: .92rem; line-height: 1.7; max-width: 30ch; }
.footer-uk { font-size: .8rem; color: rgba(255,255,255,.55); display: inline-flex; align-items: center; gap: 8px; }
.footer-col h3 { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gilt);
                 font-weight: 700; margin: 0 0 15px; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,.72); font-size: .9rem;
                padding: 5px 0; transition: color .2s ease, padding-left .25s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-pay { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--hair-lt);
              display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badges img { height: 28px; width: auto; border-radius: 4px; background: #fff; padding: 2px 4px; }
.pay-lock { margin: 0; font-size: .8rem; display: inline-flex; align-items: center; gap: 8px; }
.pay-lock svg { width: 14px; height: 14px; stroke: var(--gilt); fill: none; stroke-width: 1.8; }
.footer-legal { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--hair-lt);
                display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .8rem; }
.footer-legal p { margin: 0; }
.footer-legal a { color: rgba(255,255,255,.72); }

/* ============================================================
   COLLECTION / PDP / ARTICLE
   ============================================================ */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .8rem;
          color: var(--ink-faint); margin: 0 0 22px; }
.crumbs a { text-decoration: none; color: var(--ink-soft); padding: 4px 0; }
.crumbs a:hover { color: var(--ember); }
.crumbs b { font-weight: 400; opacity: .5; }

.coll-head { padding: clamp(30px,4vw,52px) 0 clamp(26px,3vw,38px); background: var(--chalk); border-bottom: 1px solid var(--hair); }
.coll-head h1 { margin-bottom: 14px; }
.coll-head .lede { max-width: 62ch; margin: 0; }
.coll-count { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
              color: var(--ink-faint); margin-top: 18px; font-variant-numeric: tabular-nums; }

.coll-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
            padding: 16px 0; border-bottom: 1px solid var(--hair); margin-bottom: 30px; }
.facets { display: flex; flex-wrap: wrap; gap: 8px; }
.facet { position: relative; }
.facet-btn { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 8px 16px;
             border-radius: 999px; border: 1px solid var(--line); background: var(--paper); color: var(--ink);
             font-family: inherit; font-size: .86rem; font-weight: 500; cursor: pointer;
             transition: border-color .25s, background .25s; }
.facet-btn:hover { border-color: var(--ink-soft); }
.facet.is-on .facet-btn { border-color: var(--ember); color: var(--ember); }
.facet-btn svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.facet-pop { position: absolute; z-index: 30; top: calc(100% + 8px); left: 0; min-width: 210px;
             background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; }
.facet-pop label { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 8px;
                   font-size: .9rem; cursor: pointer; }
.facet-pop label:hover { background: var(--chalk); }
.facet-pop input { accent-color: var(--ember); width: 16px; height: 16px; }
.sort-wrap { display: inline-flex; align-items: center; gap: 9px; font-size: .86rem; color: var(--ink-soft); }
.sort-wrap select { min-height: 42px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper);
                    font-family: inherit; font-size: .86rem; padding: 0 14px; color: var(--ink); cursor: pointer; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 8px 6px 14px; border-radius: 999px;
        background: var(--chalk-2); font-size: .82rem; font-weight: 500; }
.chip button { width: 22px; height: 22px; border-radius: 50%; border: 0; background: rgba(19,27,24,.1);
               cursor: pointer; font-family: inherit; line-height: 1; color: var(--ink); }
.chip button:hover { background: var(--ember); color: #fff; }

.empty-state { text-align: center; padding: clamp(40px,6vw,72px) 20px; background: var(--chalk);
               border-radius: var(--radius-xl); }
.empty-state svg { width: 84px; height: 84px; margin: 0 auto 20px; }
.empty-state h2 { font-size: 1.35rem; margin-bottom: 12px; }
.empty-state p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 22px; }

/* ---- PDP ---- */
.pdp-in { display: grid; gap: 30px; }
@media (min-width: 940px) { .pdp-in { grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; } }
.pdp-stage { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1/1;
             background: radial-gradient(100% 82% at 50% 8%, #fffdf8, var(--chalk) 55%, var(--chalk-2));
             box-shadow: inset 0 0 0 1px var(--hair); }
.pdp-stage img { position: absolute; inset: 7%; width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; }
.pdp-stage[data-shot="lifestyle"] img { inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: normal; }
.pdp-stage::after { content: ""; position: absolute; left: 50%; bottom: 9%; transform: translateX(-50%);
                    width: 48%; height: 6%; border-radius: 50%;
                    background: radial-gradient(closest-side, rgba(19,27,24,.2), rgba(19,27,24,0)); }
.pdp-stage[data-shot="lifestyle"]::after { content: none; }
.pdp-buy h1 { margin-bottom: 14px; }
.pdp-short { font-size: 1.03rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 22px; }
.pdp-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pdp-price .price { font-size: 1.9rem; }
.pdp-vat { font-size: .82rem; color: var(--ink-faint); margin-bottom: 22px; }
.pdp-cta { display: flex; gap: 12px; align-items: stretch; margin-bottom: 24px; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; flex: none; }
.qty button { width: 48px; height: 56px; border: 0; background: none; cursor: pointer; font-size: 1.1rem;
              font-family: inherit; color: var(--ink); border-radius: 999px; }
.qty button:hover { color: var(--ember); }
.qty input { width: 46px; height: 56px; border: 0; text-align: center; font-family: inherit; font-size: 1rem;
             font-weight: 600; background: none; color: var(--ink); font-variant-numeric: tabular-nums;
             -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-cta .btn { flex: 1 1 200px; }
.pdp-promises { list-style: none; margin: 0 0 24px; padding: 20px 0; display: grid; gap: 13px;
                border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.pdp-promises li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.pdp-promises svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--sage); fill: none; stroke-width: 1.7; }
.pdp-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-tag { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
           color: var(--ink-soft); background: var(--chalk-2); border-radius: 999px; padding: 6px 13px; text-decoration: none; }
.pdp-tag:hover { background: var(--dusk); color: #fff; }
.pdp-body { max-width: 68ch; }
.pdp-body h2 { margin-bottom: 18px; }
.pdp-body ul { padding-left: 0; list-style: none; display: grid; gap: 11px; margin: 22px 0 0; }
.pdp-body ul li { display: flex; gap: 12px; align-items: flex-start; }
.pdp-body ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gilt);
                          flex: none; margin-top: .62em; }

/* ---- article ---- */
.article-head { padding: clamp(30px,4vw,54px) 0 0; }
.article-head h1 { margin-bottom: 16px; }
.article-meta { font-size: .85rem; color: var(--ink-faint); display: flex; flex-wrap: wrap; gap: 8px 16px; }
.article-hero { margin: 30px 0 0; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 21/9;
                background: linear-gradient(160deg, var(--dusk-2), var(--dusk)); display: grid; place-items: center; }
.article-hero svg { width: 150px; height: 150px; }
.article-body { font-size: 1.04rem; line-height: 1.78; }
.article-body > p:first-of-type { font-size: 1.12rem; color: var(--ink-soft); }
.article-body h2 { margin: 1.9em 0 .6em; font-size: clamp(1.35rem, 2vw, 1.75rem); }
.article-body h3 { margin: 1.6em 0 .5em; font-size: 1.12rem; }
.article-body ul, .article-body ol { padding-left: 0; list-style: none; display: grid; gap: 11px; margin: 1.2em 0; }
.article-body ol { counter-reset: n; }
.article-body ul li, .article-body ol li { display: flex; gap: 13px; align-items: flex-start; }
.article-body ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gilt);
                              flex: none; margin-top: .66em; }
.article-body ol li::before { counter-increment: n; content: counter(n); font-size: .78rem; font-weight: 700;
                              color: var(--ember); flex: none; min-width: 1.4em; margin-top: .28em;
                              font-variant-numeric: tabular-nums; }
.article-body a { color: var(--ember); text-underline-offset: 3px; }
.article-body blockquote { margin: 1.6em 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--gilt);
                           font-size: 1.1rem; color: var(--ink-soft); }
.author-box { margin-top: 44px; padding: 26px 24px; background: var(--chalk); border-radius: var(--radius-lg);
              display: flex; gap: 18px; align-items: flex-start; }
.author-box svg { width: 56px; height: 56px; flex: none; }
.author-box strong { display: block; font-size: .96rem; margin-bottom: 5px; }
.author-box p { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
         padding: 20px 0; background: none; border: 0; font-family: inherit; font-size: 1.02rem;
         font-weight: 600; color: var(--ink); text-align: left; cursor: pointer; }
.faq-q svg { width: 14px; height: 14px; flex: none; stroke: var(--ember); fill: none; stroke-width: 2.2;
             transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 22px; color: var(--ink-soft); max-width: 68ch; }
.faq-item.open .faq-a { display: block; }

/* ---- prose (about/legal) ---- */
.prose { font-size: 1.02rem; line-height: 1.78; }
.prose h2 { margin: 1.8em 0 .5em; font-size: clamp(1.3rem, 1.9vw, 1.65rem); }
.prose h3 { margin: 1.5em 0 .4em; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; margin: 1.1em 0; }
.prose ul li { display: flex; gap: 13px; align-items: flex-start; }
.prose ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gilt);
                       flex: none; margin-top: .66em; }
.prose a { color: var(--ember); }

/* ---- forms ---- */
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 52px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper);
  font-family: inherit; font-size: .97rem; padding: 13px 16px; color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(180,71,44,.14);
}
.form-note { font-size: .84rem; color: var(--ink-faint); }
.form-msg { margin-top: 14px; padding: 13px 16px; border-radius: 12px; font-size: .92rem; }
.form-msg.ok { background: rgba(110,130,113,.14); color: #33502f; }
.form-msg.err { background: rgba(180,71,44,.1); color: var(--ember-dk); }

/* ============================================================
   BASKET DRAWER / COOKIE / TOAST
   ============================================================ */
.drawer-ov { position: fixed; inset: 0; background: rgba(8,14,12,.5); z-index: 210; opacity: 0;
             transition: opacity .3s ease; }
.drawer-ov.show { opacity: 1; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(94vw, 430px); z-index: 220;
          background: var(--paper); transform: translateX(102%); transition: transform .38s var(--ease);
          display: flex; flex-direction: column; box-shadow: -22px 0 60px rgba(8,14,12,.3); }
.drawer.open { transform: none; }
.drawer-h { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px;
            border-bottom: 1px solid var(--hair); }
.drawer-h h2 { margin: 0; font-size: 1.1rem; }
.drawer-x { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
            cursor: pointer; font-family: inherit; }
.ship-prog { padding: 16px 22px; background: var(--chalk); border-bottom: 1px solid var(--hair); }
.ship-prog p { margin: 0 0 9px; font-size: .84rem; font-weight: 500; }
.ship-bar { height: 5px; border-radius: 999px; background: var(--chalk-3); overflow: hidden; }
.ship-bar span { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--sage);
                 transition: width .5s var(--ease); }
.drawer-items { flex: 1; overflow-y: auto; padding: 8px 22px; }
.bline { display: grid; grid-template-columns: 66px 1fr auto; gap: 13px; align-items: start;
         padding: 16px 0; border-bottom: 1px solid var(--hair); }
.bline img { width: 66px; height: 66px; border-radius: 9px; object-fit: contain; background: var(--chalk);
             mix-blend-mode: multiply; }
.bline-n { font-size: .9rem; font-weight: 500; line-height: 1.35; margin-bottom: 4px; }
.bline-p { font-size: .86rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; margin-bottom: 8px; }
.bline-q { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.bline-q button { width: 30px; height: 30px; border: 0; background: none; cursor: pointer; font-family: inherit; color: var(--ink); }
.bline-q span { min-width: 22px; text-align: center; font-size: .85rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.bline-x { background: none; border: 0; cursor: pointer; font-size: .78rem; color: var(--ink-faint);
           font-family: inherit; text-decoration: underline; padding: 0; }
.bline-x:hover { color: var(--ember); }
.basket-empty { text-align: center; padding: 46px 10px; }
.basket-empty svg { width: 96px; height: 96px; margin: 0 auto 18px; }
.basket-empty p { color: var(--ink-soft); margin-bottom: 18px; }
.drawer-f { padding: 18px 22px 22px; border-top: 1px solid var(--hair); }
.drawer-row { display: flex; justify-content: space-between; align-items: baseline; font-size: .93rem;
              margin-bottom: 9px; font-variant-numeric: tabular-nums; }
.drawer-row strong { font-size: 1.15rem; font-weight: 600; }
.drawer-note { margin: 12px 0 0; font-size: .78rem; color: var(--ink-faint); display: flex;
               align-items: center; gap: 7px; justify-content: center; }
.drawer-note svg { width: 13px; height: 13px; stroke: var(--sage); fill: none; stroke-width: 1.8; }

.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 240; background: var(--dusk);
          color: #fff; border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow-lg);
          display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
@media (min-width: 700px) { .cookie { left: auto; right: 22px; bottom: 22px; max-width: 440px; } }
.cookie p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.8); }
.cookie-actions { display: flex; gap: 9px; }

.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(14px); z-index: 260;
         background: var(--dusk); color: #fff; border-radius: 999px; padding: 12px 24px; font-size: .9rem;
         font-weight: 500; box-shadow: var(--shadow-lg); opacity: 0; transition: opacity .3s ease, transform .3s var(--ease); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   MOTION  -  reveals must never gate content
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1) { transition-delay: .04s; }
[data-stagger].in > *:nth-child(2) { transition-delay: .09s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .14s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .19s; }
[data-stagger].in > *:nth-child(5) { transition-delay: .24s; }
[data-stagger].in > *:nth-child(6) { transition-delay: .29s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
                           transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* the hero is dark but is not a .band-* class, so it needs the same
   light-on-dark eyebrow treatment or ember lands at 3.05:1 */
.hero .eyebrow, .hero .kicker { color: var(--gilt-lt); }
.hero .lede { color: rgba(255,255,255,.78); }

/* ============================================================
   STARTER KITS
   ============================================================ */
.kits { display: grid; gap: 22px; }
@media (min-width: 1040px) { .kits { grid-template-columns: repeat(3, 1fr); gap: 26px; } }

.kit { background: var(--paper); border-radius: var(--radius-xl); padding: 26px 24px 24px;
       box-shadow: inset 0 0 0 1px var(--hair); display: flex; flex-direction: column;
       transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.kit:hover { transform: translateY(-4px);
             box-shadow: inset 0 0 0 1px rgba(201,169,97,.55), var(--shadow); }
.kit-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.kit-n { font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: var(--gilt-ink);
         font-variant-numeric: tabular-nums; padding-top: 4px; }
.kit-for { font-size: .63rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
           color: var(--ember); margin: 0 0 6px; }
.kit-head h3 { margin: 0; font-size: 1.18rem; letter-spacing: -.015em; }
.kit-blurb { color: var(--ink-soft); font-size: .95rem; margin: 0 0 20px; }

.kit-items { display: grid; gap: 2px; background: var(--hair); border-radius: var(--radius);
             overflow: hidden; margin-bottom: 16px; }
.kit-item { display: grid; grid-template-columns: 56px minmax(0,1fr) auto; gap: 14px;
            align-items: center; background: var(--paper); padding: 12px 14px;
            text-decoration: none; color: var(--ink); transition: background .2s ease; }
.kit-item:hover { background: var(--chalk); }
.kit-img { display: block; border-radius: 8px; overflow: hidden;
           background: radial-gradient(110% 84% at 50% 10%, #fffdf8, var(--chalk-2)); }
.kit-img img { width: 100%; height: 56px; object-fit: contain; padding: 6%;
               mix-blend-mode: multiply; }
.kit-txt { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.kit-txt b { font-size: .9rem; font-weight: 500; line-height: 1.32; }
.kit-txt i { font-style: normal; font-size: .64rem; letter-spacing: .15em; text-transform: uppercase;
             color: var(--ink-faint); font-weight: 600; }
.kit-price { font-size: .95rem; }
.kit-price .price { font-size: 1rem; }

.kit-note { font-size: .84rem; color: var(--ink-faint); margin: 0 0 18px;
            padding-left: 14px; border-left: 2px solid var(--gilt); }
.kit-foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 12px;
            align-items: center; justify-content: space-between; }
.kit-total { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
             color: var(--ink-soft); }
.kit-total .price { font-size: 1.15rem; margin-left: 6px; }
.kit-foot .btn { flex: 1 1 auto; }

/* ============================================================
   FEEDING CALENDAR
   ============================================================ */
.cal-jump { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.cal-jump a { font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
              text-decoration: none; color: var(--ink-soft); background: var(--paper);
              border-radius: 999px; padding: 8px 14px; box-shadow: inset 0 0 0 1px var(--hair);
              transition: background .2s ease, color .2s ease; }
.cal-jump a:hover { background: var(--dusk); color: #fff; }

.cal-grid { display: grid; gap: 18px; }
@media (min-width: 700px)  { .cal-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1080px) { .cal-grid { grid-template-columns: repeat(3, 1fr); } }
.cal-card { background: var(--paper); border-radius: var(--radius-lg); padding: 24px 22px;
            box-shadow: inset 0 0 0 1px var(--hair); scroll-margin-top: 120px; }
.cal-card h3 { font-size: 1.15rem; margin: 0 0 16px; padding-bottom: 12px;
               border-bottom: 1px solid var(--hair); letter-spacing: -.015em; }
.cal-card dl { margin: 0; display: grid; gap: 13px; }
.cal-card dt { font-size: .6rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase;
               color: var(--ember); margin-bottom: 4px; }
.cal-card dd { margin: 0; font-size: .93rem; line-height: 1.6; color: var(--ink-soft); }

@media (max-width: 520px) {
  .kit-item { grid-template-columns: 46px minmax(0,1fr); }
  .kit-price { grid-column: 2; padding-left: 0; }
  .kit-foot .btn { width: 100%; }
}

/* ============================================================
   JOURNAL
   Contents nav, key-takeaways box, lead post, pager and the
   admin preview bar.
   ============================================================ */
.preview-bar {
  position: sticky; top: 0; z-index: 140;
  background: var(--ember); color: #fff; text-align: center;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em; padding: 10px 18px;
}

.toc {
  background: var(--chalk); border-radius: var(--radius-lg); padding: 22px 26px;
  margin: 0 0 30px; box-shadow: inset 0 0 0 1px var(--hair);
}
.toc b { display: block; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
         color: var(--ink-faint); font-weight: 700; margin-bottom: 12px; }
.toc ol { counter-reset: toc; list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.toc li { display: flex; gap: 12px; align-items: baseline; }
.toc li::before {
  counter-increment: toc; content: counter(toc, decimal-leading-zero);
  font-size: .72rem; font-weight: 700; color: var(--gilt-ink); flex: none;
  font-variant-numeric: tabular-nums;
}
.toc a { text-decoration: none; color: var(--ink); font-size: .95rem; line-height: 1.45; }
.toc a:hover { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }

.takeaways {
  border-left: 3px solid var(--ember); background: var(--paper);
  padding: 20px 24px; margin: 0 0 34px; box-shadow: inset 0 0 0 1px var(--hair);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.takeaways b { display: block; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
               color: var(--ember); font-weight: 700; margin-bottom: 12px; }
.takeaways ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.takeaways li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem;
                line-height: 1.55; }
.takeaways li::before { content: ""; width: 6px; height: 6px; border-radius: 50%;
                        background: var(--gilt); flex: none; margin-top: .6em; }

/* lead post on the journal hub */
.lead-post {
  display: block; text-decoration: none; color: var(--ink); position: relative;
  background: radial-gradient(120% 100% at 80% 0%, var(--chalk) 0%, var(--chalk-2) 100%);
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 46px);
  margin-bottom: 34px; box-shadow: inset 0 0 0 1px var(--hair);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.lead-post:hover { transform: translateY(-4px);
                   box-shadow: inset 0 0 0 1px rgba(201,169,97,.6), var(--shadow); }
.lead-tag {
  position: absolute; top: clamp(28px, 4vw, 46px); right: clamp(28px, 4vw, 46px);
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  background: var(--dusk); color: #fff; border-radius: 4px; padding: 6px 10px; line-height: 1;
}
.lead-post h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin: 6px 0 12px; max-width: 22ch; }
.lead-post p { color: var(--ink-soft); max-width: 60ch; margin: 0 0 16px; font-size: 1.02rem; }

.pager { display: flex; align-items: center; justify-content: center; gap: 18px;
         margin-top: 40px; font-size: .88rem; color: var(--ink-soft); }

@media (max-width: 640px) {
  .lead-tag { position: static; display: inline-block; margin-bottom: 12px; }
  .toc { padding: 18px 20px; }
}

/* ============================================================
   ANSWER BLOCK (GEO)
   Question as an H2, the answer as the very next element, then
   liftable bullets. Nothing may come between heading and answer.
   ============================================================ */
.geo .geo-q { font-size: clamp(1.35rem, 2vw, 1.8rem); margin-bottom: 14px; }
.geo .geo-a {
  font-size: clamp(1.02rem, 1.15vw, 1.14rem); line-height: 1.72; color: var(--ink);
  margin: 0 0 22px; padding-left: 18px; border-left: 2px solid var(--gilt);
}
.geo-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.geo-points li { display: flex; gap: 13px; align-items: flex-start; font-size: .97rem;
                 line-height: 1.6; color: var(--ink-soft); }
.geo-points li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ember);
  flex: none; margin-top: .58em;
}

/* ============================================================
   TWIN EDITORIAL HERO
   Left: auto-rotating banner. Right: fixed promo tile.
   Both are 16:9 in equal columns, so they resolve to the same
   height without anyone having to eyeball it.
   ============================================================ */
.hero-band { padding: 16px 0; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.hban {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  aspect-ratio: 16 / 9; background: var(--dusk); display: block; isolation: isolate;
}
.hban-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; pointer-events: none; }
/* slide one is painted before JS runs; the container only starts hiding
   non-current slides once JS has marked itself live */
.hban > .hban-slide:first-child { opacity: 1; pointer-events: auto; }
.hban.is-live > .hban-slide:first-child:not(.on) { opacity: 0; pointer-events: none; }
.hban-slide.on { opacity: 1; pointer-events: auto; }
.hban-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform 8s linear;
}
.hban-slide.on img, .hban > .hban-slide:first-child img { transform: scale(1); }
.hban-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,14,12,.86) 0%, rgba(8,14,12,.62) 42%, rgba(8,14,12,.08) 76%);
}
.hban-c {
  position: absolute; z-index: 2; left: 0; top: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
  padding: clamp(22px, 3vw, 38px) clamp(24px, 3.2vw, 42px); max-width: 76%;
}
.hban-k {
  font-size: .66rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gilt-lt); display: inline-flex; align-items: center; gap: 11px; margin: 0;
}
.hban-k::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .6; }
.hban-t {
  color: #fff; font-size: clamp(1.4rem, 2.4vw, 2.15rem); font-weight: 600;
  letter-spacing: -.028em; line-height: 1.07; margin: 0; text-wrap: balance;
}
.hban-s { color: rgba(255,255,255,.84); font-size: .94rem; margin: 0; max-width: 26em; line-height: 1.55; }
.hban-cta {
  align-self: flex-start; margin-top: 10px; display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--dusk); text-decoration: none; min-height: 44px;
  font-size: .85rem; font-weight: 600; letter-spacing: .02em; padding: 12px 24px; border-radius: 999px;
  transition: gap .3s var(--ease), background .25s ease, color .25s ease;
}
.hban-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.hban-cta:hover { gap: 15px; background: var(--gilt); color: #1b1405; }
.hban-plate {
  position: absolute; right: 22px; bottom: 22px; z-index: 2;
  background: rgba(8,14,12,.55); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 9px; padding: 9px 14px; color: #fff;
  font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; font-weight: 700;
}

/* controls */
.hban-dots { position: absolute; left: clamp(24px, 3.2vw, 42px); bottom: 24px; z-index: 3; display: flex; gap: 6px; }
/* a 3px bar is not a tap target: the button is 24px and draws the bar in ::after */
.hban-dots button {
  width: 34px; height: 24px; border: 0; padding: 0; background: none; cursor: pointer;
  display: grid; place-items: center;
}
.hban-dots button::after {
  content: ""; display: block; width: 26px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.34); transition: background .3s ease, width .3s var(--ease);
}
.hban-dots button.on::after { background: var(--gilt); width: 34px; }
.hban-arrows { position: absolute; right: 20px; top: 20px; z-index: 3; display: flex; gap: 8px;
               opacity: 0; transition: opacity .3s ease; }
.hban:hover .hban-arrows, .hban:focus-within .hban-arrows { opacity: 1; }
.hban-arrows button {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,.32); background: rgba(8,14,12,.45); color: #fff;
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.hban-arrows button:hover { background: #fff; color: var(--dusk); border-color: #fff; }
.hban-arrows svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* right-hand promo tile: title at the top, CTA at the foot */
.hban-static .hban-slide::after {
  background: linear-gradient(180deg, rgba(8,14,12,.62) 0%, rgba(8,14,12,.16) 46%, rgba(8,14,12,.76) 100%);
}
.hban-static .hban-c { justify-content: space-between; max-width: 100%; right: 0; }
.hban-static .hban-t { font-size: clamp(1.45rem, 2.5vw, 2.25rem); }
.hban-static .hban-top { display: flex; flex-direction: column; gap: 8px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 14px; }
  .hban { aspect-ratio: 16 / 10; }
  .hban-c { max-width: 88%; }
  .hban-arrows { opacity: 1; right: 14px; top: 14px; }
  .hban-plate { right: 14px; bottom: 14px; font-size: .6rem; padding: 7px 11px; }
}
@media (max-width: 660px) {
  /* a 100deg gradient tuned for a wide banner covers almost the whole frame
     once the box is narrow, so the photograph disappears. Go vertical: image
     on top, text on the dark half - the same treatment as the promo tile. */
  .hban-slide::after {
    background: linear-gradient(180deg, rgba(8,14,12,.30) 0%, rgba(8,14,12,.10) 34%, rgba(8,14,12,.88) 100%);
  }
  .hban-c { justify-content: flex-end; max-width: 100%; padding-bottom: 58px; }
  .hban-static .hban-c { justify-content: space-between; padding-bottom: clamp(22px, 3vw, 38px); }
}
@media (max-width: 520px) {
  /* 16:10, not 4:3 - a 4:3 box crops ~44% off the sides of a 16:9 photograph
     and can land on a dark corner of the frame instead of the subject */
  .hban { aspect-ratio: 16 / 10; }
  .hban-s { display: none; }
  .hban-cta { width: 100%; justify-content: center; }
  .hban-dots { bottom: 18px; }
  .hban-plate { display: none; }   /* the same promise is already in the util bar */
}

/* ============================================================
   LIGHT SURFACES INSIDE DARK BANDS
   .band-dusk h1..h4 { color:#fff } is equal-specificity with a panel's
   own heading rule, so a white card dropped into a dark band renders
   white-on-white. Anything with its own light background states its
   own ink colour, and wins on specificity.
   ============================================================ */
.band-deep .bird-panel, .band-dusk .bird-panel,
.band-deep .promise, .band-dusk .promise,
.band-deep .advice-card, .band-dusk .advice-card,
.band-deep .mega, .band-dusk .mega,
.band-deep .pcard, .band-dusk .pcard { color: var(--ink); }
.band-deep .bird-panel h1, .band-dusk .bird-panel h1,
.band-deep .bird-panel h2, .band-dusk .bird-panel h2,
.band-deep .bird-panel h3, .band-dusk .bird-panel h3,
.band-deep .bird-panel h4, .band-dusk .bird-panel h4,
.band-deep .promise h3, .band-dusk .promise h3,
.band-deep .advice-card h3, .band-dusk .advice-card h3,
.band-deep .mega h4, .band-dusk .mega h4,
.band-deep .pcard .pcard-name, .band-dusk .pcard .pcard-name { color: var(--ink); }
.band-deep .bird-panel p, .band-dusk .bird-panel p,
.band-deep .promise p, .band-dusk .promise p,
.band-deep .advice-card p, .band-dusk .advice-card p { color: var(--ink-soft); }
.band-deep .bird-panel .price, .band-dusk .bird-panel .price,
.band-deep .pcard .price, .band-dusk .pcard .price { color: var(--ink); }
.footer-uk { white-space: nowrap; }

/* ---------------------------------------------------- location pages ----- */
.loc-facts { display: grid; gap: 0; margin-top: 26px; border-top: 1px solid var(--hair); }
.loc-fact { display: grid; grid-template-columns: 190px 1fr; gap: 18px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--hair); }
.loc-fact b { font-size: .64rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gilt-ink); font-weight: 700; }
.loc-fact span { font-size: .95rem; line-height: 1.6; color: var(--ink-soft); }
.band-dusk .loc-fact span, .band-deep .loc-fact span { color: rgba(255,255,255,.82); }

.loc-leads { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.loc-leads li { padding: 16px 20px; background: var(--paper); border: 1px solid var(--hair);
  border-radius: var(--radius-lg); font-size: .95rem; line-height: 1.6; color: var(--ink-soft); }
.loc-leads a { font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--gilt); }
.loc-leads a:hover { color: var(--ember); border-bottom-color: var(--ember); }

.loc-more { margin-top: 22px; font-size: .93rem; }

.loc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 22px; }
.loc-chip { display: inline-flex; align-items: center; padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--hair); background: var(--paper); font-size: .86rem; font-weight: 600;
  color: var(--ink); text-decoration: none; transition: background .16s, color .16s, border-color .16s; }
.loc-chip:hover { background: var(--dusk); border-color: var(--dusk); color: #fff; }

.loc-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  margin: 16px 0 40px; }
.loc-card { display: block; padding: 20px 22px; background: var(--paper); border: 1px solid var(--hair);
  border-radius: var(--radius-lg); text-decoration: none; transition: border-color .16s, transform .16s; }
.loc-card:hover { border-color: var(--gilt); transform: translateY(-2px); }
.loc-card b { display: block; font-size: 1.04rem; color: var(--ink); margin-bottom: 3px; }
.loc-card span { display: block; font-size: .84rem; color: var(--ink-faint); }
.loc-card i { display: block; margin-top: 10px; font-style: normal; font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ember); font-weight: 700; }

/* ============================================================
   RESPONSIVE  -  media queries live at the END of the file, or
   they silently lose to the equal-specificity rules above.
   ============================================================ */
@media (max-width: 1099px) {
  .hdr-search { max-width: 300px; }
  .logo-crest { width: 60px; height: 60px; }
  .logo-txt b { font-size: 1.12rem; }
}
@media (max-width: 940px) {
  .catbar { display: none; }
  .burger { display: inline-flex; }
  .hdr-main { grid-template-columns: auto 1fr auto; gap: 12px; min-height: 84px; }
  .hdr-left { grid-column: 1; flex: none; }
  .logo { grid-column: 2; justify-self: center; gap: 10px; }
  .logo-crest { width: 52px; height: 52px; }
  .logo-txt b { font-size: 1.02rem; }
  .logo-txt i { font-size: .53rem; letter-spacing: .2em; }
  .hdr-right { grid-column: 3; }
  .hdr-search { display: none; }
  .hdr-links { display: none; }
  .cart-btn { padding: 9px 13px; min-height: 48px; gap: 9px; font-size: .9rem; }
  .cart-btn .cart-sum { display: none; }
  .cart-wrap { padding-left: 0; border-left: 0; }
  .mega { display: none; }
}
@media (max-width: 760px) {
  .hero-in { padding-top: 34px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .mega-in { grid-template-columns: 1fr; }
  .pdp-cta .btn { flex: 1 1 100%; }
  .feature-in.is-flip .feature-copy { order: 0; }
  .footer-pay { justify-content: flex-start; }
}
@media (max-width: 420px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .pcard { padding: 9px 9px 12px; }
  .pcard-name { font-size: .88rem; }
  .price { font-size: 1.08rem; }
  .bird-picks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .loc-fact { grid-template-columns: 1fr; gap: 4px; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .loc-grid { grid-template-columns: 1fr; }
}
