/* GENERATED by build-chrome.mjs from page.css — do not hand-edit. */

/* --- tokens --------------------------------------------------------------- */
:root {
  --ink: #2B2B28;
  --ink-soft: #43423C;
  /* Meridian spends --accent on secondary body text, so it must stay neutral;
     the champagne lives in --gold-ink and --champagne. 6.05:1 on --paper. */
  --accent: #5F5A52;
  --gold-ink: #7E6029;
  --muted: #7A756C;
  --paper: #F4EFE8;
  --card: #FBF8F4;
  --line: #DCD3C6;
  --line-2: #E7E0D6;
  --plat-a: #EFE8DF;
  --plat-b: #E7E0D6;
  --gold: #C9AE7E;

  --shadow: 0 1px 2px rgba(43, 43, 40, .06), 0 12px 32px -12px rgba(43, 43, 40, .16);
  --shadow-lift: 0 2px 5px rgba(43, 43, 40, .07), 0 24px 52px -16px rgba(43, 43, 40, .24);
  --r: 16px;
  --r-sm: 10px;

  --f-disp: 'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body: 'Jost', 'Futura', 'Century Gothic', 'Helvetica Neue', Helvetica, sans-serif;

  --champagne: #C9AE7E;
  --shell: 1240px;
  --gut: clamp(20px, 5vw, 40px);
  --sec-y: clamp(64px, 8.4vw, 122px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- chrome reset (scoped; see build-chrome.mjs) -------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.62;
  font-feature-settings: 'kern' 1, 'liga' 1, 'cv05' 1;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }

/* Scoped on purpose — sitewide these strip WooCommerce and the legal pages.
 *
 * Wrapped in :where() so they keep the ZERO specificity the bare element
 * selectors had. Written plainly, `.hdr a` scores (0,2,0) and beats `.btn--ink`
 * (0,1,0), which repaints the header's Shop button ink-on-ink — invisible. */
:where(.hdr, .ftr) :is(img, svg) { display: block; max-width: 100%; }
:where(.hdr, .ftr) :is(h1, h2, h3, p, ul, ol) { margin: 0; }
:where(.hdr, .ftr) :is(ul, ol) { padding: 0; list-style: none; }
:where(.hdr, .ftr) a { color: inherit; text-decoration: none; }
:where(.hdr, .ftr) button { font: inherit; color: inherit; }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 90;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 8px;
  font-size: .875rem; transition: top .2s var(--ease);
}
.skip:focus-visible { top: 12px; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.ftr :focus-visible, .pst-topbar :focus-visible { outline-color: #fff; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }

/* --- shared type ---------------------------------------------------------- */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: .6875rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: 18px;
}
.eyebrow .rule { width: 26px; height: 1px; background: var(--line); flex: none; }
.eyebrow--c { justify-content: center; }

.h2 {
  font-family: var(--f-disp); font-weight: 500;
  font-size: clamp(1.85rem, 3.3vw, 2.85rem);
  line-height: 1.06; letter-spacing: -.028em; color: var(--ink);
}
.lede { color: var(--accent); font-size: 1.0625rem; line-height: 1.66; max-width: 46ch; margin-top: 16px; }

.sec { padding-block: var(--sec-y); }
.sechead { margin-bottom: clamp(32px, 4.4vw, 56px); }
.sechead--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.sechead--center { text-align: center; max-width: 640px; margin-inline: auto; }
.sechead__note { color: var(--accent); font-size: .9375rem; max-width: 42ch; margin-top: 14px; }
.sechead__note--c { margin-inline: auto; }
@media (min-width: 900px) {
  .sechead:not(.sechead--center):not(.sechead--row) {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
    gap: 40px; align-items: end;
  }
  .sechead:not(.sechead--center):not(.sechead--row) .sechead__note { margin-top: 0; padding-bottom: 6px; }
}

.sec__more { margin-top: clamp(28px, 3.4vw, 40px); }
.lnk {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 500; font-size: .9375rem; color: var(--ink);
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.lnk .ico { transition: transform .3s var(--ease); }
.lnk:hover { border-color: var(--ink); }
.lnk:hover .ico { transform: translateX(4px); }
.lnk--sm { font-size: inherit; padding: 0; border-bottom-color: var(--accent); }

.ico { fill: none; flex: none; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  font-family: var(--f-body); font-size: .9375rem; font-weight: 500; letter-spacing: -.005em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn--ink { background: var(--ink); color: #fff; box-shadow: 0 1px 2px rgba(43, 49, 56, .18); }
.btn--ink:hover { background: #1F252B; transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(43, 49, 56, .58); }
.btn--ink:active { transform: translateY(0); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: .875rem; }

/* --- compliance hooks ------------------------------------------------------ */
.pst-ribbon {
  background: #FBF7F0; color: #96671F; border-bottom: 1px solid #EDE1CD;
  font-size: .6875rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  text-align: center; padding: 8px 16px;
}
.pst-topbar {
  background: var(--ink); color: #C7CDD3;
  font-size: .6875rem; letter-spacing: .085em; text-transform: uppercase;
  text-align: center; padding: 9px 16px; line-height: 1.5;
}
@media (max-width: 620px) {
  .pst-ribbon { font-size: .625rem; letter-spacing: .1em; padding: 6px 14px; line-height: 1.45; }
  .pst-topbar { font-size: .625rem; letter-spacing: .06em; padding: 7px 14px; line-height: 1.45; }
}
.band--ruo { background: var(--paper); border-block: 1px solid var(--line); }
.pst-strip {
  padding-block: 22px; margin: 0;
  font-size: .8125rem; line-height: 1.6; color: var(--accent);
  text-align: center; max-width: 78ch; margin-inline: auto;
}
/* rule lives on .ftr__top so it spans the footer; the legal text keeps its measure */
.pst-legal {
  margin: 0; padding-top: 30px;
  font-size: .75rem; line-height: 1.72; color: #939CA5; max-width: 96ch;
}
.pst-copyright { margin: 16px 0 0; font-size: .75rem; color: #7B848D; letter-spacing: .01em; }

/* --- header --------------------------------------------------------------- */
/* Sticky, but pulled up by exactly the topbar's height (measured in page.js) so the
   RUO strip scrolls away and only the 72px bar pins. Without it, a topbar that wraps
   to two lines at 390px costs 14% of the viewport on every scroll. Falls back to a
   fully sticky header when JS is off, which is correct, just heavier. */
.hdr { position: sticky; top: calc(var(--tb-h, 0px) * -1); z-index: 60; }
.hdr__bar {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr__grid { display: flex; align-items: center; gap: 20px; min-height: 72px; }

.lockup { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.lockup__mark { color: var(--ink); transition: transform .6s var(--ease); }
.lockup:hover .lockup__mark { transform: rotate(-24deg); }
.lockup__words { display: flex; flex-direction: column; line-height: 1; }
.lockup__name {
  font-family: var(--f-disp); font-weight: 600; font-size: 1.09rem;
  letter-spacing: .13em; text-transform: uppercase;
}
.lockup__sub {
  font-size: .5625rem; font-weight: 500; letter-spacing: .235em; text-transform: uppercase;
  color: var(--accent); margin-top: 5px;
}

.nav { display: none; gap: 30px; margin-inline: auto; }
.nav a {
  position: relative; font-size: .9375rem; color: var(--ink-soft); padding-block: 12px;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.hdr__act { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.hdr__act .btn { display: none; }
.burger {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  transition: border-color .2s var(--ease);
}
.burger:hover { border-color: var(--ink); }
.burger__box { display: block; width: 17px; }
.burger__box i {
  display: block; height: 1.25px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger__box i + i { margin-top: 5px; }
.burger[aria-expanded="true"] .burger__box i:first-child { transform: translateY(3.1px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__box i:last-child { transform: translateY(-3.1px) rotate(-45deg); }

.mnav { background: #fff; border-bottom: 1px solid var(--line); }
.mnav .shell { display: flex; flex-direction: column; padding-block: 10px 22px; }
.mnav a {
  padding: 15px 0; border-bottom: 1px solid var(--line-2);
  font-family: var(--f-disp); font-size: 1.18rem; font-weight: 500; letter-spacing: -.01em;
}
.mnav__cta { border-bottom: 0; margin-top: 18px; justify-content: center; }

@media (min-width: 940px) {
  .nav { display: flex; }
  .hdr__act .btn { display: inline-flex; }
  .burger { display: none; }
  .mnav { display: none !important; }
}

/* --- footer ---------------------------------------------------------------- */
.ftr { background: var(--ink); color: #C7CDD3; padding-block: clamp(52px, 6vw, 82px) 40px; }
.ftr__top {
  display: grid; gap: clamp(36px, 4.4vw, 60px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (min-width: 900px) { .ftr__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); } }
.lockup--ftr { color: #fff; }
.lockup--ftr .lockup__mark { color: #fff; }
.lockup--ftr .lockup__sub { color: #8F98A1; }
.ftr__blurb { margin-top: 22px; font-size: .875rem; line-height: 1.68; color: #99A2AB; max-width: 40ch; }
.ftr__contact { margin-top: 22px; display: flex; flex-direction: column; gap: 7px; font-size: .875rem; }
.ftr__contact a { color: #fff; border-bottom-color: rgba(255, 255, 255, .3); }
.ftr__contact a:hover { border-bottom-color: #fff; }
.ftr__contact span { font-size: .75rem; color: #838C95; letter-spacing: .02em; }

.ftr__cols { display: grid; gap: 32px; }
@media (min-width: 520px) { .ftr__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.ftr__cols h3 {
  font-size: .6875rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px;
}
.ftr__cols li + li { margin-top: 3px; }
.ftr__cols a {
  font-size: .875rem; color: #99A2AB; line-height: 1.5;
  transition: color .2s var(--ease);
  display: inline-block; padding-block: 8px;
}
.ftr__cols a:hover { color: #fff; }

/* --- storefront additions to the concept header ---------------------------- */
.hdr__acct {
  width: 46px; height: 46px; display: grid; place-items: center;
  color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.hdr__acct:hover { border-color: var(--ink); color: var(--ink); }

.hdr__cart { display: flex; align-items: center; }
.hdr__cart .wc-block-mini-cart__button {
  display: grid; place-items: center;
  width: 46px; height: 46px; padding: 0;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-soft); cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.hdr__cart .wc-block-mini-cart__button:hover { border-color: var(--ink); color: var(--ink); }
.hdr__cart .wc-block-mini-cart__quantity-badge { display: grid; place-items: center; }
.hdr__cart .wc-block-mini-cart__badge {
  background: var(--gold-ink); color: #fff;
  font-size: .6875rem; font-weight: 600; line-height: 1;
}
.hdr__cartlink { font-size: .9375rem; color: var(--ink-soft); }

/* The concept footer had three link columns. A storefront needs a fourth for the
 * policy pages, and page.css pins the grid at repeat(3), so widen it here. */
@media (min-width: 520px) { .ftr__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .ftr__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }

@media (min-width: 1080px) {
  .hdr__act .btn { display: inline-flex; }
  .burger { display: none; }
}
