/* ============================================================
   DiOro999.9 - global stylesheet
   Black, gold and cream. Cormorant Garamond for display, Inter for text.
   Architecture ported from kun/assets/css/styles.css (MBC lineage) and re-tokened
   for a jewellery shop; the shop controls, slider and PDP live in shop.css,
   the admin in admin.css. No inline styles anywhere (CSP).
   Order: fonts, tokens, reset, type, layout, chips, buttons, header, hero, trust,
   tiles, product card, split, steps, post cards, faq, cta, forms, contact,
   tables, prose, footer, call bar, fab, to-top, toast, reveal, a11y, responsive.
   Relative font URLs so the site works under any path prefix.
   ============================================================ */

/* ---------- Fonts (self-hosted, zero third-party requests) ---------- */
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-var.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-var-italic.woff2") format("woff2"); font-weight: 300 700; font-style: italic; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-var.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
/* metric-matched fallbacks so the swap does not shift layout */
@font-face { font-family: "Cormorant Fallback"; src: local("Georgia"), local("Times New Roman"); size-adjust: 106%; ascent-override: 90%; descent-override: 26%; line-gap-override: 0%; }
@font-face { font-family: "Inter Fallback"; src: local("Arial"), local("Helvetica"); size-adjust: 107%; ascent-override: 90%; descent-override: 22%; line-gap-override: 0%; }

/* ---------- Design tokens ----------
   Contrast pairs that carry text (all pass 4.5:1, checked by _tools/contrast.py):
   --text / --text-muted on --black and --surface; --gold on --black (display only);
   --ink / --ink-muted on --cream, --cream-2, --white; --gold-text on --cream / --white;
   --ink on --gold (primary button); --cream on --ink (active chip); --wa-ink on --wa.
   --gold is NEVER text on a light ground; --gold-hair never carries meaning. */
:root {
  --black:      #0B0B0D;
  --ink:        #15151A;
  --surface:    #16161A;
  --surface-2:  #1E1E24;
  --gold:       #C9A15A;   /* 8.17:1 on --black */
  --gold-deep:  #B8923F;   /* button hover */
  --gold-light: #E3C98A;
  --gold-text:  #7D5F1D;   /* gold as text on cream 5.24:1, on white 5.80:1 */
  --gold-line:  #9A7A38;   /* control borders on cream, 3.54:1 */
  --gold-hair:  #E8D5A3;   /* decorative hairline on white cards */
  --gold-a05:   rgba(201, 161, 90, .05);
  --gold-a10:   rgba(201, 161, 90, .10);
  --gold-a28:   rgba(201, 161, 90, .28);
  --gold-a50:   rgba(201, 161, 90, .50);
  --cream:      #F4F0E8;
  --cream-2:    #ECE6DA;
  --cream-3:    #E3DBC9;
  --white:      #FDFCF8;
  --text:       #EDE8DF;   /* 16.1:1 on --black */
  --text-muted: #B5B0A6;   /* 9.1:1 on --black */
  --ink-muted:  #5B5850;   /* 6.25:1 on --cream */
  --line-dark:  var(--gold-a28);
  --line-dark-2: rgba(237, 232, 223, .12);
  --line-paper: #D9D2C3;
  --ok:         #1C7C3C;
  --err:        #9A2A1D;
  --err-line:   #B23A2B;
  --focus:      #E8C57A;
  --focus-l:    #7D5F1D;
  --wa:         #25D366;
  --wa-deep:    #1FBF5B;
  --wa-ink:     #062A12;

  --serif: "Cormorant Garamond", "Cormorant Fallback", Georgia, serif;
  --sans:  "Inter", "Inter Fallback", system-ui, "Segoe UI", Arial, sans-serif;

  --fs-h1:     clamp(2.3rem, 1.1rem + 4.2vw, 4.2rem);
  --fs-h2:     clamp(1.8rem, 1rem + 2.8vw, 3rem);
  --fs-h3:     clamp(1.15rem, 1rem + .6vw, 1.35rem);
  --fs-lead:   clamp(1.06rem, 1rem + .4vw, 1.25rem);
  --fs-body:   clamp(1rem, .3vw + .96rem, 1.0625rem);
  --fs-small:  .875rem;
  --fs-body-s: .95rem;
  --fs-caption:.82rem;
  --fs-eyebrow:.72rem;
  --fs-card-title: 1.35rem;
  --fs-price:  1.45rem;
  --fs-price-pdp: clamp(1.9rem, 1rem + 2vw, 2.6rem);
  --fs-stat:   clamp(2.1rem, 1rem + 1.9vw, 2.7rem);
  --track-eyebrow: .26em;
  --track-label:   .2em;

  --container: 1240px;
  --narrow:    820px;
  --shop-w:    80rem;
  --gutter:    clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(3rem, 8vw, 7.5rem);
  --header-h:  72px;
  --callbar-h: 78px;
  --radius-card: 1rem;
  --radius:    10px;
  --radius-s:  8px;
  --radius-xs: 4px;
  --radius-pill: 999px;
  --shadow:    0 18px 50px -28px rgba(21, 21, 26, .35);
  --shadow-sm: 0 10px 30px -20px rgba(21, 21, 26, .40);
  --shadow-gold: 0 16px 36px -10px rgba(201, 161, 90, .28);
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --dur:       .3s;
  --dur-slow:  .7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); background: var(--black); }
#main { scroll-margin-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans); font-size: var(--fs-body); line-height: 1.65;
  color: var(--text); background: var(--black);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-synthesis: none; overflow-x: hidden;
}
/* light pages (shop, product, cart, checkout, blog, legal) */
body.page-paper { background: var(--cream); color: var(--ink); }
html.html-paper { background: var(--cream); }
img, svg, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
picture { display: contents; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 3px; }
.on-paper :focus-visible, .section--paper :focus-visible, body.page-paper :focus-visible { outline-color: var(--focus-l); }
::selection { background: var(--gold); color: var(--black); }

/* ---------- Typography ---------- */
h1, h2, .display { font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: -.012em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: 1.08; }
h3 { font-family: var(--sans); font-weight: 600; font-size: var(--fs-h3); line-height: 1.25; }
h4 { font-family: var(--sans); font-weight: 600; font-size: 1rem; }
p { max-width: 66ch; }
.lead { font-size: var(--fs-lead); color: var(--text-muted); line-height: 1.55; }
.small { font-size: var(--fs-small); }
.muted { color: var(--text-muted); }
.eyebrow { display: block; font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
strong { font-weight: 600; }
em { font-family: var(--serif); font-style: italic; font-size: 1.08em; }
.serif { font-family: var(--serif); }
.num, .price { font-family: var(--serif); font-weight: 700; font-variant-numeric: lining-nums tabular-nums; }
.gold-display { color: var(--gold); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .gold-display { background: linear-gradient(105deg, #C9A15A 44%, #E3C98A 50%, #C9A15A 56%) 0 0 / 250% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gold-pan 8s linear infinite; }
}
@keyframes gold-pan { 0% { background-position: 125% 0; } 100% { background-position: -25% 0; } }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--narrow); }
.container--shop { max-width: var(--shop-w); }
.section { padding-block: var(--section-y); position: relative; }
.section:not(.hero), .cta-band { content-visibility: auto; contain-intrinsic-size: auto 700px; }
.section--paper, .on-paper { background: var(--cream); color: var(--ink); }
.section--paper-2 { background: var(--cream-2); color: var(--ink); }
.section--surface { background: var(--surface); }
.section--paper .lead, .section--paper-2 .lead, .section--paper .muted, .section--paper-2 .muted, body.page-paper .lead, body.page-paper .muted { color: var(--ink-muted); }
.section--paper .eyebrow, .section--paper-2 .eyebrow, body.page-paper .eyebrow { color: var(--gold-text); }
.section--dark .eyebrow { color: var(--gold); }
.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1rem; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem 2rem; max-width: none; flex-wrap: wrap; }
.stack > * + * { margin-top: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.grid-2 > *, .grid-3 > *, .split > *, .hero__grid > * { min-width: 0; }
.rule { border: 0; border-top: 1px solid var(--line-dark); margin: 0; }
.section--paper .rule, body.page-paper .rule { border-top-color: var(--line-paper); }
.center { text-align: center; }
.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.4rem; } .mt-4 { margin-top: 1.8rem; } .mt-5 { margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.note { font-size: var(--fs-body-s); }
.section--pt-0 { padding-top: 0; }
.section--pt-sm { padding-top: clamp(2.2rem, 5vw, 3.4rem); }
.section--pb-sm { padding-bottom: clamp(2.2rem, 5vw, 3.4rem); }
/* running text links */
.section--paper p a:not(.btn):not(.link-arrow), .section--paper-2 p a:not(.btn):not(.link-arrow), body.page-paper p a:not(.btn):not(.link-arrow), .prose a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 2px; }
.section--dark p a:not(.btn):not(.link-arrow) { color: var(--gold); }

/* ---------- Chips ---------- */
.chip { display: inline-flex; align-items: center; gap: .45em; white-space: nowrap; padding: .4em .85em; border: 1px solid var(--line-dark); border-radius: 999px; font-size: var(--fs-caption); font-weight: 600; letter-spacing: .06em; color: var(--gold); background: var(--gold-a05); }
.chip svg { width: 1.05em; height: 1.05em; flex: none; }
.chip-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.section--paper .chip, .section--paper-2 .chip, body.page-paper .chip { border-color: var(--gold-line); color: var(--gold-text); background: rgba(154, 122, 56, .07); }
/* filter chips (shop, blog, admin): white pill, ink when active */
.filter-chip {
  display: inline-flex; align-items: center; gap: .35rem; min-height: 40px; padding: .42rem .95rem;
  border-radius: 999px; border: 1px solid var(--gold-line); background: var(--white); color: var(--ink-muted);
  font-family: var(--sans); font-size: .8rem; font-weight: 600; line-height: 1.2; white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.filter-chip:hover { border-color: var(--gold-text); color: var(--ink); text-decoration: none; }
.filter-chip.active, .filter-chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.filter-chip__n { font-weight: 500; font-size: .72rem; opacity: .8; }
.filter-chip:focus-visible { outline: 3px solid var(--focus-l); outline-offset: 2px; }
@media (pointer: coarse) { .filter-chip { min-height: 44px; } }

/* ---------- Badges ---------- */
.badge { position: absolute; top: .75rem; right: .75rem; z-index: 2; display: inline-block; padding: .3rem .7rem; border-radius: 999px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.2; }
.badge--new { background: var(--ink); color: var(--cream); }
.badge--sale { background: var(--gold); color: var(--ink); }
.badge--sold { background: var(--cream-2); color: var(--ink-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 1em 1.8em; min-height: 48px; border-radius: 999px; border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.btn--primary:focus-visible, .btn--wa:focus-visible { outline-color: var(--ink); }
.btn:active { transform: translateY(0) scale(.985); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn[hidden] { display: none; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }
.btn--primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ink); }
.btn--ghost { border-color: var(--gold); color: var(--gold); }
.btn--ghost:hover { background: var(--gold-a10); color: var(--gold); }
.btn--ghost-ink { border-color: var(--ink); color: var(--ink); }
.btn--ghost-ink:hover { background: var(--ink); color: var(--cream); }
.btn--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ink:hover { background: #000; border-color: #000; color: var(--cream); }
.btn--wa { background: var(--wa); color: var(--wa-ink); border-color: var(--wa); }
.btn--wa:hover { background: var(--wa-deep); border-color: var(--wa-deep); color: var(--wa-ink); }
.btn--sm { padding: .7em 1.2em; min-height: 40px; font-size: .76rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.link-arrow { font-weight: 600; display: inline-flex; align-items: center; gap: .45em; color: var(--gold); }
.link-arrow svg { width: 1.1em; height: 1.1em; flex: none; transition: transform .25s var(--ease); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover svg, .cat-tile:hover .link-arrow svg { transform: translateX(4px); }
.section--paper .link-arrow, .section--paper-2 .link-arrow, body.page-paper .link-arrow { color: var(--gold-text); }
.link-btn { background: none; border: 0; padding: 0; font: inherit; font-weight: 600; color: var(--gold-text); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.phone-link { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--text); white-space: nowrap; }
.phone-link svg { width: 1.05em; height: 1.05em; color: var(--gold); }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h); display: flex; align-items: center; color: var(--text); }
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11, 11, 13, .88), rgba(11, 11, 13, .55)); transition: background .35s var(--ease), box-shadow .35s; }
.site-header.is-solid::before { background: rgba(11, 11, 13, .9); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line-dark-2); }
/* light pages have no dark hero behind the header, so it is solid from the start */
body.page-paper .site-header::before { background: rgba(11, 11, 13, .96); box-shadow: 0 1px 0 var(--line-dark-2); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: inline-flex; align-items: baseline; gap: .45rem; color: #fff; white-space: nowrap; }
.logo:hover { text-decoration: none; }
.logo-word { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; letter-spacing: .04em; line-height: 1; }
.logo-stamp { font-family: var(--sans); font-weight: 500; font-size: .66rem; letter-spacing: .16em; color: var(--gold); border: 1px solid var(--gold-a50); padding: .18rem .42rem; border-radius: 3px; line-height: 1; transform: translateY(-.15em); }
.logo:hover .logo-stamp { border-color: var(--gold); color: var(--gold-light); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-menu { display: flex; align-items: center; gap: 1.6rem; }
.nav-menu > li { position: relative; }
.nav-menu a { font-size: .92rem; font-weight: 500; color: var(--text); position: relative; padding: .3rem 0; display: inline-block; }
.nav-menu > li > a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold); transition: width .28s var(--ease); }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: #fff; text-decoration: none; }
.nav-menu > li > a:hover::after, .nav-menu > li > a:focus-visible::after, .nav-menu > li > a[aria-current="page"]::after, .nav-menu > li.has-sub:hover > a::after, .nav-menu > li.has-sub:focus-within > a::after { width: 100%; }
.nav-menu .nav-only-mobile { display: none; }
/* Shop sub-menu: hover and focus-within on desktop, always visible inside the drawer */
.nav-sub { position: absolute; top: calc(100% + .6rem); left: -1rem; min-width: 12rem; padding: .6rem .5rem; background: var(--surface); border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .9); display: grid; gap: .1rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s; }
.nav-sub::before { content: ""; position: absolute; left: 0; right: 0; top: -.7rem; height: .7rem; }
.nav-sub a { display: block; padding: .5rem .8rem; border-radius: 6px; font-size: .9rem; }
.nav-sub a:hover, .nav-sub a:focus-visible { background: var(--gold-a10); color: #fff; text-decoration: none; }
.has-sub:hover .nav-sub, .has-sub:focus-within .nav-sub { opacity: 1; visibility: visible; transform: none; }
.nav-side { display: flex; align-items: center; gap: .6rem; }
.cart-link { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; color: var(--text); }
.cart-link:hover, .cart-link:focus-visible { color: var(--gold); text-decoration: none; }
.cart-link svg { width: 24px; height: 24px; }
.cart-count { position: absolute; top: 3px; right: 1px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: .68rem; font-weight: 700; line-height: 18px; text-align: center; font-variant-numeric: tabular-nums; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 8px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 11px; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span { top: 22px; } .nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-toggle:active { transform: scale(.94); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem)); padding-bottom: clamp(3rem, 7vw, 5.5rem); isolation: isolate; overflow: hidden; background: var(--black); color: var(--text); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(56% 60% at 74% 6%, var(--gold-a10), transparent 68%); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__copy { max-width: 640px; }
.hero__title { margin-bottom: 1.2rem; text-wrap: balance; letter-spacing: -.02em; color: #fff; }
.hero__sub { font-size: var(--fs-lead); color: var(--text-muted); max-width: 54ch; line-height: 1.55; }
.hero__btns { margin-top: 2rem; }
.hero__note { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .55rem; }
.hero__note span { display: inline-flex; align-items: center; gap: .45em; white-space: nowrap; padding: .4em .85em; border: 1px solid var(--line-dark); border-radius: 999px; font-size: var(--fs-caption); font-weight: 600; letter-spacing: .06em; color: var(--gold); background: var(--gold-a05); }
.hero__note svg { width: 1em; height: 1em; flex: none; color: var(--gold); }
/* collage: three mounted placeholder tiles, stepped */
.collage { position: relative; width: 100%; max-width: 560px; justify-self: end; aspect-ratio: 1 / 1; }
.collage__tile { position: absolute; padding: 8px; background: var(--surface); border: 1px solid var(--line-dark-2); border-radius: 14px; box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .85); }
.collage__tile img { width: 100%; height: auto; border-radius: 7px; display: block; }
.collage__tile--a { left: 0; top: 0; width: 68%; z-index: 1; }
.collage__tile--b { right: 0; top: 18%; width: 46%; z-index: 2; }
.collage__tile--c { left: 14%; bottom: 0; width: 44%; z-index: 3; border-color: var(--line-dark); }
.hero--short { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.hero--short .hero__title { font-size: clamp(2.3rem, 1rem + 3.4vw, 3.8rem); }
.hero--bare { padding-bottom: clamp(1.5rem, 4vw, 3rem); }
.hero--bare .hero__grid { grid-template-columns: 1fr; }
.hero--404 { min-height: 60vh; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .35rem .6rem; font-size: var(--fs-small); color: var(--text-muted); margin-bottom: 1.4rem; }
.breadcrumb li + li::before { content: "/"; margin-right: .6rem; color: var(--line-dark); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--text); }
.on-paper .breadcrumb, body.page-paper .breadcrumb { color: var(--ink-muted); }
.on-paper .breadcrumb a:hover, body.page-paper .breadcrumb a:hover { color: var(--gold-text); }
.on-paper .breadcrumb [aria-current], body.page-paper .breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Trust strip (dark) ---------- */
.trust { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: var(--black); color: var(--text); }
.trust ul { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust li { display: flex; align-items: center; gap: .9rem; padding: 1.3rem 1.2rem; font-size: .92rem; font-weight: 500; border-left: 1px solid var(--line-dark-2); }
.trust li:first-child { border-left: 0; padding-left: 0; }
.trust svg { width: 26px; height: 26px; flex: none; color: var(--gold); }
.trust b { display: block; font-weight: 600; color: #fff; }
.trust span { display: block; font-size: .8rem; color: var(--text-muted); }

/* ---------- Category tiles ---------- */
.cat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.cat-tile { display: grid; grid-template-rows: auto 1fr; background: var(--white); border: 1px solid var(--gold-hair); border-radius: var(--radius-card); overflow: hidden; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.cat-tile:hover, .cat-tile:focus-visible { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow-gold); text-decoration: none; }
.cat-tile__media { aspect-ratio: 4 / 3; background: var(--white); padding: 1.4rem; border-bottom: 1px solid var(--gold-hair); }
.cat-tile__media img { width: 100%; height: 100%; object-fit: contain; }
.cat-tile__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .45rem; }
.cat-tile__body h3 { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; line-height: 1.1; }
.cat-tile__body p { font-size: var(--fs-body-s); color: var(--ink-muted); }
.cat-tile__body .link-arrow { margin-top: auto; padding-top: .5rem; font-size: .9rem; }

/* ---------- Product grid and card (shared by shop, home, PDP related, blog related) ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.shop-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.product-card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gold-hair); border-radius: var(--radius-card); overflow: hidden; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--gold-line); }
.product-card::before { content: ""; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; z-index: 2; pointer-events: none; background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent); opacity: 0; transition: opacity .3s; }
.product-card:hover::before { opacity: 1; }
.product-card__media { position: relative; display: block; aspect-ratio: 1 / 1; background: var(--white); overflow: hidden; border-bottom: 1px solid var(--cream-2); }
.product-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 1.25rem; transition: transform .45s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__media:hover { text-decoration: none; }
.product-card__soldover { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(21, 21, 26, .45); color: var(--cream); font-weight: 600; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; }
.product-card.is-sold { opacity: .8; }
.product-card__body { padding: 1.25rem 1.4rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.product-card__kicker { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-text); }
.product-card__name { font-family: var(--serif); font-weight: 600; font-size: var(--fs-card-title); line-height: 1.2; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__name a:hover { text-decoration: none; color: var(--gold-text); }
.product-card__meta { font-size: .82rem; color: var(--ink-muted); }
.product-card__desc { font-size: .88rem; line-height: 1.5; color: var(--ink-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--gold-hair); display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.product-card__pricing { display: flex; flex-direction: column; gap: .1rem; }
.product-card .price { font-size: var(--fs-price); line-height: 1.1; color: var(--ink); }
.price--was { font-size: .8rem; color: var(--ink-muted); text-decoration: line-through; }
.product-card__sold { font-size: .82rem; font-weight: 600; color: var(--ink-muted); }
.shop-empty { text-align: center; padding: 2rem 1rem; color: var(--ink-muted); }

/* ---------- Split (image + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; width: 100%; max-width: 520px; justify-self: center; padding: 8px; background: var(--surface); border: 1px solid var(--line-dark-2); border-radius: 14px; box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .85); }
.section--paper .split__media, .section--paper-2 .split__media { background: #fff; border-color: var(--line-paper); box-shadow: var(--shadow-sm); }
.split__media img { width: 100%; height: auto; border-radius: 7px; display: block; }
.split--rev .split__media { order: 2; }
.split__body h2 { margin-bottom: 1rem; }
.split__body .lead { margin-bottom: 1rem; }
.ticks { display: grid; gap: .7rem; margin-top: 1.3rem; }
.ticks li { position: relative; padding-left: 1.9rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .42em; width: 1.05rem; height: 1.05rem; background: var(--gold); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat; }
.section--paper .ticks li::before, .section--paper-2 .ticks li::before, body.page-paper .ticks li::before { background: var(--gold-text); }

/* ---------- Steps (how ordering works) ---------- */
.steps { --rail: var(--line-dark); --rail-dot: var(--gold); --rail-bg: var(--black); position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); counter-reset: step; }
.section--paper .steps, body.page-paper .steps { --rail: var(--gold-line); --rail-dot: var(--gold-text); --rail-bg: var(--cream); }
.section--paper-2 .steps { --rail-bg: var(--cream-2); }
.steps::before { content: ""; position: absolute; left: 5px; right: 0; top: 5px; height: 1px; background: linear-gradient(90deg, var(--rail) 0%, var(--rail) 80%, transparent 100%); }
.step { position: relative; padding-top: 2.1rem; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 11px; height: 11px; border-radius: 999px; background: var(--rail-dot); box-shadow: 0 0 0 4px var(--rail-bg); }
.step b { counter-increment: step; font-family: var(--serif); font-weight: 600; font-size: var(--fs-stat); line-height: 1; color: var(--gold); display: block; font-variant-numeric: lining-nums tabular-nums; }
.step b::before { content: "0" counter(step); }
.step h3 { margin: .7rem 0 .45rem; font-size: 1.15rem; }
.step p { font-size: var(--fs-body-s); color: var(--text-muted); }
.section--paper .step b, body.page-paper .step b { color: var(--gold-text); }
.section--paper .step p, body.page-paper .step p { color: var(--ink-muted); }

/* ---------- Post cards (blog teasers and list) ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gold-hair); border-radius: var(--radius); overflow: hidden; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.post-card:hover, .post-card:focus-visible { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow-gold); text-decoration: none; }
.post-card[hidden] { display: none; }
.post-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--black); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card__body .eyebrow { margin-bottom: .1rem; color: var(--gold-text); font-size: .68rem; }
.post-card__body h3 { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; line-height: 1.2; }
.post-card__body p { font-size: var(--fs-body-s); color: var(--ink-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card__meta { margin-top: auto; padding-top: .5rem; font-size: .78rem; color: var(--ink-muted); }
.post-card--feat { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.post-card--feat .post-card__media { aspect-ratio: auto; min-height: 280px; }
.post-card--feat .post-card__body { padding: clamp(1.4rem, 3vw, 2.4rem); justify-content: center; }
.post-card--feat .post-card__body h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.post-card--feat .post-card__body p { -webkit-line-clamp: 4; }
.section--dark .post-card { background: var(--surface); border-color: var(--line-dark-2); color: var(--text); box-shadow: none; }
.section--dark .post-card__body .eyebrow { color: var(--gold); }
.section--dark .post-card__body p, .section--dark .post-card__meta { color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { max-width: var(--narrow); }
.faq-item { border-top: 1px solid var(--line-paper); }
.faq-item:last-child { border-bottom: 1px solid var(--line-paper); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; font-weight: 600; font-size: 1.05rem; color: var(--ink); min-height: 56px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex: none; width: 12px; height: 12px; border-right: 1.5px solid var(--gold-text); border-bottom: 1.5px solid var(--gold-text); transform: rotate(45deg); transition: transform .25s var(--ease); margin-right: .3rem; margin-top: -4px; }
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-item summary:hover, .faq-item summary:focus-visible { color: var(--gold-text); }
.faq-item > div { padding: 0 0 1.3rem; color: var(--ink-muted); max-width: 62ch; }
.faq-item > div p + p { margin-top: .7rem; }
.section--dark .faq-item { border-color: var(--line-dark-2); }
.section--dark .faq-item summary { color: var(--text); }
.section--dark .faq-item summary::after { border-color: var(--gold); }
.section--dark .faq-item summary:hover { color: var(--gold); }
.section--dark .faq-item > div { color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; background: var(--black); color: var(--text); }
.cta-band .container { padding-block: clamp(3rem, 7vw, 5.5rem); }
.cta-band__box { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: clamp(2rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden; background: var(--surface); }
.cta-band__box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(201, 161, 90, .12), transparent 70%); pointer-events: none; }
.cta-band h2 { margin-bottom: .8rem; color: #fff; }
.cta-band p { color: var(--text-muted); margin: 0 auto 1.8rem; max-width: 52ch; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Forms (contact, checkout) ---------- */
.qf { display: grid; gap: 1.1rem; }
.qf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field label .opt { font-weight: 400; color: var(--ink-muted); }
.field input, .field select, .field textarea { width: 100%; background: #fff; color: var(--ink); border: 1px solid var(--line-paper); border-radius: var(--radius-s); padding: .8rem .9rem; min-height: 48px; font-size: 16px; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold-text); outline-offset: 0; border-color: var(--gold-text); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%235B5850' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; background-size: 18px; padding-right: 2.6rem; }
.field [aria-invalid="true"] { border-color: var(--err-line); }
.field-err { display: none; font-size: var(--fs-caption); color: var(--err); }
.qf.was-validated :invalid { border-color: var(--err-line); }
.qf.was-validated :invalid ~ .field-err, .field [aria-invalid="true"] ~ .field-err { display: block; }
.field--check { display: flex; align-items: flex-start; gap: .6rem; }
.field--check input { width: 20px; height: 20px; min-height: 0; margin-top: .2rem; flex: none; accent-color: var(--gold-text); }
.field--check label { font-weight: 400; font-size: .9rem; color: var(--ink-muted); }
.qf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.qf__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: .4rem; }
.qf__say { font-size: .9rem; color: var(--ink-muted); min-height: 1.4em; }
.qf__say.is-err { color: var(--err); font-weight: 600; }
.qf__say.is-ok { color: var(--ok); font-weight: 600; }
.qf__privacy { font-size: .82rem; color: var(--ink-muted); }
.qf__privacy a { text-decoration: underline; text-underline-offset: 2px; }
.qf-done { display: none; border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 1.6rem 1.8rem; background: #fff; box-shadow: var(--shadow-sm); }
.qf-done h2 { font-size: 1.6rem; margin-bottom: .5rem; }
.qf-done p { color: var(--ink-muted); }
.qf-done:target, .is-sent .qf-done { display: block; }
.qf-done:target ~ .qf, .is-sent .qf { display: none; }

/* ---------- Contact card and layout ---------- */
.contact-card { background: var(--surface); border: 1px solid var(--line-dark-2); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); color: var(--text); display: grid; gap: 1.3rem; align-content: start; }
.contact-card h2 { font-size: 1.6rem; color: #fff; }
.contact-card h3 { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.contact-card a { color: #fff; }
.contact-card address { font-style: normal; color: var(--text); }
.contact-card p, .contact-card address { font-size: .98rem; }
.contact-card .muted { color: var(--text-muted); }
.contact-card .phone-link { color: #fff; }
.contact-card :focus-visible { outline-color: var(--focus); }
.socials { display: flex; gap: .7rem; }
.socials a { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line-dark-2); display: grid; place-items: center; color: var(--text); }
.socials a:hover, .socials a:focus-visible { background: var(--gold); border-color: var(--gold); color: var(--black); text-decoration: none; }
.socials svg { width: 18px; height: 18px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.contact-grid > * { min-width: 0; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line-paper); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 520px; }
.table th, .table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line-paper); }
.table th { font-size: var(--fs-eyebrow); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--ink-muted); font-weight: 600; background: var(--cream-2); }
.table tbody tr:nth-child(even) { background: rgba(21, 21, 26, .022); }
.table tr:last-child td { border-bottom: 0; }
.table-note { font-size: var(--fs-caption); font-style: italic; color: var(--ink-muted); margin-top: .7rem; }

/* ---------- Prose (legal, about, blog posts) ---------- */
.prose { max-width: var(--narrow); }
.prose h2 { margin: 2.4rem 0 .8rem; font-size: 1.7rem; }
.prose h3 { margin: 1.6rem 0 .5rem; }
.prose p + p { margin-top: 1rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; margin-top: .6rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose table { width: 100%; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.facts { display: grid; grid-template-columns: max-content 1fr; gap: .75rem 1.6rem; max-width: var(--narrow); border-top: 1px solid var(--line-paper); padding-top: 1.2rem; }
.facts dt { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--gold-text); padding-top: .2rem; }
.facts dd { margin: 0; color: var(--ink); font-size: var(--fs-body); max-width: 62ch; padding-bottom: .75rem; border-bottom: 1px solid var(--line-paper); }
.facts dt:last-of-type, .facts dd:last-of-type { border-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-dark-2); background: var(--black); color: var(--text-muted); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: clamp(1.8rem, 4vw, 3rem); padding-bottom: 3rem; }
.footer-about p { margin-top: 1.1rem; font-size: .95rem; max-width: 40ch; }
.footer-about address { font-style: normal; margin-top: 1rem; font-size: .95rem; line-height: 1.7; }
.footer-about address a { color: var(--text); }
.footer-col h3 { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: var(--text-muted); font-size: var(--fs-body-s); }
.footer-col a:hover { color: #fff; }
.footer-hours { font-size: var(--fs-body-s); }
.footer-bottom { border-top: 1px solid var(--line-dark-2); padding-block: 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px)); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; font-size: .82rem; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Mobile call bar (hidden until 860px) ---------- */
.call-bar { display: none; }

/* ---------- WhatsApp FAB (desktop) ---------- */
.wa-fab { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90; display: inline-flex; align-items: center; gap: .6rem; height: 54px; padding: 0 1.2rem 0 1rem; border-radius: 999px; background: rgba(11, 11, 13, .86); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid var(--line-dark); color: var(--text); font-weight: 600; font-size: .9rem; box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .9); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.wa-fab svg { color: var(--wa); width: 26px; height: 26px; flex: none; }
.wa-fab:hover { text-decoration: none; background: var(--surface); color: #fff; }
.js .wa-fab { opacity: 0; transform: translateY(12px); visibility: hidden; }
.js .wa-fab.is-in { opacity: 1; transform: none; visibility: visible; }
body.nav-open .wa-fab, body.lb-open .wa-fab { display: none; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: 1.4rem; bottom: calc(1.4rem + 54px + 1rem); z-index: 90; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(11, 11, 13, .8); color: var(--gold); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.to-top.is-in { opacity: 1; visibility: visible; transform: none; }
.to-top:hover, .to-top:focus-visible { background: var(--gold); color: var(--black); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Toast (added to cart) ---------- */
.toast { position: fixed; left: 50%; bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px)); z-index: 120; transform: translate(-50%, 16px); display: inline-flex; align-items: center; gap: .8rem; padding: .8rem 1.1rem .8rem 1.2rem; border-radius: 999px; background: rgba(11, 11, 13, .94); border: 1px solid var(--line-dark); color: var(--text); font-size: .92rem; box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .9); opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; max-width: calc(100vw - 2rem); }
.toast.is-in { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.toast svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.toast.is-err { border-color: var(--err-line); }

/* ---------- Reveal on scroll (only with JS; no-JS shows everything) ---------- */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { --d: .08s; }
.js .reveal[data-delay="2"] { --d: .16s; }
.js .reveal[data-delay="3"] { --d: .24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .btn:active, .product-card:hover, .product-card:hover .product-card__media img, .cat-tile:hover, .post-card:hover, .post-card:hover .post-card__media img, .link-arrow:hover svg, .to-top:active, .nav-toggle:active { transform: none !important; }
  .gold-display { animation: none; }
}

/* ---------- A11y helpers ---------- */
.skip-link { position: absolute; left: 1rem; top: -60px; background: var(--gold); color: var(--black); padding: .7rem 1.1rem; border-radius: 6px; z-index: 300; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 1rem; text-decoration: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust ul { grid-template-columns: repeat(2, 1fr); }
  .trust li:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust li:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark-2); }
  .shop-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  :root { --header-h: 64px; }
  body { padding-bottom: var(--callbar-h); }
  .nav-menu { position: fixed; inset: 0; height: 100dvh; flex-direction: column; justify-content: safe center; gap: 1rem; background: var(--black); padding: 5rem 2rem 2rem; padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px)); transform: translateX(100%); visibility: hidden; transition: transform .4s var(--ease), visibility .4s; z-index: 90; overflow-y: auto; overscroll-behavior: contain; }
  body.nav-open .nav-menu { visibility: visible; transform: none; }
  .nav-menu > li > a { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: #fff; padding: .25rem .6rem; }
  .nav-menu > li > a::after { display: none; }
  .nav-menu > li { text-align: center; }
  .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; background: none; border: 0; box-shadow: none; padding: 0 0 .4rem; min-width: 0; }
  .nav-sub a { font-family: var(--sans); font-size: .95rem; font-weight: 500; color: var(--gold); letter-spacing: .06em; padding: .3rem .6rem; }
  .nav-menu .nav-only-mobile { display: block; }
  .nav-menu .nav-only-mobile a { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--gold); letter-spacing: .08em; }
  .nav-menu li.nav-mobile-sep { width: 48px; height: 1px; background: var(--line-dark); margin: .6rem auto; }
  .nav-toggle { display: block; z-index: 95; }
  .hero { padding-top: calc(var(--header-h) + 1.4rem); padding-bottom: clamp(2.2rem, 6vw, 3.5rem); }
  .hero__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__title { font-size: 2.35rem; }
  .hero--short .hero__title { font-size: 2.15rem; }
  .eyebrow { font-size: .66rem; letter-spacing: .2em; }
  .collage { justify-self: start; max-width: 520px; }
  .hero__copy { max-width: none; }
  .cat-tiles { grid-template-columns: 1fr 1fr; }
  .split, .split--rev, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media { max-width: 86%; justify-self: start; }
  .steps { grid-template-columns: 1fr; gap: 1.8rem; }
  .steps::before { left: 5px; right: auto; top: 5px; bottom: 6px; width: 1px; height: auto; background: linear-gradient(180deg, var(--rail) 0%, var(--rail) 84%, transparent 100%); }
  .step { padding-top: 0; padding-left: 2rem; }
  .step::before { top: 3px; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .post-card--feat { grid-template-columns: 1fr; }
  .post-card--feat .post-card__media { aspect-ratio: 16 / 9; min-height: 0; }
  .hero::after { background: radial-gradient(70% 40% at 60% 0%, var(--gold-a10), transparent 70%); }
  .qf__row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .wa-fab, .to-top { display: none; }
  .call-bar { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 95; padding: 7px; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(11, 11, 13, .86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .9); }
  .call-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 600; }
  .call-bar a:hover { text-decoration: none; }
  .call-bar svg { width: 19px; height: 19px; flex: none; }
  .call-bar__call { min-height: 50px; border-radius: 999px; background: var(--gold); color: var(--black); font-size: .95rem; }
  .call-bar__call:active { background: var(--gold-deep); }
  .call-bar__wa { width: 50px; height: 50px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-dark-2); color: var(--wa); }
  body.nav-open .call-bar, body.lb-open .call-bar, body.no-callbar .call-bar { display: none; }
  body.no-callbar { padding-bottom: 0; }
  .toast { bottom: calc(var(--callbar-h) + 1rem + env(safe-area-inset-bottom, 0px)); }
  body.no-callbar .toast { bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px)); }
  .footer-bottom { padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 600px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-card__body { padding: .9rem 1rem 1rem; gap: .3rem; }
  .product-card__media img { padding: .6rem; }
  .product-card__name { font-size: 1.1rem; }
  .product-card__desc { -webkit-line-clamp: 3; font-size: .82rem; }
  .product-card .price { font-size: 1.2rem; }
  .product-card__foot .btn--sm { font-size: .7rem; padding: .6em 1em; min-height: 36px; }
  .product-card__kicker { font-size: .66rem; }
  .product-card__meta { font-size: .76rem; }
}
@media (max-width: 560px) {
  .cat-tiles { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .trust ul { grid-template-columns: 1fr 1fr; }
  .trust li { flex-direction: column; align-items: flex-start; gap: .55rem; padding: 1rem .9rem 1rem 0; font-size: .86rem; border-left: 0; border-bottom: 1px solid var(--line-dark-2); }
  .trust li:nth-child(even) { border-left: 1px solid var(--line-dark-2); padding-left: .9rem; }
  .trust li:nth-child(3) { padding-left: 0; }
  .trust li:nth-last-child(-n+2) { border-bottom: 0; }
  .hero__note span { font-size: .78rem; padding: .35em .7em; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__btns .btn { width: 100%; }
  .logo-word { font-size: 1.15rem; }
  .cta-band .btn-row .btn { width: 100%; }
}
@media print {
  .site-header, .call-bar, .wa-fab, .to-top, .skip-link, .cta-band, .toast { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
}
