/* ============================================================
   GBGO / LUXE  -  premium reskin layer
   Loaded after store.css + brand.css. Owns: type scale, header,
   mega menu, search, hero, rails, product cards, bands, footer.
   ============================================================ */

:root {
  --night:      #0e1a13;
  --night-2:    #15251b;
  --night-3:    #1c3023;
  --bone:       #f6f2ea;
  --bone-2:     #efe9dd;
  --paper:      #ffffff;
  --brass:      #c6a15b;
  --brass-lt:   #e3c88e;
  --moss:       #2f6b3f;
  --moss-deep:  #1e4a2b;
  --terra:      #b8552f;
  --ink:        #0b1410;
  --ink-soft:   #5a6660;
  --ink-faint:  #8b948e;
  --line:       rgba(11, 20, 16, 0.13);
  --hair:       rgba(11, 20, 16, 0.07);
  --hair-lt:    rgba(255, 255, 255, 0.13);

  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  26px;
  --shadow-sm:  0 1px 2px rgba(11, 20, 16, 0.05), 0 6px 18px rgba(11, 20, 16, 0.05);
  --shadow:     0 2px 6px rgba(11, 20, 16, 0.06), 0 18px 44px rgba(11, 20, 16, 0.09);
  --shadow-big: 0 30px 80px rgba(11, 20, 16, 0.18);
  --ease:       cubic-bezier(0.22, 0.75, 0.3, 1);

  --wrap:       1300px;
  --pad-y:      66px;
  --hdr-h:      148px;
}
@media (min-width: 1000px) { :root { --pad-y: 104px; } }

/* ---------- base type ---------- */
body {
  font-family: 'Outfit', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.14;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
h2 { font-size: clamp(1.55rem, 2.3vw, 2.05rem); }
h3 { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.012em; }
p  { margin: 0 0 1em; }
strong, b { font-weight: 600; }
a { color: inherit; }
::selection { background: var(--brass); color: #fff; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
@media (min-width: 1000px) { .wrap { padding: 0 36px; } body { font-size: 16.5px; } }
.wrap-narrow { max-width: 780px; }

.eyebrow, .kicker {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--moss); margin: 0 0 20px;
}
.band-deep .eyebrow, .band-night .eyebrow { color: var(--brass-lt); }

/* rule-under-eyebrow flourish */
/* flex, not inline-flex: an inline-level box drops its vertical margin,
   which is what was squashing every section heading together */
.eyebrow-rule { display: flex; width: fit-content; align-items: center; gap: 16px; }
.eyebrow-rule::after { content: ""; width: 58px; height: 1px; background: var(--brass); opacity: 0.8; }

/* ---------- bands ---------- */
.band-paper { background: var(--paper); }
.band-tint  { background: var(--bone); }
.band-accent{ background: var(--bone-2); }
.band-deep, .band-night {
  background: var(--night); color: #fff;
  background-image: radial-gradient(120% 90% at 12% 0%, rgba(198, 161, 91, 0.14), transparent 60%);
}
.band-deep h1, .band-deep h2, .band-deep h3, .band-deep p,
.band-night h1, .band-night h2, .band-night h3, .band-night p { color: #fff; }
.hairline { border-top: 1px solid var(--hair); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.005em;
  min-height: 50px; padding: 12px 28px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.btn-primary { background: var(--night); color: #fff; border-color: var(--night); }
.btn-primary:hover { background: #1a2c20; }
.btn-accent { background: var(--moss); color: #fff; border-color: var(--moss); }
.btn-accent:hover { background: var(--moss-deep); }
.btn-brass { background: var(--brass); color: #1a1206; border-color: var(--brass); }
.btn-brass:hover { background: var(--brass-lt); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: #fff; color: var(--night); }
.btn-big { min-height: 56px; padding: 15px 34px; font-size: 1rem; }
.btn-small { min-height: 42px; padding: 9px 20px; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.util {
  background: #08120c; color: rgba(255,255,255,0.72);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.09em; 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: 26px; align-items: center; }
.util-r span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.util svg { width: 13px; height: 13px; stroke: var(--brass); flex: none; }

.hdr {
  position: sticky; top: 0; z-index: 130;
  background: var(--night);
  transition: box-shadow 0.3s ease;
}
/* the crest is lifted out of the flow and centred across BOTH header rows;
   .hdr-main reserves a centre column and the nav a centre slot for it */
@media (min-width: 901px) {
  .logo {
    position: absolute; left: 50%; top: 7px; transform: translateX(-50%);
    z-index: 6; padding: 0;
  }
  /* the two auto margins split the leftover space evenly, so the clearance
     either side of the crest is identical whatever the label widths are */
  .catnav { width: 100%; }
  .nav-gap { flex: 0 0 188px; pointer-events: none; }
  .catnav > li:nth-child(5) { margin-right: auto; }
  .catnav > li:nth-child(7) { margin-left: auto; }
}
.hdr::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,0.55), transparent);
}
.hdr.is-scrolled { box-shadow: 0 14px 40px rgba(6, 12, 8, 0.28); }
/* three columns: search | crest | links+cart. The crest is the optical centre.
   padding-block only - a `padding: x 0` shorthand would wipe the .wrap gutter */
.hdr-main {
  display: grid; grid-template-columns: 1fr 188px 1fr; align-items: center; gap: 26px;
  min-height: 116px; padding-top: 12px; padding-bottom: 12px;
}
/* explicit columns: an absolutely-positioned .logo is no longer a grid item,
   so without these the right cluster slides into the centre slot */
.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: 8px; min-width: 0; }

/* logo lockup - centred, no box; a brass hairline separates crest from wordmark */
.logo {
  display: inline-flex; align-items: center; gap: 15px; text-decoration: none; flex: none;
  padding: 4px 2px; justify-self: center;
}
.logo img { object-fit: contain; flex: none; transition: transform 0.45s var(--ease); }
.logo-mark, .logo-txt { display: none; }   /* the crest is the whole lockup */
.logo-crest { display: block; width: 142px; height: 142px; }
.logo:hover .logo-crest { transform: scale(1.05); }

/* search */
.hdr-search { flex: 1 1 auto; position: relative; width: 100%; max-width: 430px; }
.hdr-search form { position: relative; display: block; }
.hdr-search input {
  width: 100%; min-height: 50px; border-radius: 999px; border: 1px solid transparent;
  background: #fff; color: var(--ink); font-family: inherit; font-size: 0.95rem;
  padding: 0 52px 0 48px; transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.hdr-search input::placeholder { color: #9aa39d; }
.hdr-search input:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(198,161,91,0.22); }
.hdr-search .s-ico { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; stroke: #7d867f; pointer-events: none; }
.hdr-search .s-go {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--night); color: #fff; display: grid; place-items: center;
  transition: background 0.2s ease;
}
.hdr-search .s-go:hover { background: var(--moss); }
.hdr-search .s-go svg { width: 15px; height: 15px; stroke: currentColor; }

/* live results */
.s-pop {
  position: absolute; top: calc(100% + 12px); left: 0; right: 0; z-index: 40;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-big);
  overflow: hidden; padding: 8px; max-height: 66vh; overflow-y: auto;
}
.s-pop[hidden] { display: none !important; }
.s-pop-h { font-size: 0.68rem; letter-spacing: 0.16em; 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: 10px; text-decoration: none; color: var(--ink); }
.s-row:hover, .s-row.is-on { background: var(--bone); }
.s-row img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; background: var(--bone-2); flex: none; }
.s-row-n { font-size: 0.9rem; font-weight: 500; line-height: 1.3; }
.s-row-p { font-size: 0.85rem; font-weight: 600; color: var(--moss); margin-left: auto; white-space: nowrap; }
.s-empty { padding: 18px 12px; color: var(--ink-soft); font-size: 0.9rem; }

/* icon links */
.hdr-links { display: flex; align-items: center; gap: 4px; flex: none; }
.hdr-links a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none; color: rgba(255,255,255,0.86); padding: 8px 13px; border-radius: 10px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s ease, background 0.2s ease;
}
.hdr-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.hdr-links svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* cart */
.cart-btn {
  display: inline-flex; align-items: center; gap: 15px; flex: none; cursor: pointer;
  background: rgba(198, 161, 91, 0.07); border: 1px solid rgba(198, 161, 91, 0.42); border-radius: 12px;
  padding: 12px 20px; min-height: 60px; color: #fff; font-family: inherit;
  font-size: 1rem; font-weight: 600;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.3s ease;
}
.cart-btn:hover { border-color: var(--brass); background: rgba(198, 161, 91, 0.15); box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.1); }
.cart-btn svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-btn .cart-sum { min-width: 58px; text-align: left; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.cart-wrap {
  position: relative; display: inline-flex; align-items: center;
  padding-left: 15px; border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.cart-n {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: var(--brass); color: #1a1206;
  font-size: 0.68rem; font-weight: 800; display: grid; place-items: center; line-height: 1;
}
.cart-btn.is-bumped .cart-n { animation: bump 0.45s var(--ease); }
@keyframes bump { 35% { transform: scale(1.4); } }

/* burger */
.burger {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.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 0.3s var(--ease), opacity 0.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 menu ---------- */
.catbar { border-top: 1px solid var(--hair-lt); background: var(--night); 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), never to the li */
.catnav > li { position: static; }
.catnav > li > a {
  display: inline-flex; align-items: center; gap: 6px; height: 50px; padding: 0 14px;
  text-decoration: none; color: rgba(255,255,255,0.88);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.005em; white-space: nowrap;
  position: relative; transition: color 0.2s ease;
}
.catnav > li > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 10px; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform 0.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: 0.65; transition: transform 0.3s var(--ease); }
.catnav > li.is-open .caret { transform: rotate(180deg); }
.catnav .hot { color: var(--brass-lt); }

/* panel is anchored to the header, never the <li> */
.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(6, 12, 8, 0.22);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.26s ease, transform 0.3s var(--ease), visibility 0.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) 290px; gap: 44px;
  align-items: start; padding-top: 32px; padding-bottom: 34px;
}
.mega-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 34px; }
.mega-col h4 {
  font-size: 0.68rem; letter-spacing: 0.17em; text-transform: uppercase; color: var(--ink-faint);
  font-weight: 700; margin: 0 0 12px; 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: 0.925rem; padding: 6px 0; transition: color 0.18s ease, padding-left 0.25s var(--ease);
}
.mega-col a:hover { color: var(--moss); padding-left: 6px; }
.mega-col a i { font-style: normal; font-size: 0.72rem; color: var(--ink-faint); }
.mega-feat {
  background: var(--bone); border-radius: var(--radius-lg); padding: 20px; text-decoration: none;
  color: var(--ink); display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.35s var(--ease);
}
.mega-feat:hover { transform: translateY(-3px); }
.mega-feat img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; background: #fff; }
.mega-feat[data-shot="white"] img { object-fit: contain; padding: 6%; mix-blend-mode: multiply; background: transparent; }
.mega-feat .kicker { margin: 0; }
.mega-feat strong { font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; }
.mega-feat span { font-size: 0.88rem; color: var(--ink-soft); }
.mega-feat em { font-style: normal; font-weight: 600; color: var(--moss); font-size: 0.9rem; }

/* promo strip - continuous marquee of what we actually offer */
.strip {
  background: var(--moss); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 11px 0; position: relative; overflow: hidden;
}
.strip::before, .strip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.strip::before { left: 0; background: linear-gradient(90deg, var(--moss), rgba(47, 107, 63, 0)); }
.strip::after { right: 0; background: linear-gradient(270deg, var(--moss), rgba(47, 107, 63, 0)); }
.strip-track { display: flex; width: max-content; animation: strip-scroll 42s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-run { display: flex; align-items: center; white-space: nowrap; }
.strip-run i { font-style: normal; color: var(--brass-lt); margin: 0 26px; letter-spacing: 0; }
@keyframes strip-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* scrim behind open mega */
.scrim {
  position: fixed; inset: 0; background: rgba(8, 14, 10, 0.42);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s; z-index: 100;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.scrim.show { opacity: 1; visibility: visible; }

/* ---------- mobile nav drawer ---------- */
.mnav {
  position: fixed; top: 0; bottom: 0; left: 0; width: min(92vw, 400px); z-index: 205;
  background: var(--paper); transform: translateX(-102%); transition: transform 0.38s var(--ease);
  display: flex; flex-direction: column; box-shadow: 22px 0 60px rgba(6,12,8,0.3);
}
.mnav.open { transform: none; }
.mnav-h { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--hair); }
.mnav-h strong { font-size: 0.78rem; letter-spacing: 0.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: 0.95rem; }
.mnav-body { flex: 1; overflow-y: auto; padding: 8px 0 30px; }
.mnav-body > a, .mnav-acc > button {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 10px;
  padding: 15px 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 0.3s var(--ease); opacity: 0.6; }
.mnav-acc.open > button svg { transform: rotate(180deg); }
.mnav-sub { display: none; background: var(--bone); padding: 6px 0; }
.mnav-acc.open .mnav-sub { display: block; }
.mnav-sub a { display: block; padding: 11px 30px; font-size: 0.92rem; text-decoration: none; color: var(--ink-soft); }
.mnav-sub a:hover { color: var(--moss); }
.mnav-f { padding: 16px 20px; border-top: 1px solid var(--hair); font-size: 0.82rem; color: var(--ink-soft); }

/* ============================================================
   HERO  -  twin editorial banners
   ============================================================ */
/* 16px of white above the tiles (under the green strip) and 16px below them before
   the assurance text. Measured to visible ink, not to an invisible box edge. */
.hero-band { padding: 16px 0 16px; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.hban {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9; background: var(--night); display: block; isolation: isolate;
}
.hban-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease;
  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 { transform: scale(1); }
.hban-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,12,8,0.82) 0%, rgba(6,12,8,0.5) 40%, rgba(6,12,8,0.05) 72%);
}
.hban-c {
  position: absolute; z-index: 2; left: 0; top: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
  padding: 34px 40px; max-width: 74%;
}
.hban-k {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brass-lt); display: inline-flex; align-items: center; gap: 11px;
}
.hban-k::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.6; }
.hban-t {
  color: #fff; font-size: clamp(1.45rem, 2.5vw, 2.25rem); font-weight: 600;
  letter-spacing: -0.028em; line-height: 1.06; margin: 0; text-wrap: balance;
}
.hban-s { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin: 0; max-width: 26em; }
.hban-cta {
  align-self: flex-start; margin-top: 10px; display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--night); text-decoration: none;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 12px 24px; border-radius: 999px; transition: gap 0.3s var(--ease), background 0.25s ease, color 0.25s ease;
}
.hban-cta svg { width: 14px; height: 14px; stroke: currentColor; }
.hban-cta:hover { gap: 15px; background: var(--brass); color: #1a1206; }
.hban-plate {
  position: absolute; right: 26px; bottom: 26px; z-index: 2;
  background: rgba(8,14,10,0.55); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 10px;
  padding: 9px 14px; color: #fff; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}

/* slider controls */
.hban-dots { position: absolute; left: 40px; bottom: 26px; z-index: 3; display: flex; gap: 8px; }
.hban-dots button {
  width: 26px; height: 3px; border-radius: 2px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.32); transition: background 0.3s ease, width 0.3s var(--ease);
}
.hban-dots button.on { background: var(--brass); width: 40px; }
.hban-arrows { position: absolute; right: 22px; top: 22px; z-index: 3; display: flex; gap: 8px; opacity: 0; transition: opacity 0.3s ease; }
.hban:hover .hban-arrows { opacity: 1; }
.hban-arrows button {
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(8,14,10,0.45); color: #fff;
  display: grid; place-items: center; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hban-arrows button:hover { background: #fff; color: var(--night); border-color: #fff; }
.hban-arrows svg { width: 15px; height: 15px; stroke: currentColor; }

/* right-hand promo tile */
.hban-static::after { content: none; }
.hban-static .hban-slide::after {
  background: linear-gradient(180deg, rgba(6,12,8,0.55) 0%, rgba(6,12,8,0.15) 45%, rgba(6,12,8,0.72) 100%);
}
.hban-static .hban-c { justify-content: space-between; max-width: 100%; right: 0; }
.hban-static .hban-t { font-size: clamp(1.5rem, 2.6vw, 2.35rem); }
.hban-static .hban-top { display: flex; flex-direction: column; gap: 8px; }

/* assurance rail under hero */
/* no card chrome here - the box border was invisible but its padding still
   read as extra space under the hero, throwing the symmetry out */
.assure { padding: 0; }
.assure-in {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: transparent; border: 0; border-radius: 0;
}
.assure-i {
  background: transparent; display: flex; align-items: center; gap: 13px;
  padding: 0 22px; border-left: 1px solid var(--hair);
}
.assure-i:first-child { border-left: 0; padding-left: 0; }
.assure-i:last-child { padding-right: 0; }
.assure-i svg { width: 22px; height: 22px; stroke: var(--moss); fill: none; stroke-width: 1.4; flex: none; }
.assure-i b { display: block; font-size: 0.87rem; font-weight: 600; letter-spacing: -0.005em; }
.assure-i span { display: block; font-size: 0.79rem; color: var(--ink-soft); }

/* ============================================================
   SECTION HEADS
   ============================================================ */
section { padding: var(--pad-y) 0; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head h2 { margin-bottom: 18px; line-height: 1.15; }
.section-head p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; line-height: 1.75; max-width: 58ch; }
.band-deep .section-head p, .band-night .section-head p { color: rgba(255,255,255,0.78); }
.head-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px;
  margin-bottom: 42px; flex-wrap: wrap;
}
.head-row .section-head { margin-bottom: 0; }
.head-link {
  text-decoration: none; font-size: 0.86rem; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px;
  border-bottom: 1px solid var(--line); transition: gap 0.3s var(--ease), border-color 0.25s ease;
}
.head-link:hover { gap: 13px; border-color: var(--brass); }
.head-link svg { width: 13px; height: 13px; stroke: currentColor; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.pcard {
  position: relative; height: 100%;
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: 13px 13px 15px; overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(198, 161, 91, 0.5); }
.pcard-media {
  position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: 12px; background: var(--bone);
  background-image: radial-gradient(120% 88% at 50% 8%, #ffffff 0%, var(--bone) 58%, var(--bone-2) 100%);
  border: 0;
}
.pcard-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.85s var(--ease);
}
.pcard:hover .pcard-media img { transform: scale(1.045); }

/* white-background supplier shots: stage them on the plinth */
.pcard[data-shot="white"] .pcard-media img {
  object-fit: contain; padding: 11%; mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.02);
}
.pcard[data-shot="white"] .pcard-media::after {
  content: ""; position: absolute; left: 50%; bottom: 11%; transform: translateX(-50%);
  width: 54%; height: 9%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(11,20,16,0.22), rgba(11,20,16,0));
  pointer-events: none;
}
.pcard[data-shot="white"]:hover .pcard-media img { transform: scale(1.06); }

.pcard-badge, .pcard-off {
  position: absolute; z-index: 2; top: 12px;
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  border-radius: 4px; padding: 5px 9px; line-height: 1;
}
.pcard-badge { left: 12px; background: rgba(14,26,19,0.9); color: #fff; }
.pcard-off { right: 12px; background: var(--terra); color: #fff; letter-spacing: 0.06em; }

.pcard-body { padding: 16px 4px 0; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard-cat { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.pcard-name {
  font-weight: 500; font-size: 0.96rem; line-height: 1.35; color: var(--ink); text-decoration: none;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pcard-name:hover { color: var(--moss); }
/* margin-top:auto pins prices to the same baseline whatever the title length */
.pcard-price {
  margin-top: auto; padding-top: 10px; font-weight: 600; font-size: 1.05rem; color: var(--ink);
  display: flex; align-items: baseline; gap: 9px; font-variant-numeric: tabular-nums;
}
.pcard-was { color: var(--ink-faint); text-decoration: line-through; font-weight: 400; font-size: 0.85rem; margin: 0; }
.pcard-add {
  margin: 14px 0 0; min-height: 46px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  font-weight: 600; font-family: inherit; font-size: 0.85rem; letter-spacing: 0.02em; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pcard-add:hover { background: var(--night); color: #fff; border-color: var(--night); }

/* ---------- grid ---------- */
.pgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
@media (min-width: 700px)  { .pgrid { grid-template-columns: repeat(3, 1fr); gap: 34px 24px; } }
@media (min-width: 1080px) { .pgrid { grid-template-columns: repeat(4, 1fr); gap: 40px 26px; } }

/* ============================================================
   RAIL  -  horizontal product slider
   ============================================================ */
.rail-wrap { position: relative; }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr);
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 0 8px; margin: 0 -22px; padding-inline: 22px;
  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(230px, 1fr); } }
/* exact track width - minmax(0,..) lets grid shrink tracks to fit and kills the scroll */
@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 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s;
}
.rail-nav button:hover { background: var(--night); color: #fff; border-color: var(--night); }
.rail-nav button[disabled] { opacity: 0.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; }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.cat-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 150px; gap: 14px; overflow-x: auto; scrollbar-width: none; margin: 0 -22px; padding: 4px 22px 10px; }
.cat-rail::-webkit-scrollbar { display: none; }
@media (min-width: 1000px) { .cat-rail { grid-auto-flow: row; grid-template-columns: repeat(6, 1fr); grid-auto-columns: auto; margin: 0; padding: 0; gap: 20px; } }
.cat-chip { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 11px; text-align: center; }
.cat-chip-m {
  aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; background: var(--bone);
  border: 1px solid var(--hair); position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.4s var(--ease);
}
.cat-chip:hover .cat-chip-m { transform: translateY(-5px); border-color: var(--brass); box-shadow: var(--shadow); }
.cat-chip-m img { width: 100%; height: 100%; object-fit: cover; }
.cat-chip[data-shot="white"] .cat-chip-m img { object-fit: contain; padding: 14%; mix-blend-mode: multiply; }
.cat-chip b { font-size: 0.86rem; font-weight: 500; line-height: 1.3; }
.cat-chip span { font-size: 0.72rem; color: var(--ink-faint); }

/* bento tiles */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 900px) { .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; } }
.btile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); text-decoration: none;
  background: var(--night); display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; min-height: 190px; isolation: isolate;
}
.btile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--ease); }
.btile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,12,8,0.05) 20%, rgba(6,12,8,0.78) 100%);
  transition: background 0.4s ease;
}
.btile:hover img { transform: scale(1.07); }
.btile:hover::after { background: linear-gradient(180deg, rgba(6,12,8,0.12) 10%, rgba(6,12,8,0.84) 100%); }
.btile b { color: #fff; font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }
.btile span { color: rgba(255,255,255,0.76); font-size: 0.84rem; }
.btile em {
  font-style: normal; color: #fff; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 10px; display: inline-flex; align-items: center; gap: 8px;
}
.btile em::after { content: ""; width: 20px; height: 1px; background: var(--brass); transition: width 0.35s var(--ease); }
.btile:hover em::after { width: 34px; }
@media (min-width: 900px) {
  .btile-xl { grid-column: span 2; grid-row: span 2; }
  .btile-w  { grid-column: span 2; }
}

/* ============================================================
   EDITORIAL / SPLIT BANDS
   ============================================================ */
.split { display: grid; gap: 34px; align-items: center; }
@media (min-width: 950px) { .split { grid-template-columns: 1fr 1fr; gap: 70px; } .split-r .split-media { order: 2; } }
.split-media {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 3.1; background: var(--bone);
  box-shadow: 0 0 0 1px rgba(198, 161, 91, 0.28), 0 34px 70px rgba(6, 12, 8, 0.28);
}
.band-night .split-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09); border-radius: inherit;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.is-white img { object-fit: contain; padding: 9%; mix-blend-mode: multiply; }
.split-copy p { color: var(--ink-soft); max-width: 36em; }
.band-deep .split-copy p, .band-night .split-copy p { color: rgba(255,255,255,0.8); }
.split-copy .btn { margin-top: 10px; }
.split-badge {
  position: absolute; left: 20px; bottom: 20px; background: rgba(255,255,255,0.94);
  border-radius: 10px; padding: 11px 16px; font-size: 0.78rem; font-weight: 600; color: var(--ink);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.tick-list { list-style: none; padding: 0; margin: 6px 0 30px; display: grid; gap: 0; }
.tick-list li {
  display: flex; gap: 15px; align-items: flex-start; font-size: 1rem; color: var(--ink-soft);
  padding: 13px 0; border-bottom: 1px solid var(--hair);
}
.tick-list li:first-child { border-top: 1px solid var(--hair); }
.band-deep .tick-list li, .band-night .tick-list li { color: rgba(255,255,255,0.84); border-color: rgba(255,255,255,0.1); }
.band-night .tick-list li:first-child { border-top-color: rgba(255,255,255,0.1); }
.tick-list svg { width: 18px; height: 18px; stroke: var(--brass); flex: none; margin-top: 4px; }

/* ---------- the promise (stands in for reviews until real ones exist) ---------- */
.promise { display: grid; gap: 34px; align-items: center; }
@media (min-width: 900px) { .promise { grid-template-columns: 250px 1fr; gap: 66px; } }
.promise-seal { display: grid; place-items: center; }
.promise-seal img { width: min(56%, 210px); filter: drop-shadow(0 22px 44px rgba(11, 20, 16, 0.22)); }
@media (min-width: 900px) { .promise-seal img { width: 100%; } }
.promise-copy p { color: var(--ink-soft); }
.promise-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 0; }
.promise-list li { display: grid; gap: 4px; padding: 18px 0; border-top: 1px solid var(--line); }
.promise-list li:last-child { border-bottom: 1px solid var(--line); }
.promise-list b { font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; }
.promise-list span { color: var(--ink-soft); font-size: 0.96rem; }
.promise-note {
  margin: 24px 0 0; font-size: 0.9rem; color: var(--ink-faint); font-style: italic;
  padding-left: 16px; border-left: 2px solid var(--brass);
}
@media (min-width: 760px) { .promise-list { grid-template-columns: repeat(3, 1fr); gap: 0 34px; } .promise-list li:last-child { border-bottom: 0; } }

/* The eyebrow is a <p>, so container rules like `.section-head p { margin:0 }`
   and `.split-copy p { color:... }` were beating `.eyebrow`. Re-assert it here,
   with matching specificity and a later position in the cascade. */
p.eyebrow, p.kicker { color: var(--moss); margin: 0 0 20px; }
.band-deep p.eyebrow, .band-night p.eyebrow,
.band-deep p.kicker, .band-night p.kicker { color: var(--brass-lt); }
.mega-feat p.kicker { margin: 0; }
.article-head p.eyebrow { margin-bottom: 14px; }
.hban p.hban-k { margin: 0; }

/* seo footer prose */
.seo-block h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 18px; }
.seo-block p { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat b {
  display: block; font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 600; letter-spacing: -0.03em;
  color: var(--brass-lt); line-height: 1.35; padding-bottom: 2px;
}
.stat span { font-size: 0.8rem; letter-spacing: 0.11em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--night); padding: 17px 0; overflow: hidden; }
.marquee-run { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.marquee-run b { color: var(--brass); margin: 0 26px; font-weight: 400; }

/* ============================================================
   WHY / REVIEWS / ADVICE
   ============================================================ */
.why-card {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: 40px 34px 38px; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.why-card::after {
  content: ""; position: absolute; inset: auto auto -60px -60px; width: 150px; height: 150px;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(198, 161, 91, 0.16), transparent);
  opacity: 0; transition: opacity 0.5s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(198, 161, 91, 0.5); }
.why-card:hover::after { opacity: 1; }
.why-ico {
  position: relative; margin-bottom: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: var(--bone); display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(198, 161, 91, 0.35), 0 0 0 7px rgba(198, 161, 91, 0.07);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}
.why-card:hover .why-ico { background: #fff; box-shadow: 0 0 0 1px var(--brass), 0 0 0 9px rgba(198, 161, 91, 0.12); }
.why-ico svg { width: 24px; height: 24px; stroke: var(--moss); fill: none; stroke-width: 1.4; }
.why-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.7; }

.review-card { background: var(--paper); border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: 28px 26px; }
.review-stars { color: var(--brass); letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 12px; }
.review-quote { font-size: 1rem; color: var(--ink); font-style: normal; line-height: 1.6; }
.review-name { font-weight: 600; font-size: 0.84rem; margin: 14px 0 0; color: var(--ink-faint); letter-spacing: 0.04em; }
.review-placeholder { border: 1px dashed var(--line); background: var(--bone); }

.advice-card {
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: 0; overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.advice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.advice-card > * { padding-inline: 24px; }
.advice-kicker { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--moss); padding-top: 26px; }
.advice-card h3 { margin: 10px 0 8px; font-size: 1.06rem; line-height: 1.3; }
.advice-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.advice-more {
  font-weight: 600; color: var(--ink); font-size: 0.85rem; margin-top: auto;
  padding-block: 20px 28px; display: flex; align-items: center; gap: 9px;
}
/* unsized inline SVG defaults to 300x150 - these were rendering as giant arrows */
.advice-more svg { width: 14px; height: 14px; flex: none; stroke: currentColor; transition: transform 0.3s var(--ease); }
.advice-card:hover .advice-more { color: var(--moss); }
.advice-card:hover .advice-more svg { transform: translateX(5px); }
.btn svg, .head-link svg, .hban-cta svg { width: 15px; height: 15px; flex: none; }
.pillar-card { border-left: 0; border-top: 0; }
.advice-card { position: relative; }
.advice-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brass), rgba(198, 161, 91, 0));
  transform: scaleX(0.22); transform-origin: left; transition: transform 0.5s var(--ease);
}
.advice-card:hover::before { transform: scaleX(1); }

/* ============================================================
   GUARANTEE / NEWSLETTER
   ============================================================ */
.guarantee-in {
  display: grid; gap: 30px; align-items: center; text-align: center;
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--radius-xl);
  padding: 44px 34px; box-shadow: var(--shadow-sm);
  /* this element IS the .wrap, so keep a gutter instead of the wrap padding it overrides */
  max-width: min(var(--wrap), calc(100% - 44px));
}
@media (min-width: 900px) { .guarantee-in { grid-template-columns: 190px 1fr; text-align: left; gap: 50px; padding: 52px 56px; } }
.guarantee-mascot img { width: min(42%, 170px); margin: 0 auto; }
@media (min-width: 900px) { .guarantee-mascot img { width: 100%; } }
.guarantee-small { font-weight: 600; margin: 0; color: var(--moss); }

.newsletter { background: var(--night); color: #fff; border: 0; }
.newsletter h2 { color: #fff; }
.newsletter-copy p { color: rgba(255,255,255,0.74); }
.newsletter-form input {
  min-height: 54px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06); color: #fff; padding: 0 22px; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(198,161,91,0.18); }
.newsletter-form .btn-primary { background: var(--brass); color: #1a1206; border-color: var(--brass); }
.newsletter-form .btn-primary:hover { background: var(--brass-lt); }

/* ============================================================
   COLLECTION / PRODUCT / ARTICLE
   ============================================================ */
.collection-head { padding: 44px 0 38px; background: var(--bone); }
.collection-head h1 { margin-bottom: 12px; }
.collection-intro { color: var(--ink-soft); max-width: 48em; font-size: 1.02rem; }
.crumbs { font-size: 0.76rem; color: var(--ink-faint); margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--moss); }
.coll-note { background: var(--bone-2); border-radius: var(--radius); padding: 15px 20px; font-weight: 500; font-size: 0.92rem; }
/* collection toolbar */
.coll-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-bottom: 18px; margin-bottom: 30px; border-bottom: 1px solid var(--hair);
}
.coll-count { font-size: 0.84rem; color: var(--ink-soft); letter-spacing: 0.05em; text-transform: uppercase; }
.coll-count b { color: var(--ink); font-weight: 600; }
/* one pill: [ SORT | Featured v ] with a hairline between label and control */
.coll-sort {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px; background: var(--paper);
  padding-left: 18px; box-shadow: 0 1px 2px rgba(11, 20, 16, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}
.coll-sort:hover { border-color: rgba(198, 161, 91, 0.6); box-shadow: 0 6px 18px rgba(11, 20, 16, 0.07); }
.coll-sort:focus-within { border-color: var(--brass); box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.14); }
.coll-sort > span {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); padding-right: 15px; border-right: 1px solid var(--hair); line-height: 1;
}
.coll-sort select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  border: 0; background-color: transparent; border-radius: 999px;
  padding: 13px 42px 13px 15px; font-family: inherit; font-size: 0.9rem; font-weight: 500;
  color: var(--ink); letter-spacing: -0.005em; text-transform: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23c6a15b' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='m1 1.6 5 4.8 5-4.8'/></svg>");
  background-repeat: no-repeat; background-position: right 17px center;
}
.coll-sort select:focus { outline: none; }
.coll-count { display: inline-flex; align-items: center; gap: 9px; }
.coll-count::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.collection-seo h2 { font-size: 1.3rem; }
.collection-seo p { color: var(--ink-soft); }

.product-gallery img {
  width: 100%; border-radius: var(--radius-xl); background: var(--bone);
  background-image: radial-gradient(120% 88% at 50% 8%, #fff 0%, var(--bone) 58%, var(--bone-2) 100%);
  aspect-ratio: 1 / 1; object-fit: cover; box-shadow: none; border: 1px solid var(--hair);
}
.product-price { font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; }
.product-price .pcard-was { font-size: 1.05rem; }
.product-short { color: var(--ink-soft); font-size: 1.06rem; }
.product-promises li { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); }
.qty-picker { border: 1px solid var(--line); border-radius: 999px; }
.qty-btn, .qty-input { font-family: inherit; }

.faq-list details { border: 1px solid var(--hair); border-radius: var(--radius); background: var(--paper); }
.faq-list summary { font-weight: 600; }
.faq-list summary::after { color: var(--brass); }

.article-body a { color: var(--moss); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { border-left: 2px solid var(--brass); font-style: normal; color: var(--ink); }
.quick-answer { background: var(--bone); border-left: 3px solid var(--brass); border-radius: 0 10px 10px 0; }
.author-box { background: var(--bone); border-radius: var(--radius-lg); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--night); color: #fff; padding: 74px 0 26px; }
.footer::before {
  content: ""; display: block; height: 1px; margin-bottom: 56px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,0.5), transparent);
  position: absolute; left: 0; right: 0; margin-top: -74px;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; }
@media (min-width: 950px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } .footer-brand { grid-column: auto; } }
.footer-logo { display: flex; align-items: center; gap: 13px; font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.footer-name { line-height: 1.25; }
.footer-blurb { color: rgba(255,255,255,0.66); font-size: 0.92rem; max-width: 30em; }
.footer-uk { color: rgba(255,255,255,0.8); font-size: 0.86rem; font-weight: 500; }
.footer-col h3 { color: rgba(255,255,255,0.5); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 15px; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,0.78); padding: 6px 0; font-size: 0.9rem; transition: color 0.2s ease, padding-left 0.28s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 5px; text-decoration: none; }
.footer-pay { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); }
.pay-badges img { height: 27px; background: #fff; border-radius: 5px; padding: 3px 6px; }
.pay-lock { color: rgba(255,255,255,0.66); font-weight: 500; }
.footer-legal { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-legal a {
  color: var(--brass-lt); font-weight: 600; text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   DRAWER / OVERLAYS / TOAST
   ============================================================ */
.drawer { background: var(--paper); }
.drawer-head { padding: 22px 24px; border-bottom: 1px solid var(--hair); }
.drawer-head h2 { font-size: 1.1rem; letter-spacing: 0.01em; }
.drawer-close, .chat-close { background: var(--bone); border: 1px solid var(--hair); }
.ship-progress { background: var(--bone); }
.ship-progress p { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em; }
.ship-bar { background: rgba(11,20,16,0.1); }
.ship-bar span { background: linear-gradient(90deg, var(--moss), var(--brass)); }
.basket-line { border-bottom: 1px solid var(--hair); }
.basket-line img { border-radius: 10px; background: var(--bone); }
.basket-line-name { font-weight: 500; }
.drawer-foot { border-top: 1px solid var(--hair); }
.cookie-bar { background: var(--night); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); }
.cookie-bar .btn-primary { background: var(--brass); color: #1a1206; border-color: var(--brass); }
.chat-bubble { background: var(--night); color: #fff; box-shadow: var(--shadow-big); }
.chat-head { background: var(--night); }
.chat-msg { background: var(--bone); }
.chat-msg a { color: var(--moss); }
.toast { background: var(--night); border-radius: 10px; font-weight: 500; letter-spacing: 0.01em; }

/* hidden must win over author display rules */
[hidden] { display: none !important; }

/* ============================================================
   REVEALS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }

/* ============================================================
   STATIC PAGES / LONG FORM
   ============================================================ */
.page { background: var(--bone); padding: 46px 0 40px; }
.page h1 { margin-bottom: 4px; }
.page-body { padding-top: 56px; }
.page-body h2 { margin-top: 1.8em; font-size: clamp(1.3rem, 1.9vw, 1.6rem); }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { margin-top: 1.5em; }
.page-body p, .page-body li { color: var(--ink-soft); font-size: 1.03rem; line-height: 1.78; }
.page-body strong { color: var(--ink); font-weight: 600; }
.page-body a { color: var(--moss); text-underline-offset: 3px; }
.page-body ul, .page-body ol { padding-left: 1.15em; }
.page-body li { margin-bottom: 9px; }
.page-body li::marker { color: var(--brass); }

.article { padding-top: 48px; }
.article-head { margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--hair); }
.article-head .eyebrow { margin-bottom: 14px; }
.article-head h1 { font-size: clamp(2rem, 3.4vw, 2.75rem); margin-bottom: 14px; }
.article-meta { color: var(--ink-faint); font-size: 0.84rem; letter-spacing: 0.03em; margin: 0; }
.article-body { font-size: 1.05rem; line-height: 1.78; color: #2b3630; }
.article-body > p:first-of-type { font-size: 1.15rem; line-height: 1.66; color: var(--ink); }
.article-body h2 {
  margin-top: 1.9em; margin-bottom: 0.55em; padding-top: 24px; position: relative;
  font-size: clamp(1.32rem, 2vw, 1.65rem);
}
.article-body h2::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 2px; background: var(--brass); }
.article-body h3 { margin-top: 1.6em; font-size: 1.12rem; }
.article-body ul, .article-body ol { padding-left: 1.15em; }
.article-body li { margin-bottom: 10px; }
.article-body li::marker { color: var(--brass); }
.article-body img { border-radius: var(--radius-lg); }
.md-table th { background: var(--bone); font-weight: 600; border-bottom: 1px solid var(--line); }
.md-table td, .md-table th { padding: 13px 16px; border-bottom: 1px solid var(--hair); }
.md-table tr:nth-child(even) td { background: rgba(11, 20, 16, 0.025); }
.quick-answer { padding: 20px 24px; margin: 22px 0 28px; }
.quick-answer p { font-size: 1.03rem; color: var(--ink); }
.author-box { padding: 26px 28px; margin-top: 44px; }
.author-box .author-name { letter-spacing: -0.01em; font-size: 1.02rem; }

.result { min-height: 60vh; }
.result-mascot img { width: min(40%, 160px); }
.faqs .section-head { margin-bottom: 22px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; gap: 18px; align-items: start; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.12fr 0.88fr; gap: 32px; } }
.contact-card {
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-sm);
}
.contact-card + .contact-card { margin-top: 18px; }
.contact-card h2 { font-size: 1.35rem; margin-bottom: 10px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 10px; }
.contact-card p { color: var(--ink-soft); }
.contact-card p:last-child { margin-bottom: 0; }
.contact-mail {
  display: inline-flex; align-items: center; gap: 10px; margin: 6px 0 18px;
  font-size: 1.05rem; font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--brass); padding-bottom: 5px;
}
.contact-mail:hover { color: var(--moss); }
.contact-mail svg { width: 18px; height: 18px; stroke: var(--brass); fill: none; stroke-width: 1.5; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.97rem; color: var(--ink-soft); }
.contact-list svg { width: 19px; height: 19px; stroke: var(--moss); fill: none; stroke-width: 1.4; flex: none; margin-top: 3px; }
.contact-list b { color: var(--ink); font-weight: 600; display: block; }

/* sticky add-to-basket bar */
.sticky-buy {
  background: rgba(255, 255, 255, 0.97); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--hair); box-shadow: 0 -10px 34px rgba(11, 20, 16, 0.1);
}
.sticky-buy-info strong { font-weight: 500; color: var(--ink-soft); }
.sticky-buy-info span { font-weight: 600; }

 /* ---------- location pages ---------- */
.loc-grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .loc-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 40px; } }
@media (min-width: 1100px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }
.loc-region h3 { font-size: 1.05rem; margin-bottom: 6px; }
.loc-region h3 a { text-decoration: none; }
.loc-region h3 a:hover { color: var(--moss); }
.loc-region > p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 12px; }
.loc-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 8px; }
.loc-links .btn { min-height: 38px; padding: 7px 15px; font-size: 0.82rem; font-weight: 500; }
.loc-advice { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 0; }
.loc-advice li { padding: 15px 0; border-bottom: 1px solid var(--hair); color: var(--ink-soft); }
.loc-advice li:first-child { border-top: 1px solid var(--hair); }
.loc-advice b { color: var(--ink); font-weight: 600; }

/* ============================================================
   RESPONSIVE  (keep at the end - later rules win)
   ============================================================ */
/* Desktop: the two banners fill exactly what is left of the viewport under the
   header, so the next section never peeks. --hdr-h is measured live in luxe.js. */
/* Fill the viewport, but never go portrait: the tile keeps a 16/9 floor and is
   only ever *capped* by the space left under the header. */
@media (min-width: 901px) {
  .hero-grid { height: auto; }
  .hban {
    /* width:100% keeps the tile filling its column - without it the capped
       height makes the box shrink sideways and opens a gap between the two */
    width: 100%; aspect-ratio: 16 / 9; height: auto;
    max-height: calc(100vh - var(--hdr-h, 182px) - 32px);
    max-height: calc(100svh - var(--hdr-h, 182px) - 32px);
    min-height: 300px;
  }
}
/* the crest and its nav slot shrink together as the row gets tighter */
@media (max-width: 1300px) {
  .hdr-main { grid-template-columns: 1fr 160px 1fr; }
  .logo-crest { width: 124px; height: 124px; }
  .nav-gap { flex-basis: 160px; }
}
@media (max-width: 1180px) {
  .hdr-links a { padding: 8px 9px; }
  .catnav > li > a { padding: 0 10px; font-size: 0.84rem; }
  .hdr-main { grid-template-columns: 1fr 136px 1fr; }
  .logo-crest { width: 106px; height: 106px; }
  .nav-gap { flex-basis: 136px; }
}
@media (max-width: 1000px) {
  .hdr-main { grid-template-columns: 1fr 112px 1fr; gap: 18px; }
  .logo-crest { width: 88px; height: 88px; }
  .nav-gap { flex-basis: 112px; }
  .catnav > li > a { padding: 0 8px; font-size: 0.8rem; }
}
@media (max-width: 1040px) {
  .hdr-links { display: none; }
  .hdr-search { max-width: none; }
}
@media (max-width: 900px) {
  :root { --hdr-h: 104px; }
  .catbar { display: none; }
  .burger { display: inline-flex; }
  /* burger | crest | cart. The search moves into the drawer (see luxe.js). */
  .hdr-main {
    min-height: 84px; gap: 12px; padding-top: 10px; padding-bottom: 10px;
    grid-template-columns: auto 1fr auto;
  }
  .burger { grid-column: 1; }
  .hdr-left { display: none; }
  .hdr-right { grid-column: 3; }
  .logo { grid-column: 2; justify-self: center; padding: 0; position: static; transform: none; }
  .logo-crest { width: 72px; height: 72px; }
  .nav-gap { display: none; }

  /* two matching brass discs flanking the crest */
  .burger, .cart-btn {
    width: 46px; height: 46px; min-height: 46px; padding: 0; flex: none;
    border-radius: 50%; border: 1px solid rgba(198, 161, 91, 0.45);
    background: rgba(198, 161, 91, 0.06);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .burger:active, .cart-btn:active { background: rgba(198, 161, 91, 0.16); }
  .burger { gap: 5px; flex-direction: column; }
  .burger span { width: 18px; height: 1.5px; background: var(--brass-lt); border-radius: 2px; }
  .burger span:nth-child(3) { width: 12px; }
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(3) { width: 18px; transform: translateY(-6.5px) rotate(-45deg); }
  .cart-btn { gap: 0; }
  .cart-btn svg { width: 20px; height: 20px; stroke: var(--brass-lt); }
  /* anchor the count to the button, not to the icon, so it clears the bag */
  .cart-wrap { padding-left: 0; border-left: 0; position: static; }
  .cart-btn { position: relative; overflow: visible; }
  .cart-n {
    top: -8px; right: -8px; min-width: 20px; height: 20px; font-size: 0.65rem;
    box-shadow: 0 0 0 2px var(--night);
  }

  /* category chips: full grid, no clipped half-circle at the edge */
  .cat-rail {
    grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(4, 1fr);
    margin: 0; padding: 0; overflow: visible; gap: 22px 14px;
  }
  /* the search lives at the top of the mobile drawer instead */
  .mnav-search { display: block; padding: 14px 18px; border-bottom: 1px solid var(--hair); background: var(--bone); }
  .mnav-search .hdr-search { display: block; max-width: none; }
  .mnav-search input { border: 1px solid var(--line); }
  .cart-btn .cart-sum { display: none; }
  .hdr-search { max-width: none; }
  .hdr-search input { min-height: 46px; font-size: 0.9rem; padding-left: 44px; }
  .util-r span:nth-child(2) { display: none; }
  /* both banners share what is left of the viewport under the header, so the
     second one is fully visible without scrolling */
  .hero-grid {
    grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; gap: 12px;
    height: calc(100vh - var(--hdr-h, 130px) - 26px);
    height: calc(100svh - var(--hdr-h, 130px) - 26px);
    min-height: 420px; max-height: 760px;
  }
  .hban { aspect-ratio: auto; height: 100%; min-height: 0; border-radius: var(--radius-lg); }
  /* room at the foot of the tile for the dots, which now sit centred */
  .hban-c { padding: 24px 24px 52px; max-width: 100%; }
  .hban-slide::after {
    background: linear-gradient(115deg, rgba(6,12,8,0.88) 0%, rgba(6,12,8,0.6) 46%, rgba(6,12,8,0.18) 100%);
  }
  .hban-dots { left: 50%; transform: translateX(-50%); bottom: 18px; gap: 7px; }
  .hban-dots button { width: 22px; }
  .hban-dots button.on { width: 34px; }
  .hban-arrows { opacity: 1; right: 14px; top: 14px; gap: 7px; }
  .hban-arrows button { width: 34px; height: 34px; }
  /* the marquee directly above already says this - drop the duplicate plate */
  .hban-plate { display: none; }
  /* hold every banner headline to two balanced lines - except the gifts tile,
     which is short enough to stay on one */
  .hban-t { max-width: 8.6em; text-wrap: balance; }
  .hban-static .hban-t { max-width: none; white-space: nowrap; font-size: clamp(1.15rem, 5.4vw, 1.5rem); }
  .hban-static .hban-c { justify-content: flex-end; gap: 12px; padding-bottom: 24px; }
  .hban-static .hban-top { gap: 6px; }
  /* bento text needs room on tablets too */
  .btile { min-height: 210px; }
  .btile b { font-size: 1.08rem; }
  .assure-in { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .assure-i { padding: 0 16px; }
  .assure-i:nth-child(odd) { padding-left: 0; border-left: 0; }
  .assure-i:nth-child(even) { padding-right: 0; }
  .mega-in { grid-template-columns: 1fr; }
  .guarantee-in { padding: 32px 24px; }
}
@media (max-width: 640px) {
  :root { --pad-y: 54px; }
  .util { font-size: 0.66rem; }
  .util-in { justify-content: center; }
  .util-r { display: none; }
  .strip { font-size: 0.64rem; letter-spacing: 0.14em; padding: 9px 0; }
  .strip i:last-of-type, .strip span:last-of-type { display: none; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .hban-t { font-size: clamp(1.32rem, 6.6vw, 1.75rem); letter-spacing: -0.03em; }
  .hban-s { display: none; }
  .hban-c { gap: 10px; }
  .hban-k { font-size: 0.6rem; letter-spacing: 0.2em; }
  .hban-k::after { width: 26px; }
  .hban-cta { padding: 11px 20px; font-size: 0.82rem; }
  /* one product per row on phones */
  .pgrid { grid-template-columns: 1fr; gap: 16px; }
  .pcard { padding: 14px 14px 16px; }
  .pcard-media { aspect-ratio: 4 / 3; }
  .pcard-name { font-size: 1rem; }
  .pcard-price { font-size: 1.1rem; }
  .pcard-add { min-height: 46px; font-size: 0.86rem; }
  /* exactly one card per view: the track's content box is the viewport minus the
     22px gutters, so a 100% column + a 22px gap puts the next card fully off-screen */
  .rail { grid-auto-columns: 100%; gap: 22px; scroll-padding-inline: 22px; }
  /* bento: text was taller than the tile and spilling over the artwork */
  .bento { gap: 12px; }
  .btile { min-height: 232px; padding: 18px 16px; justify-content: flex-end; overflow: hidden; }
  .btile::after { background: linear-gradient(180deg, rgba(6, 12, 8, 0.12) 0%, rgba(6, 12, 8, 0.88) 72%); }
  .btile b { font-size: 1.02rem; line-height: 1.2; }
  .btile span { font-size: 0.8rem; line-height: 1.45; }
  .btile em { font-size: 0.68rem; margin-top: 8px; }
  /* keep chip labels on a common baseline so the rows line up */
  .cat-chip b { min-height: 2.4em; display: flex; align-items: flex-start; justify-content: center; }
  /* 2-up squeezed every label onto three wrapped lines - one clean list instead */
  .assure { padding-top: 4px; }
  .assure-in { grid-template-columns: 1fr; gap: 0; }
  .assure-i,
  .assure-i:nth-child(odd),
  .assure-i:nth-child(even) {
    padding: 14px 0; border-left: 0; border-top: 1px solid var(--hair); align-items: center;
  }
  .assure-i:first-child { border-top: 0; }
  .assure-i svg { width: 20px; height: 20px; }
  .assure-i b { font-size: 0.9rem; }
  .assure-i span { font-size: 0.82rem; }
  /* heading on its own line, then the link and the slider arrows share a row */
  .head-row { align-items: center; gap: 14px 12px; }
  .head-row .section-head { flex: 1 0 100%; margin-bottom: 0; }
  .head-row .head-link { order: 2; }
  .head-row .rail-nav { order: 3; margin-left: auto; }
  .rail-nav button { width: 42px; height: 42px; }
  /* a clipped half-circle at the edge reads as broken - use a full grid */
  .cat-rail { grid-template-columns: repeat(3, 1fr); gap: 20px 10px; }
  .cat-chip b { font-size: 0.78rem; }
  .cat-chip span { font-size: 0.68rem; }
  .why-card, .review-card { padding: 24px 20px; }
  /* footer base: everything centred on one axis, badges on a single row */
  .footer-pay { flex-direction: column; align-items: center; text-align: center; gap: 18px; margin-top: 36px; }
  .pay-badges { justify-content: center; gap: 7px; }
  .pay-badges img { height: 22px; padding: 3px 5px; }
  .pay-lock { text-align: center; margin: 0; }
  .footer-legal { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-legal p { margin: 0; }
  .hero-band { padding: 13px 0; }
  .hban-c { padding: 20px 22px 44px; }
  .hban-dots { bottom: 14px; }
  .hban-static .hban-c { padding-bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .hban-slide img { transition: none; transform: none; }
  .reveal, [data-stagger] > * { opacity: 1; transform: none; }
}

/* ---------- location pages: delivery & areas ------------------------------
   The block used to be three equal <h2>s, a hairline list that read like
   terms and conditions, and two runs of identical ghost pills. Now: one
   section head, three fact cards, the caveat as a footnote, and the two chip
   groups side by side. Colours are measured, not guessed - --ink-soft is
   5.99:1 on paper here, where --ink-faint would have been 3.12:1. */

.loc-delivery .section-head { margin-bottom: 34px; }

.loc-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.loc-fact {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 26px 24px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.loc-fact:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--line); }

.loc-fact-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--moss-deep);
}
.loc-fact-ico svg { width: 21px; height: 21px; }

.loc-fact h3 {
  margin: 0 0 9px;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft);
}
.loc-fact p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.62; }
.loc-fact b { color: var(--ink); font-weight: 600; }

.loc-note {
  margin: 20px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--brass);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.loc-cols {
  margin-top: 44px; padding-top: 34px;
  border-top: 1px solid var(--hair);
  display: grid; grid-template-columns: 1fr 1fr; gap: 34px;
}
.loc-col-title {
  margin: 0 0 14px;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft);
}
.loc-col .head-link { margin-top: 4px; }

/* Chips: filled rather than outlined, so a run of them reads as a group
   instead of a row of empty buttons. */
.loc-links .btn.btn-ghost {
  background: var(--bone-2);
  border-color: transparent;
  border-radius: 999px;
  color: var(--ink);
}
.loc-links .btn.btn-ghost:hover {
  background: var(--paper);
  border-color: var(--moss);
  color: var(--moss-deep);
  transform: translateY(-1px);
}

/* Region pages keep the plain list, but without the terms-and-conditions rules. */
.seo-block .loc-advice li { border: 0; padding: 0 0 14px; }
.seo-block .loc-advice li:first-child { border-top: 0; }

@media (max-width: 900px) {
  .loc-facts { grid-template-columns: 1fr 1fr; }
  .loc-cols { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 640px) {
  .loc-facts { grid-template-columns: 1fr; gap: 14px; }
  .loc-fact { padding: 22px 20px 20px; }
  .loc-delivery .section-head { margin-bottom: 26px; }
}
