/* ==========================================================================
   Foreigners — core stylesheet
   Light retail palette, Inter typography. Mobile first.
   No framework, no reset library, no icon font.
   ========================================================================== */

/* ---------------------------------------------------------------- fonts --
   Inter, self-hosted. Two subsets with unicode-range, so latin-ext is only
   fetched when a page actually contains one of those characters.
   -------------------------------------------------------------------------- */
@font-face{
  font-family:'Inter';font-style:normal;font-weight:400 700;font-display:swap;
  src:url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Inter';font-style:normal;font-weight:400 700;font-display:swap;
  src:url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

:root{
  /* Brand — gold sampled from the logo. Two of them: --gold carries fills,
     --gold-ink is the text-safe darkening (4.9:1 on white, passes AA). */
  --gold:#C89434;
  --gold-soft:#E8C87A;
  --gold-deep:#8A5A1B;
  --gold-ink:#7A5410;
  --gold-grad:linear-gradient(135deg,#E8C87A 0%,#C89434 45%,#8A5A1B 100%);
  --violet:#7C2FA8;

  /* Neutrals */
  --paper:#FFFFFF;
  --surface:#FFFFFF;
  --surface-2:#F8F9FA;
  --surface-3:#F1F3F5;
  --ink:#111111;
  --text:#111111;
  --text-2:#767676;
  /* On white, #767676 is the lightest grey that still clears WCAG AA for
     normal-size text (4.54:1 — the threshold is 4.5). Anything lighter fails,
     so the supporting tier is the same grey and earns its hierarchy from size,
     weight and letter-spacing instead of from colour. */
  --text-3:#767676;
  --line:#E9ECEF;
  --line-2:#DEE2E6;

  --ok:#1E7A4B;
  --warn:#C0392B;

  /* Type — one family, the way the reference does it */
  --font:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans Bengali",sans-serif;
  --font-display:var(--font);

  /* Space + shape — square corners, retail-flat */
  --gutter:16px;
  --maxw:1320px;
  --radius:0px;
  --radius-lg:0px;
  --shadow:0 1px 2px rgba(17,17,17,.04);
  --shadow-md:0 2px 10px rgba(17,17,17,.07);
  --shadow-lg:0 12px 34px rgba(17,17,17,.12);
  --header-h:64px;
  --ease:cubic-bezier(.4,.14,.3,1);
}

/* --------------------------------------------------------------- reset -- */
*,*::before,*::after{box-sizing:border-box}

/* The browser's own [hidden]{display:none} is a UA rule, and any author rule
   beats it — so a component styled with `display:grid` stays laid out while
   carrying the hidden attribute. That is how the size-chart dialog ended up
   covering the whole viewport at z-index 300 and swallowing every click on the
   product page. Make hidden mean hidden. */
[hidden]{display:none!important}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}
body{
  margin:0;background:var(--paper);color:var(--text-2);
  font-family:var(--font);font-size:15px;line-height:1.6;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img,picture,svg,video{display:block;max-width:100%;height:auto}
h1,h2,h3,h4{margin:0 0 .5em;font-family:var(--font-display);font-weight:700;line-height:1.22;color:var(--ink);letter-spacing:-.01em}
h1{font-size:clamp(1.8rem,4.2vw,2.6rem)}
h2{font-size:clamp(1.45rem,3vw,2.25rem)}
h3{font-size:1.1rem}
p{margin:0 0 1em}
a{color:inherit;text-decoration:none}
ul,ol{margin:0;padding:0;list-style:none}
button{font:inherit;color:inherit;background:none;border:0;padding:0;cursor:pointer}
input,select,textarea{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--gold-ink);outline-offset:2px}
table{border-collapse:collapse;width:100%}

.screen-reader-text{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:1000;
  background:var(--ink);color:#fff;padding:12px 20px;font-weight:600;
}
.skip-link:focus{left:8px;top:8px}

/* -------------------------------------------------------------- layout -- */
.container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}
.container--narrow{max-width:820px}
.section{padding:48px 0}
.section--cats{padding-bottom:24px}
.section--alt{background:var(--surface-2)}

.section__head{margin-bottom:28px;text-align:center}
.section__title{
  margin:0 0 6px;font-size:clamp(1.4rem,2.8vw,2rem);font-weight:700;
  color:var(--ink);letter-spacing:-.015em;
}
.section__title::after{
  content:"";display:block;width:48px;height:3px;margin:14px auto 0;
  background:var(--gold-grad);
}
.section__sub{margin:0;color:var(--text-2);font-size:.92rem}

.section__head--split{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:16px;text-align:left;
}
.section__head--split .section__title::after{margin-inline:0}

/* ------------------------------------------------------------- buttons -- */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 26px;border-radius:var(--radius);
  font-size:.82rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;
  transition:background-color .18s var(--ease),color .18s var(--ease),border-color .18s var(--ease),box-shadow .18s var(--ease);
  white-space:nowrap;
}
.btn .ico{transition:transform .18s var(--ease)}
.btn:hover .ico{transform:translateX(3px)}

/* Primary CTA is solid black, as on the reference — the gold reads as an
   accent rather than as the button colour, and stays legible on white. */
.btn--gold{background:var(--ink);color:#fff}
.btn--gold:hover{background:var(--gold-ink)}

.btn--ghost{border:1px solid var(--line-2);color:var(--ink);background:var(--surface)}
.btn--ghost:hover{border-color:var(--ink);background:var(--ink);color:#fff}

.btn--dark{background:var(--ink);color:#fff}
.btn--dark:hover{background:var(--gold-ink)}

/* `.entry-content a` is styled for prose — gold and underlined — and it
   outranks the button classes, so any button inside page content came out with
   gold underlined text on its own background. */
.entry-content a.btn,
.entry-content a.button{text-decoration:none}
.entry-content a.btn--gold,
.entry-content a.btn--dark{color:#fff}
.entry-content a.btn--ghost{color:var(--ink)}
.entry-content a.btn--ghost:hover{color:#fff}

/* ---- wishlist ---- */
.wishlist-page__empty{
  max-width:440px;margin:0 auto;padding:46px 24px;text-align:center;
  background:var(--surface);border:1px solid #EEF1F5;border-radius:14px;
}
.wishlist-page__empty p{margin:0 0 22px;font-size:.95rem;color:var(--text-2)}
/* The same gold pill as the empty bag — it is the same moment. */
.entry-content .wishlist-page__empty a.btn,
.wishlist-page__empty .btn{
  display:inline-block;padding:15px 34px;border-radius:999px;
  background:var(--gold-grad);color:#241703;
  font-size:.9rem;font-weight:700;letter-spacing:.02em;text-transform:none;
  box-shadow:0 6px 18px rgba(138,90,27,.26);
  transition:transform .18s var(--ease),box-shadow .18s var(--ease);
}
.entry-content .wishlist-page__empty a.btn:hover,
.wishlist-page__empty .btn:hover{
  transform:translateY(-2px);box-shadow:0 10px 26px rgba(138,90,27,.34);
  background:var(--gold-grad);color:#241703;
}

/* -------------------------------------------------------------- header -- */
.site-header{
  position:relative;z-index:80;background:var(--surface);color:var(--ink);
  transition:box-shadow .2s var(--ease);
}
.site-header.is-sticky{position:sticky;top:0}
.site-header.is-stuck .topbar,
.site-header.is-stuck .nav{display:none}
/* Once it detaches, the header is a white bar over a white page. --shadow-md
   (7% at 10px) and the #E9ECEF hairline both vanish against that, so the
   content read as if it ran into the header. Floating it needs a shadow with
   some reach and a line you can actually see. */
/* Out of the flow while compact — main.js holds the vacated space with
   .site-header__spacer so the page does not jump by the height of the rows
   that just went away. */
.site-header.is-stuck{
  position:fixed;top:0;left:0;right:0;
  box-shadow:0 8px 24px rgba(17,17,17,.13);
}
.admin-bar .site-header.is-stuck{top:32px}
@media screen and (max-width:782px){.admin-bar .site-header.is-stuck{top:46px}}
.site-header__spacer{flex:0 0 auto}
.site-header.is-stuck .header-main{border-bottom-color:var(--line-2)}

/* top bar */
.topbar{
  background:var(--surface-2);font-size:.85rem;color:#5F5F5F;
  border-bottom:1px solid var(--line);
}
.topbar__in{display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:42px}
.topbar__notice{margin:0;text-align:center;flex:0 1 auto;color:inherit}
.topbar__list{display:flex;gap:18px}
.topbar__list a{text-transform:uppercase;font-size:.78rem;letter-spacing:.04em}
.topbar__list a:hover,.topbar__phone:hover{color:var(--gold-ink)}
.topbar__phone{display:inline-flex;align-items:center;gap:7px;color:inherit;font-weight:500}
/* Equal side cells, or the notice centres on the space left over rather than
   on the bar — the phone is wider than the icons. */
.topbar__left,.topbar__side{flex:1 1 0}
.topbar__nav{flex:0 0 auto}
.topbar__left{display:flex;align-items:center;gap:16px;justify-content:flex-start}
.topbar__side{display:flex;align-items:center;justify-content:flex-end}
.topbar__socials{display:flex;align-items:center;gap:12px}
.topbar__socials a{
  display:grid;place-items:center;width:30px;height:30px;
  color:var(--ink);transition:color .16s var(--ease);
}
/* Outline icons this small read as grey smudges at the set's 1.6 stroke. */
.topbar__socials .ico{stroke-width:1.85}
.topbar__socials a:hover{color:var(--gold-ink)}
@media (max-width:900px){
  .topbar__left,.topbar__side{display:none}
  .topbar__notice{font-size:.79rem}
}

/* main row */
.header-main{border-bottom:1px solid var(--line)}
.header-main__in{
  display:grid;grid-template-columns:auto 1fr auto;align-items:center;
  gap:12px;min-height:var(--header-h);
}
.header-main__search{display:none}
.header-main__brand{display:flex;justify-content:center}
.header-main__tools{display:flex;align-items:center;gap:2px;justify-self:end}

.brand__img{width:auto}
.brand--header .brand__img{height:34px}
.brand--footer .brand__img{height:38px;width:auto}

.icon-btn{
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  width:46px;height:46px;color:var(--ink);
  transition:color .16s var(--ease);
}
/* The icon set draws at 1.6; at this size that reads as a faint outline. */
.header-main__tools .icon-btn .ico,
.icon-btn--menu .ico{stroke-width:1.8}
.icon-btn:hover{color:var(--gold-ink)}
.icon-btn__badge{
  position:absolute;top:3px;right:1px;min-width:18px;height:18px;padding:0 4px;
  display:grid;place-items:center;border-radius:9px;
  background:var(--ink);color:#fff;
  font-size:.64rem;font-weight:700;line-height:1;
}
.icon-btn__badge.is-empty{display:none}
.js-search-open{display:inline-flex}

/* primary nav */
.nav{background:var(--surface);border-bottom:1px solid var(--line);display:none}
.nav__list{display:flex;justify-content:center;flex-wrap:wrap}
.nav__list>.lvl-0{position:relative}
.menu-link--top{
  display:flex;align-items:center;gap:5px;padding:14px 16px;
  font-size:.76rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  color:var(--ink);transition:color .16s var(--ease);
}
.menu-link--top::after{
  content:"";position:absolute;left:16px;right:16px;bottom:9px;height:2px;
  background:var(--gold-grad);transform:scaleX(0);transform-origin:left;
  transition:transform .22s var(--ease);
}
.lvl-0:hover>.menu-link--top,
.lvl-0.current-menu-item>.menu-link--top{color:var(--gold-ink)}
.lvl-0:hover>.menu-link--top::after,
.lvl-0.current-menu-item>.menu-link--top::after{transform:scaleX(1)}
.menu-link--top .ico{opacity:.45}
.nav .sub-toggle{display:none}

/* mega dropdown */
.nav .sub--l1{
  position:absolute;top:100%;left:50%;transform:translate(-50%,8px);
  min-width:230px;padding:18px 8px;
  background:var(--surface);border:1px solid var(--line);border-top:2px solid var(--gold);
  box-shadow:var(--shadow-lg);
  opacity:0;visibility:hidden;transition:opacity .18s var(--ease),transform .18s var(--ease),visibility .18s;
}
.nav .lvl-0:hover>.sub--l1,
.nav .lvl-0:focus-within>.sub--l1{opacity:1;visibility:visible;transform:translate(-50%,0)}

/* A mega panel is as wide as the columns it actually holds — spanning the whole
   nav container made a nine-link menu look like a billboard. The walker sets
   the column count from the number of links (or the sub-groups, when there are
   any), so the width follows the content. */
.nav>.container{position:relative}
.nav .is-mega>.sub--l1{
  --mega-cols:3;
  left:0;right:auto;
  width:calc(var(--mega-cols) * 200px + 52px);
  min-width:0;max-width:calc(100vw - 32px);
  transform:translate(0,8px);
}
.nav .is-mega--cols-2>.sub--l1{--mega-cols:2}
.nav .is-mega--cols-3>.sub--l1{--mega-cols:3}
.nav .is-mega--cols-4>.sub--l1{--mega-cols:4}
/* Anchored to its own item now that it is narrow, so the last two items open
   right-aligned — that is where a panel would otherwise run off the bar. */
.nav__list>.lvl-0.is-mega:nth-last-child(-n+2)>.sub--l1{left:auto;right:0}
.nav .is-mega:hover>.sub--l1,
.nav .is-mega:focus-within>.sub--l1{transform:translate(0,0)}
.nav .is-mega .sub__list{
  display:grid;grid-template-columns:repeat(var(--mega-cols),minmax(0,1fr));
  gap:2px 22px;padding:0 18px;
}
.nav .sub__list>li>.menu-link{
  display:block;padding:8px 12px;
  font-size:.85rem;color:var(--text-2);transition:color .14s var(--ease),background-color .14s var(--ease);
}
/* In a mega panel, a column that has its own sub-list is a heading; one that
   does not is just a link, and should not shout like a heading. */
.nav .is-mega .sub__list>li:has(.sub--l2)>.menu-link{
  padding-left:0;font-weight:700;font-size:.74rem;letter-spacing:.06em;
  text-transform:uppercase;color:var(--ink);
}
.nav .is-mega .sub__list>li:not(:has(.sub--l2))>.menu-link{
  padding:7px 10px;font-size:.84rem;color:var(--text-2);
}
.nav .is-mega .sub__list>li:not(:has(.sub--l2))>.menu-link:hover{
  color:var(--gold-ink);background:var(--surface-2);
}
.nav .sub__list>li>.menu-link:hover{color:var(--gold-ink);background:var(--surface-2)}
.nav .sub--l2{margin:2px 0 14px}
.nav .sub--l2 .menu-link{
  display:block;padding:5px 0;font-size:.83rem;color:var(--text-2);
  transition:color .14s var(--ease),padding-left .14s var(--ease);
}
.nav .sub--l2 .menu-link:hover{color:var(--gold-ink);padding-left:5px}
.nav .sub--l2 .ico,.nav .is-mega>.sub--l1 .ico{display:none}

@media (min-width:1024px){
  :root{--header-h:82px}
  .nav{display:block}
  /* Logo left, search centred, tools right. Equal 1fr side columns are what
     centre the search on the header rather than on whatever space the logo
     leaves — the logo and the tools are not the same width. */
  .header-main__in{grid-template-columns:1fr auto 1fr;gap:28px}
  .header-main__brand{justify-content:flex-start}
  .header-main__search{display:block;justify-self:center;width:clamp(260px,32vw,400px)}
  .icon-btn--menu,.js-search-open{display:none}
  .brand--header .brand__img{height:44px}
}

/* search field */
.search-form{position:relative;display:flex;align-items:center}
.search-form__field{
  width:100%;height:42px;padding:0 44px 0 18px;
  background:var(--surface-2);border:1px solid var(--line);
  border-radius:999px;color:var(--ink);font-size:.84rem;line-height:42px;
  transition:border-color .16s var(--ease),background-color .16s var(--ease),box-shadow .16s var(--ease);
}
.search-form__field::placeholder{color:var(--text-3)}
.search-form__field:focus{
  outline:none;border-color:var(--gold);background:var(--surface);
  box-shadow:0 0 0 3px rgba(200,148,52,.14);
}
/* The pill's own corner keeps the button inside the shape. */
.search-form__submit{
  position:absolute;right:4px;display:grid;place-items:center;
  width:34px;height:34px;border-radius:50%;color:var(--text-2);
  transition:color .14s var(--ease),background-color .14s var(--ease);
}
.search-form__submit:hover{color:var(--gold-ink);background:rgba(200,148,52,.1)}

/* search overlay (mobile) */
.search-overlay{
  position:absolute;inset:auto 0 auto 0;top:100%;z-index:70;
  background:var(--surface);border-bottom:1px solid var(--line);
  padding:12px 0;box-shadow:var(--shadow-md);
}
.search-overlay__in{display:flex;align-items:center;gap:8px}
.search-overlay .search-form{flex:1}

/* ------------------------------------------------------------- drawers -- */
.drawer{position:fixed;inset:0;z-index:200}
/* The scrim comes after the panel in the markup and both were z-index:auto, so
   the scrim painted over the panel — every tap inside an open drawer landed on
   the scrim, which carries the close handler. Checkout and the whole mobile
   menu were unclickable. Stack them explicitly. */
.drawer__scrim{
  position:absolute;inset:0;z-index:1;
  background:rgba(17,17,17,.42);opacity:0;transition:opacity .28s var(--ease);
}
.drawer__panel{
  z-index:2;
  position:absolute;top:0;bottom:0;left:0;width:min(340px,86vw);
  display:flex;flex-direction:column;background:var(--surface);color:var(--ink);
  transform:translateX(-100%);transition:transform .3s var(--ease);
  box-shadow:var(--shadow-lg);
}
.drawer--right .drawer__panel{left:auto;right:0;transform:translateX(100%);width:min(390px,92vw)}
.drawer.is-open .drawer__scrim{opacity:1}
.drawer.is-open .drawer__panel{transform:translateX(0)}

.drawer__head{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px 16px;border-bottom:1px solid var(--line);flex:0 0 auto;
}
.drawer__title{margin:0;font-size:.95rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--ink)}
.drawer__head .brand__img{height:30px}
.drawer__body{flex:1;overflow-y:auto;overscroll-behavior:contain;padding:0 0 24px}

.drawer__list .menu-link{
  display:flex;align-items:center;padding:13px 18px;
  font-size:.88rem;font-weight:500;color:var(--text-2);
  border-bottom:1px solid var(--line);
}
.drawer__list .lvl-0>.menu-link{
  text-transform:uppercase;font-size:.78rem;font-weight:700;
  letter-spacing:.06em;color:var(--ink);
}
.drawer__list .menu-link>.ico{display:none}
.drawer__list li{position:relative}
.drawer__list .sub-toggle{
  display:grid;place-items:center;position:absolute;top:0;right:0;
  width:48px;height:47px;color:var(--text-3);
  transition:transform .2s var(--ease);
}
.drawer__list .sub-toggle[aria-expanded="true"]{transform:rotate(90deg);color:var(--gold-ink)}
.drawer__list .sub{display:none;background:var(--surface-2)}
.drawer__list .sub.is-open{display:block}
.drawer__list .sub .menu-link{padding-left:34px;font-weight:400;text-transform:none;color:var(--text-2)}
.drawer__list .sub .sub .menu-link{padding-left:50px;font-size:.84rem}
body.is-locked{overflow:hidden}

/* ---------------------------------------------------------------- hero -- */
.hero{position:relative;background:var(--surface-2);overflow:hidden}
.hero__track{position:relative;display:grid}
.hero__slide{
  grid-area:1/1;position:relative;display:grid;align-items:center;
  min-height:clamp(380px,50vw,540px);
  opacity:0;visibility:hidden;transition:opacity .6s var(--ease),visibility .6s;
}
.hero__slide.is-active{opacity:1;visibility:visible}
.hero:not(.hero--slider) .hero__slide{opacity:1;visibility:visible}

.hero__media{position:absolute;inset:0}
.hero__img{width:100%;height:100%;object-fit:cover;object-position:center}
/* The copy side needs a scrim so the words stay readable whatever the
   photograph happens to be — which way it goes depends on the slide's tone.
   A white wash suits a pale image; on a richly coloured one it just drains the
   colour, so those slides darken instead and use light text. */
.hero__slide--dark .hero__media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.95) 0%,rgba(255,255,255,.82) 34%,rgba(255,255,255,.25) 62%,rgba(255,255,255,0) 82%);
}
.hero__slide--light .hero__media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(26,15,10,.74) 0%,rgba(26,15,10,.52) 34%,rgba(26,15,10,.16) 64%,rgba(26,15,10,0) 84%);
}

/* The scrims above fade out horizontally, which works while the copy occupies
   the left half. On a narrow screen the text runs nearly edge to edge and its
   tail lands past the fade — the gold eyebrow measured 2.9:1 there. Below the
   breakpoint the wash goes mostly flat so it covers the full width. */
@media (max-width:900px){
  .hero__slide--dark .hero__media::after{
    background:linear-gradient(180deg,rgba(255,255,255,.9) 0%,rgba(255,255,255,.84) 60%,rgba(255,255,255,.78) 100%);
  }
  .hero__slide--light .hero__media::after{
    background:linear-gradient(180deg,rgba(26,15,10,.7) 0%,rgba(26,15,10,.6) 60%,rgba(26,15,10,.52) 100%);
  }
}

/* Light-tone slides: invert the type and the button. */
.hero__slide--light .hero__title{color:#fff}
.hero__slide--light .hero__text{color:rgba(255,255,255,.86)}
.hero__slide--light .hero__eyebrow{color:var(--gold-soft)}
.hero__slide--light .btn--gold{background:#fff;color:var(--ink)}
.hero__slide--light .btn--gold:hover{background:var(--gold-soft);color:var(--ink)}
.hero__media--pattern{
  background:
    radial-gradient(900px 420px at 12% 40%,rgba(200,148,52,.16),transparent 62%),
    radial-gradient(680px 380px at 88% 78%,rgba(124,47,168,.07),transparent 60%),
    linear-gradient(120deg,#FDFBF7 0%,#F5F1E8 55%,#FAF7F1 100%);
}
.hero__media--pattern::after{display:none}
/* No photograph behind the placeholder, so a light-tone slide would put white
   text on a cream field. Force it back to dark type. */
.hero__slide--light .hero__media--pattern~.hero__inner .hero__title{color:var(--ink)}
.hero__slide--light .hero__media--pattern~.hero__inner .hero__text{color:var(--text-2)}
.hero__slide--light .hero__media--pattern~.hero__inner .hero__eyebrow{color:var(--gold-ink)}
.hero__slide--light .hero__media--pattern~.hero__inner .btn--gold{background:var(--ink);color:#fff}

.hero__inner{position:relative;z-index:2;width:100%}
.hero__inner--center{text-align:center}
.hero__inner--center .hero__copy{margin-inline:auto}
.hero__inner--right{display:flex;justify-content:flex-end;text-align:right}
.hero__slide--dark .hero__inner--right .hero__media::after,
.hero__slide--dark .hero__inner--center .hero__media::after{background:rgba(255,255,255,.72)}
.hero__slide--light .hero__inner--right .hero__media::after,
.hero__slide--light .hero__inner--center .hero__media::after{background:rgba(26,15,10,.5)}
.hero__copy{max-width:560px;padding:44px 0}

.hero__eyebrow{
  margin:0 0 14px;font-size:.72rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--gold-ink);
}
.hero__title{
  margin:0 0 14px;font-size:clamp(1.9rem,4.6vw,3.1rem);line-height:1.1;
  font-weight:700;letter-spacing:-.02em;color:var(--ink);text-wrap:balance;
}
.hero__text{margin:0 0 28px;font-size:clamp(.92rem,1.3vw,1.02rem);color:var(--text-2);max-width:46ch}
.hero__inner--center .hero__text{margin-inline:auto}

.hero__nav{
  position:absolute;top:50%;translate:0 -50%;z-index:3;
  display:none;place-items:center;width:44px;height:44px;
  background:rgba(255,255,255,.9);color:var(--ink);
  border:1px solid var(--line-2);
  transition:background-color .18s var(--ease),color .18s var(--ease);
}
.hero__nav:hover{background:var(--ink);color:#fff;border-color:var(--ink)}
.hero__nav--prev{left:16px;rotate:180deg}
.hero__nav--next{right:16px}
@media (min-width:768px){.hero__nav{display:grid}}

.hero__dots{position:absolute;left:0;right:0;bottom:18px;z-index:3;display:flex;justify-content:center;gap:8px}
.hero__dot{
  width:26px;height:3px;background:rgba(17,17,17,.2);
  transition:background .2s var(--ease),width .2s var(--ease);
}
.hero__dot.is-active{width:40px;background:var(--gold-grad)}

/* ----------------------------------------------------------------- usp -- */
.usp{background:var(--surface);border-bottom:1px solid var(--line)}
.usp__grid{display:grid;grid-template-columns:repeat(2,1fr)}
.usp__item{
  display:flex;align-items:center;gap:11px;
  padding:17px 12px;background:var(--surface);
}
.usp__item+.usp__item{border-top:1px solid var(--line)}
.usp__item:nth-child(2){border-top:0}
.usp__item:nth-child(even){border-left:1px solid var(--line)}
.usp__icon{
  display:grid;place-items:center;flex:0 0 auto;width:40px;height:40px;
  border-radius:50%;background:var(--surface-2);color:var(--gold-ink);
}
.usp__copy{display:flex;flex-direction:column;min-width:0}
.usp__copy strong{font-size:.84rem;color:var(--ink);font-weight:600}
.usp__copy small{font-size:.74rem;color:var(--text-3)}
@media (min-width:900px){
  .usp__grid{grid-template-columns:repeat(4,1fr)}
  .usp__item{justify-content:center;padding:20px 12px;border-top:0}
  .usp__item+.usp__item{border-left:1px solid var(--line)}
}

/* ------------------------------------------------------ category cards -- */
.cat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media (min-width:640px){.cat-grid{grid-template-columns:repeat(3,1fr)}}
@media (min-width:1024px){.cat-grid{grid-template-columns:repeat(4,1fr);gap:22px}}

.cat-card__link{
  display:block;background:var(--surface);border:1px solid var(--line);
  transition:border-color .2s var(--ease),box-shadow .2s var(--ease);
}
.cat-card__link:hover{border-color:var(--gold);box-shadow:var(--shadow-md)}
.cat-card__media{display:block;position:relative;aspect-ratio:4/5;overflow:hidden;background:var(--surface-2)}
.cat-card__img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .6s var(--ease);
}
.cat-card__link:hover .cat-card__img{transform:scale(1.05)}
.cat-card__ph{
  display:grid;place-items:center;width:100%;height:100%;
  font-size:3.2rem;font-weight:700;
  background-image:var(--gold-grad);-webkit-background-clip:text;background-clip:text;color:transparent;
}
/* Label sits below the image on white, the way the reference does it —
   no dark overlay to fight the light palette. */
.cat-card__body{
  display:flex;flex-direction:column;gap:2px;padding:13px 14px;
  border-top:1px solid var(--line);text-align:center;
}
.cat-card__name{font-size:.94rem;font-weight:600;color:var(--ink);line-height:1.3}
.cat-card__count{font-size:.74rem;color:var(--text-3)}

/* -------------------------------------------------------------- footer -- */
.site-footer{background:var(--surface-2);color:var(--text-2);margin-top:56px;border-top:1px solid var(--line)}
.footer-top{padding:48px 0 36px}
.footer-top__in{display:grid;gap:34px}
@media (min-width:700px){.footer-top__in{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.footer-top__in{grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px}}

.footer-brand__text{margin:16px 0 18px;font-size:.86rem;line-height:1.7;max-width:34ch}

/* Contact lives under the brand blurb: the number leads, the rest is quiet. */
.footer-contact{margin:0 0 20px}
.footer-contact li{margin-bottom:7px;font-size:.87rem;line-height:1.6}
.footer-contact a{color:var(--text-2)}
.footer-contact a:hover{color:var(--gold-ink)}
.footer-contact__tel a{font-size:.98rem;font-weight:700;color:var(--ink)}

.footer-links li{margin-bottom:10px;font-size:.87rem}
.footer-links a{color:var(--text-2)}
.footer-links a:hover{color:var(--gold-ink)}
.socials{display:flex;gap:8px}
.socials a{
  display:grid;place-items:center;width:38px;height:38px;
  border:1px solid var(--line-2);color:var(--ink);
  transition:background .18s var(--ease),color .18s var(--ease),border-color .18s var(--ease);
}
.socials a:hover{background:var(--ink);color:#fff;border-color:var(--ink)}

.site-footer .widget-title{
  margin:0 0 14px;font-size:.78rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;color:var(--ink);
}
.site-footer .widget{margin-bottom:26px}
.site-footer .widget:last-child{margin-bottom:0}
.site-footer ul li{margin-bottom:9px;font-size:.87rem}
.site-footer a:hover{color:var(--gold-ink)}

.contact-list li{display:flex;gap:9px;align-items:flex-start;line-height:1.5}
.contact-list .ico{flex:0 0 auto;margin-top:2px;color:var(--gold-ink)}

.footer-bottom{padding:16px 0;border-top:1px solid var(--line)}
.footer-bottom__in{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px;
  font-size:.78rem;color:var(--text-3);
}
.copyright{margin:0}
.footer-note{margin:0}
.footer-nav__list{display:flex;flex-wrap:wrap;gap:18px}

.to-top{
  position:fixed;right:16px;bottom:16px;z-index:90;
  display:grid;place-items:center;width:42px;height:42px;
  background:var(--ink);color:#fff;rotate:-90deg;
  box-shadow:var(--shadow-lg);
  opacity:0;translate:0 10px;transition:opacity .25s var(--ease),translate .25s var(--ease);
}
.to-top.is-visible{opacity:1;translate:0}

/* The bag drawer is part of the header on every page, so these live here
   rather than in woocommerce.css — that sheet only loads on shop pages,
   and the drawer was rendering unstyled everywhere else. */
/* ------------------------------------------------------------ mini cart -- */
.widget_shopping_cart_content{padding:0 18px 18px}
.fgc-mini{margin:0;padding:6px 0 0;list-style:none}
/* Woo floats every `ul.cart_list li img` right and shrinks it to 32px. The
   thumbnail is its own grid cell here, so the float has to go explicitly. */
.woocommerce ul.cart_list li.fgc-mini__item img,
.woocommerce ul.product_list_widget li.fgc-mini__item img,
.fgc-mini__media img{
  float:none;width:62px;height:78px;object-fit:cover;display:block;margin:0;
  border-radius:10px;background:var(--surface-2);box-shadow:none;
}
.woocommerce ul.cart_list li.fgc-mini__item,
.fgc-mini__item{
  display:grid;grid-template-columns:62px minmax(0,1fr) 28px;gap:0 12px;align-items:start;
  padding:14px 0;margin:0;border-bottom:1px solid #EEF1F5;list-style:none;
}
.fgc-mini__item:last-child{border-bottom:0}
.fgc-mini__media{grid-column:1}
.fgc-mini__info{grid-column:2;min-width:0;display:flex;flex-direction:column;gap:3px}
.fgc-mini__name{font-size:.89rem;font-weight:600;line-height:1.35;color:var(--ink)}
.fgc-mini__name a{color:inherit;text-decoration:none}
.fgc-mini__name a:hover{color:var(--gold-ink)}
.fgc-mini__meta{font-size:.78rem;color:var(--text-2);line-height:1.5}
.fgc-mini__meta p,.fgc-mini__meta dl{margin:0}
.fgc-mini__meta dt,.fgc-mini__meta dd{display:inline;margin:0;font-weight:400}
.fgc-mini__meta dd{margin-right:7px}
.fgc-mini__line{margin-top:2px;font-size:.84rem;font-weight:600;color:var(--ink)}
.fgc-mini__line .amount{font-weight:600}

.woocommerce .fgc-mini__item a.remove,
.fgc-mini__remove{
  grid-column:3;justify-self:end;
  display:grid;place-items:center;width:26px;height:26px;border-radius:50%;
  font-size:1.15rem;line-height:1;text-decoration:none;
  color:var(--text-3)!important;background:none;
  transition:background-color .16s var(--ease),color .16s var(--ease);
}
.woocommerce .fgc-mini__item a.remove:hover,
.fgc-mini__remove:hover{background:rgba(214,64,64,.1);color:var(--warn)!important}

.fgc-mini__total{
  display:flex;align-items:baseline;justify-content:space-between;gap:12px;
  margin:0;padding:16px 0 0;border-top:1px solid #EEF1F5;
  font-size:.9rem;color:var(--text-2);
}
.fgc-mini__total strong{font-weight:500;color:var(--text-2)}
.fgc-mini__total .amount{font-size:1.16rem;font-weight:700;color:var(--ink)}

.fgc-mini__buttons{display:grid;gap:10px;margin:0;padding:16px 0 0}
.woocommerce .fgc-mini__buttons a.button,
.fgc-mini__buttons .button{
  display:block;width:100%;padding:14px 18px;border-radius:999px;text-align:center;
  background:var(--surface);border:1px solid var(--fgc-line,#E6EAEF);color:var(--ink);
  font-size:.86rem;font-weight:600;letter-spacing:0;text-transform:none;
  transition:background-color .16s var(--ease),border-color .16s var(--ease),color .16s var(--ease);
}
.woocommerce .fgc-mini__buttons a.button:hover,
.fgc-mini__buttons .button:hover{background:var(--surface-2);border-color:var(--line-2);color:var(--ink)}
/* Checkout is the one thing this drawer is for. */
.woocommerce .fgc-mini__buttons a.checkout,
.fgc-mini__buttons .checkout{
  background:var(--gold-grad);border:0;color:#241703;font-weight:700;
  box-shadow:0 6px 18px rgba(138,90,27,.26);
}
.woocommerce .fgc-mini__buttons a.checkout:hover,
.fgc-mini__buttons .checkout:hover{
  background:var(--gold-grad);color:#241703;transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(138,90,27,.34);
}
.fgc-mini__note{margin:12px 0 0;text-align:center;font-size:.78rem;color:var(--text-3)}

.fgc-mini__empty{padding:52px 10px;text-align:center}
/* The icon set renders as <svg>, and the base reset makes every svg a block —
   so `text-align:center` never moved it and it sat against the left edge. */
.fgc-mini__empty .ico,
.fgc-cart-empty .ico,
.fgc-orders__empty .ico{display:block;margin-inline:auto}
.fgc-mini__empty .ico{color:var(--gold-ink)}
.fgc-mini__empty-title{margin:12px 0 18px;font-size:1rem;font-weight:600;color:var(--ink)}
.fgc-mini__empty-btn{
  display:inline-block;padding:13px 28px;border-radius:999px;
  background:var(--gold-grad);color:#241703;font-size:.86rem;font-weight:700;
  box-shadow:0 6px 18px rgba(138,90,27,.26);
}
.woocommerce-mini-cart__empty-message{padding:36px 0;text-align:center;color:var(--text-3);font-size:.9rem}

/* the drawer is busy while a row is being removed */
.drawer__body.is-busy{opacity:.55;pointer-events:none;transition:opacity .18s var(--ease)}

/* --------------------------------------------------- breadcrumbs, page -- */
.crumbs{background:var(--surface-2);border-bottom:1px solid var(--line);font-size:.78rem}
.crumbs ol{display:flex;flex-wrap:wrap;gap:6px;padding:11px 0;color:var(--text-3)}
.crumbs li+li::before{content:"/";margin-right:6px;color:var(--line-2)}
.crumbs a:hover{color:var(--gold-ink)}
.crumbs [aria-current]{color:var(--ink)}

.page-head{padding:36px 0 22px;text-align:center}
.page-head__title{margin:0}
.page-head__desc{color:var(--text-2);font-size:.92rem}

.entry__media{margin:0 0 24px;overflow:hidden}
.entry__meta{color:var(--text-3);font-size:.82rem;margin:0}
.entry-content{font-size:.98rem;line-height:1.75;color:var(--text-2)}
.entry-content h2,.entry-content h3{margin-top:1.6em}
.entry-content a{color:var(--gold-ink);text-decoration:underline;text-underline-offset:2px}
.entry-content blockquote{
  margin:1.6em 0;padding:4px 0 4px 20px;border-left:3px solid var(--gold);
  font-size:1.06rem;color:var(--ink);
}

.post-grid{display:grid;gap:22px;padding-bottom:20px}
@media (min-width:640px){.post-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.post-grid{grid-template-columns:repeat(3,1fr)}}
.post-card__link{display:block;background:var(--surface);border:1px solid var(--line);height:100%;transition:border-color .2s var(--ease),box-shadow .2s var(--ease)}
.post-card__link:hover{border-color:var(--gold);box-shadow:var(--shadow-md)}
.post-card__media{display:block;aspect-ratio:16/10;overflow:hidden}
.post-card__img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.post-card__link:hover .post-card__img{transform:scale(1.04)}
.post-card__body{display:block;padding:16px}
.post-card__date{font-size:.74rem;color:var(--text-3);letter-spacing:.04em;text-transform:uppercase}
.post-card__title{margin:6px 0 6px;font-size:1.02rem}
.post-card__excerpt{font-size:.86rem;color:var(--text-2)}

.pagination{display:flex;justify-content:center;padding:26px 0}
.pagination .nav-links{display:flex;gap:6px;flex-wrap:wrap}
.pagination .page-numbers{
  display:grid;place-items:center;min-width:38px;height:38px;padding:0 12px;
  background:var(--surface);border:1px solid var(--line-2);
  font-size:.85rem;color:var(--text-2);transition:all .16s var(--ease);
}
.pagination .page-numbers:hover{border-color:var(--ink);color:var(--ink)}
.pagination .current{background:var(--ink);border-color:var(--ink);color:#fff;font-weight:600}

.error-404{padding:70px 0 90px;text-align:center;max-width:560px;margin-inline:auto}
.error-404__code{
  margin:0;font-size:clamp(4.5rem,16vw,7.5rem);line-height:1;font-weight:700;
  background:var(--gold-grad);-webkit-background-clip:text;background-clip:text;color:transparent;
}
.error-404__title{margin:8px 0 10px}
.error-404__text{color:var(--text-2);margin-bottom:24px}
.error-404 .search-form{margin-bottom:22px}
.empty{padding:50px 0;text-align:center;color:var(--text-2)}

/* ------------------------------------------------------------ comments -- */
.comments{margin-top:44px;padding-top:32px;border-top:1px solid var(--line)}
.comments__title{font-size:1.12rem;margin-bottom:20px}
.comments__list{margin-bottom:28px}
.comments__list li{margin-bottom:18px}
.comments__list .children{margin:16px 0 0 28px}
.comment-body{background:var(--surface);border:1px solid var(--line);padding:16px}
.comment-meta{display:flex;align-items:center;gap:9px;margin-bottom:8px;font-size:.82rem}
.comment-meta .avatar{border-radius:50%}
.comment-metadata{color:var(--text-3);font-size:.76rem}
.comment-respond{background:var(--surface-2);border:1px solid var(--line);padding:22px}
.comment-respond .comment-reply-title{font-size:1.02rem;margin-bottom:14px}
.comment-form p{margin-bottom:13px}
.comment-form label{display:block;font-size:.78rem;font-weight:600;color:var(--ink);margin-bottom:5px}
.comment-form input[type=text],.comment-form input[type=email],.comment-form input[type=url],.comment-form textarea{
  width:100%;padding:11px 13px;background:var(--surface);
  border:1px solid var(--line-2);font-size:.92rem;
}
.comment-form textarea:focus,.comment-form input:focus{
  outline:none;border-color:var(--ink);
}
.comment-form .submit{
  padding:12px 26px;background:var(--ink);color:#fff;border:0;cursor:pointer;
  font-size:.8rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;
}
.comment-form .submit:hover{background:var(--gold-ink)}
.comments__closed{color:var(--text-3);font-size:.86rem}
