/* ==========================================================================
   Shop Gold Gift — shipgoldgift.org
   Single stylesheet for the whole site.

   Constraints this file is written against:
     - No external dependencies. No @import, no webfont URLs, no image URLs
       outside assets/img/, no third-party anything. System font stacks only.
       The paper grain is an inline SVG data URI, which is not a request.
     - Works when index.html is opened directly from disk, and when served
       from the site root. All asset paths are relative.
     - Mobile-first, semantic-HTML5 friendly, keyboard navigable.
     - No JavaScript anywhere. Every interaction is CSS or native HTML.

   Contents
     01. Design tokens
     02. Reset & base
     03. Typography
     04. Layout primitives
     05. Accessibility helpers
     06. Buttons, links & gold material
     07. Header / navigation
     08. Hero & medallion
     09. Assurance bar
     10. Section headers
     11. Collection cards
     12. Gift sets
     13. Process steps
     14. Standards / checklist
     15. Heritage band
     16. Client voices
     17. Accreditations
     18. Studio & hours
     19. FAQ (native details/summary)
     20. Call-to-action band
     21. Page header (interior pages)
     22. Prose (legal & long-form pages)
     23. Tables
     24. Forms
     25. Contact blocks
     26. Footer
     27. Responsive refinements
     28. Motion & print preferences
   ========================================================================== */

/* ==========================================================================
   01. DESIGN TOKENS
   Warm gold on a deep neutral base. Gold is treated as a material rather than
   a colour: it arrives as a gradient, a hairline or a foil, never as flat
   body text on a light surface — the darker gold steps exist for that.
   ========================================================================== */

:root {
  /* --- Neutrals: deep, warm-shifted blacks for the dark surfaces --------- */
  --ink-1000: #0a0908;
  --ink-950: #0f0d0a;
  --ink-900: #16130f;
  --ink-850: #1c1813;
  --ink-800: #241f19;
  --ink-700: #322b22;
  --ink-600: #443a2e;

  /* --- Neutrals: cream/sand for light surfaces and dark-surface text ----- */
  --cream-50: #fcfaf6;
  --cream-100: #f6f1e8;
  --cream-200: #ece4d6;
  --cream-300: #ddd2bf;
  --cream-400: #c3b7a1;

  /* --- Gold ramp -------------------------------------------------------- */
  --gold-100: #fdf6e4;
  --gold-200: #f7e7bd;
  --gold-300: #f0d89b;
  --gold-400: #e3c070;
  --gold-500: #c9a227;
  --gold-600: #a8842a;
  --gold-700: #8a6a1f;
  --gold-800: #6b5117;
  --gold-900: #4a3710;

  /* --- Text colours, by surface ---------------------------------------- */
  --text-on-dark: #f6f1e8;          /* 16.2:1 on --ink-900  */
  --text-on-dark-muted: #bcb3a4;    /*  9.0:1 on --ink-900  */
  --text-on-dark-faint: #91897a;    /*  5.4:1 on --ink-900  */
  --text-on-light: #1b1712;         /* 16.6:1 on --cream-50 */
  --text-on-light-muted: #554e3e;   /*  7.8:1 on --cream-50 */
  --text-on-light-faint: #756b59;   /*  5.0:1 on --cream-50, 4.8:1 on sand */
  --accent-on-dark: var(--gold-400);/*  9.5:1 on --ink-900  */
  --accent-on-light: var(--gold-700);/*  4.9:1 on --cream-50 */

  /* --- Lines & surfaces ------------------------------------------------ */
  --line-on-dark: rgba(227, 192, 112, 0.16);
  --line-on-dark-strong: rgba(227, 192, 112, 0.34);
  --line-on-light: rgba(107, 81, 23, 0.15);
  --line-on-light-strong: rgba(107, 81, 23, 0.3);
  --surface-card-dark: rgba(255, 255, 255, 0.028);
  --surface-card-dark-hover: rgba(255, 255, 255, 0.05);
  --surface-card-light: #ffffff;
  --surface-sand: #f8f3ea;
  --surface-sand-deep: #f2ebdd;

  /* --- Signature gradients --------------------------------------------- */
  --gold-gradient: linear-gradient(
    135deg,
    #fdf6e4 0%,
    #f0d89b 16%,
    #e3c070 34%,
    #c9a227 56%,
    #a8842a 78%,
    #7a5c18 100%
  );
  --gold-gradient-soft: linear-gradient(
    135deg,
    #f7e7bd 0%,
    #e3c070 38%,
    #c9a227 100%
  );
  /* A 1px rule that fades in from both ends — used as a section divider */
  --gold-hairline: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0) 0%,
    rgba(201, 162, 39, 0.5) 18%,
    rgba(240, 216, 155, 0.9) 50%,
    rgba(201, 162, 39, 0.5) 82%,
    rgba(201, 162, 39, 0) 100%
  );
  /* Border-image source for gradient card edges */
  --gold-edge: linear-gradient(
    160deg,
    rgba(240, 216, 155, 0.5) 0%,
    rgba(201, 162, 39, 0.16) 38%,
    rgba(201, 162, 39, 0.04) 62%,
    rgba(168, 132, 42, 0.28) 100%
  );

  /* --- Paper grain: inline SVG turbulence, no network request ----------- */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

  /* --- Type ------------------------------------------------------------ */
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino,
    "Book Antiqua", "Hoefler Text", Georgia, "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;

  --step--2: clamp(0.76rem, 0.75rem + 0.08vw, 0.81rem);
  --step--1: clamp(0.86rem, 0.84rem + 0.12vw, 0.94rem);
  --step-0: clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --step-1: clamp(1.16rem, 1.1rem + 0.34vw, 1.34rem);
  --step-2: clamp(1.42rem, 1.28rem + 0.78vw, 1.9rem);
  --step-3: clamp(1.76rem, 1.46rem + 1.5vw, 2.6rem);
  --step-4: clamp(2.15rem, 1.6rem + 2.7vw, 3.6rem);
  --step-5: clamp(2.6rem, 1.7rem + 4.2vw, 4.7rem);
  --step-6: clamp(3.1rem, 1.9rem + 5.6vw, 5.8rem);

  --tracking-tight: -0.018em;
  --tracking-display: -0.028em;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.14em;
  --tracking-widest: 0.22em;

  /* --- Space ----------------------------------------------------------- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6.5rem;

  --section-y: clamp(3.75rem, 2rem + 7.5vw, 7.5rem);
  --gutter: clamp(1.15rem, 0.6rem + 2.6vw, 2.5rem);
  --measure: 68ch;
  --shell: 1220px;
  --shell-narrow: 820px;

  /* --- Shape & depth --------------------------------------------------- */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 13, 10, 0.06),
    0 1px 3px rgba(15, 13, 10, 0.05);
  --shadow: 0 12px 34px -16px rgba(15, 13, 10, 0.3),
    0 2px 8px -3px rgba(15, 13, 10, 0.1);
  --shadow-lg: 0 40px 80px -36px rgba(15, 13, 10, 0.5),
    0 10px 24px -14px rgba(15, 13, 10, 0.22);
  --shadow-gold: 0 18px 40px -22px rgba(168, 132, 42, 0.55);
  --shadow-gold-lg: 0 28px 60px -26px rgba(168, 132, 42, 0.65);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Focus indicators use gold-700 on light surfaces (5.05:1 vs white) and
     gold-400 on dark ones (11.1:1 vs ink-950); both clear the 3:1 non-text
     minimum in WCAG 1.4.11. See the :focus-visible rules in section 05. */
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background-color: var(--ink-1000);
  color: var(--text-on-light);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

hr {
  border: 0;
  height: 1px;
  background: var(--line-on-light);
  margin: var(--space-7) 0;
}

::selection {
  background: var(--gold-500);
  color: var(--ink-950);
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
  font-optical-sizing: auto;
}

h1 {
  font-size: var(--step-5);
  letter-spacing: var(--tracking-display);
  line-height: 1.06;
}
h2 {
  font-size: var(--step-4);
  letter-spacing: var(--tracking-display);
}
h3 {
  font-size: var(--step-2);
}
h4 {
  font-size: var(--step-1);
}
h5,
h6 {
  font-size: var(--step-0);
  font-family: var(--font-sans);
  font-weight: 650;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

p {
  margin: 0 0 var(--space-4);
  text-wrap: pretty;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent-on-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold-800);
}

strong,
b {
  font-weight: 650;
}

small {
  font-size: var(--step--1);
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

/* Small caps-ish label used for eyebrows and section kickers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent-on-dark);
  margin: 0 0 var(--space-4);
}

/* A short gold rule leading into the label, the way a hallmark rule sits
   above a stamp. Collapses to nothing when the eyebrow is centred. */
.eyebrow::before {
  content: "";
  width: 1.85rem;
  height: 1px;
  flex: none;
  background: var(--gold-gradient-soft);
  opacity: 0.75;
}

.eyebrow--light {
  color: var(--accent-on-light);
}

.section-head--center .eyebrow::before {
  display: none;
}

/* Foil: the gradient-as-metal treatment. Used on a single emphatic word or
   phrase, never on a whole paragraph — at body sizes the gradient loses
   contrast against cream and the effect reads as a printing fault. */
.foil,
.hero__title em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .foil,
  .hero__title em {
    color: var(--gold-500);
    -webkit-text-fill-color: currentColor;
  }
}

/* Display-size lead paragraph — used directly under an h1/h2 */
.lede {
  font-size: var(--step-1);
  line-height: 1.62;
  color: var(--text-on-light-muted);
  max-width: 46ch;
}

.section--dark .lede,
.section--darker .lede {
  color: var(--text-on-dark-muted);
}

/* ==========================================================================
   04. LAYOUT PRIMITIVES
   ========================================================================== */

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

.shell--narrow {
  max-width: var(--shell-narrow);
}

.section {
  padding-block: var(--section-y);
}

.section--dark {
  background-color: var(--ink-900);
  color: var(--text-on-dark);
}

.section--darker {
  background-color: var(--ink-1000);
  color: var(--text-on-dark);
}

.section--sand {
  background-color: var(--surface-sand);
}

.section--sand-deep {
  background-color: var(--surface-sand-deep);
}

.section--cream {
  background-color: var(--cream-50);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--darker h1,
.section--darker h2,
.section--darker h3,
.section--darker h4 {
  color: var(--text-on-dark);
}

.section--dark p,
.section--darker p {
  color: var(--text-on-dark-muted);
}

.section--dark a,
.section--darker a {
  color: var(--accent-on-dark);
}

.section--dark a:hover,
.section--darker a:hover {
  color: var(--gold-200);
}

/* Every dark band carries a whisper of paper grain so large flat areas do not
   band on wide gamut displays. The SVG is inline, so this costs no request. */
.section--dark,
.section--darker,
.hero,
.site-footer {
  position: relative;
  isolation: isolate;
}

.section--dark::after,
.section--darker::after,
.hero::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.028;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

/* Top hairline that separates stacked sections */
.hairline {
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--gold-hairline);
  opacity: 0.7;
}

.grid {
  display: grid;
  gap: var(--space-5);
}

/* Grid and flex items default to min-width:auto, which means they refuse to
   shrink below their content's min-content width. A wide data table inside a
   column would therefore push the whole page wider than the viewport instead
   of scrolling inside its own .table-wrap. Setting min-width:0 restores the
   intended behaviour: columns stay inside the shell, and any element that
   declares overflow-x:auto actually gets to use it. */
.grid > *,
.split > *,
.split--sidebar > *,
.split--even > *,
.site-footer__grid > *,
.steps > *,
.stats > *,
.heritage__grid > *,
.voices > *,
.marks__list > *,
.assurance__list > * {
  min-width: 0;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
}

.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}

@media (min-width: 56rem) {
  .split--sidebar {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  }
  .split--even {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

/* ==========================================================================
   05. ACCESSIBILITY HELPERS
   ========================================================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 200;
  background: var(--gold-400);
  color: var(--ink-950);
  font-weight: 650;
  font-size: var(--step--1);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.16s ease-in;
}

.skip-link:focus {
  top: var(--space-4);
  color: var(--ink-950);
}

/* Focus indicator. Gold-500 is only 2.42:1 against a white card, below the 3:1
   that WCAG 1.4.11 requires for a non-text indicator, so the light-surface ring
   uses gold-700 (5.05:1 on white, 4.52:1 on sand) and the dark-surface ring
   uses gold-400 (11.1:1 on ink-950). */
:focus-visible {
  outline: 2px solid var(--gold-700);
  outline-offset: 2px;
}

.section--dark :focus-visible,
.section--darker :focus-visible,
.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--gold-400);
}

/* ==========================================================================
   06. BUTTONS, LINKS & GOLD MATERIAL
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  line-height: 1;
  padding: 1.08em 2em;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background-color 0.22s var(--ease), border-color 0.22s var(--ease),
    color 0.22s var(--ease);
}

/* A gold button needs a ring that reads against both the button itself and the
   page behind it, so this uses the two-tone token: a dark inner ring for light
   surfaces, a gold outer ring for dark ones. */
.btn:focus-visible {
  outline: 2px solid var(--gold-700);
  outline-offset: 3px;
}

.section--dark .btn:focus-visible,
.section--darker .btn:focus-visible,
.site-header .btn:focus-visible,
.cta .btn:focus-visible {
  outline-color: var(--gold-300);
}

/* The sheen. A soft diagonal highlight that sweeps across on hover, which is
   what makes the gold read as a struck surface rather than a fill. */
.btn--gold::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 40%;
  height: 220%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-140%) rotate(8deg);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}

.btn--gold:hover::after,
.btn--gold:focus-visible::after {
  transform: translateX(420%) rotate(8deg);
}

.btn--gold {
  background-image: var(--gold-gradient);
  background-color: var(--gold-500);
  color: var(--ink-950);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  color: var(--ink-950);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-on-dark-strong);
  color: var(--text-on-dark);
}

.btn--ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-200);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--line-on-light-strong);
  color: var(--text-on-light);
}

.btn--outline:hover {
  border-color: var(--gold-600);
  color: var(--gold-700);
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* Inline text link with a gold underline that grows on hover */
.link-gold {
  color: var(--accent-on-light);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line-on-light-strong);
  padding-bottom: 1px;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.link-gold:hover {
  border-bottom-color: var(--gold-600);
}

.section--dark .link-gold,
.section--darker .link-gold {
  color: var(--accent-on-dark);
  border-bottom-color: var(--line-on-dark-strong);
}

.section--dark .link-gold:hover,
.section--darker .link-gold:hover {
  border-bottom-color: var(--gold-400);
}

/* Text link that carries a small arrow — used for "read more" style exits */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-on-light);
}

.link-arrow::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease);
}

.link-arrow:hover::after {
  width: 2.4rem;
}

.section--dark .link-arrow,
.section--darker .link-arrow {
  color: var(--accent-on-dark);
}

/* A thin gold rule used as a decorative separator inside sections */
.rule-gold {
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--gold-hairline);
}

/* ==========================================================================
   07. HEADER / NAVIGATION
   No JavaScript anywhere on this site, so the mobile layout wraps the nav
   onto its own centred row rather than using a hamburger toggle.
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-on-dark);
}

/* Falls back to a solid bar where backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: var(--ink-1000);
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 4.75rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--text-on-dark);
}

.brand__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.6rem, 0.2rem + 1.4vw, 1.9rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-on-dark-muted);
  transition: color 0.2s var(--ease);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-gradient-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.site-nav__link:hover {
  color: var(--text-on-dark);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__link[aria-current="page"] {
  color: var(--gold-300);
}

.site-nav__cta {
  margin-left: clamp(0.4rem, 0.2rem + 0.8vw, 1rem);
}

.site-nav__cta .btn {
  padding: 0.82em 1.5em;
  font-size: 0.72rem;
}

/* Announcement strip above the header */
.announce {
  background: var(--ink-1000);
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--text-on-dark-muted);
  font-size: 0.76rem;
  letter-spacing: 0.045em;
  text-align: center;
  padding: 0.62rem var(--gutter);
}

.announce p {
  margin: 0;
}

.announce strong {
  color: var(--gold-300);
  font-weight: 600;
}

/* ==========================================================================
   08. HERO & MEDALLION
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ink-1000);
  color: var(--text-on-dark);
  padding-block: clamp(3.25rem, 1.5rem + 6.5vw, 6.5rem) clamp(3.25rem, 1.5rem + 6.5vw, 7rem);
}

/* Layered ambient light: warm radial bloom plus a faint woven texture.
   Both are pure CSS — no image files, no network requests. */
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(
      46% 56% at 78% 26%,
      rgba(201, 162, 39, 0.24) 0%,
      rgba(201, 162, 39, 0.07) 42%,
      rgba(201, 162, 39, 0) 72%
    ),
    radial-gradient(
      40% 48% at 10% 82%,
      rgba(168, 132, 42, 0.16) 0%,
      rgba(168, 132, 42, 0) 70%
    );
  z-index: -1;
}

/* Hairline rule dropping out of the hero, as a foil edge */
.hero .shell::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  background: var(--gold-hairline);
  opacity: 0.45;
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 60rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }
}

.hero__title {
  font-size: var(--step-6);
  margin-bottom: var(--space-5);
}

.hero__title em {
  font-style: italic;
}

.hero__lead {
  font-size: var(--step-1);
  line-height: 1.62;
  color: var(--text-on-dark-muted);
  max-width: 42ch;
}

.hero__points {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  font-size: var(--step--1);
  color: var(--text-on-dark-faint);
}

.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__points li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14);
}

.hero__figure {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
}

/* Soft gold bloom behind the medallion */
.hero__figure::before {
  content: "";
  position: absolute;
  width: min(80%, 28rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.32) 0%,
    rgba(201, 162, 39, 0.09) 48%,
    rgba(201, 162, 39, 0) 72%
  );
  filter: blur(8px);
  pointer-events: none;
}

.medallion {
  width: min(100%, 28rem);
  height: auto;
  filter: drop-shadow(0 30px 54px rgba(0, 0, 0, 0.6));
  animation: medallion-in 1.1s var(--ease-out) both;
}

@keyframes medallion-in {
  from {
    opacity: 0;
    transform: scale(0.94) rotate(-1.5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.hero__caption {
  margin-top: var(--space-4);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  text-align: center;
}

/* ==========================================================================
   09. ASSURANCE BAR
   ========================================================================== */

.assurance {
  background: var(--ink-900);
  border-block: 1px solid var(--line-on-dark);
  color: var(--text-on-dark-muted);
  padding-block: clamp(1.6rem, 1rem + 1.6vw, 2.4rem);
}

.assurance__list {
  display: grid;
  gap: clamp(1.1rem, 0.6rem + 1.6vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.assurance__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.assurance__icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
  margin-top: 0.15rem;
  color: var(--gold-400);
}

.assurance__title {
  display: block;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--text-on-dark);
  margin-bottom: 0.15rem;
}

.assurance__text {
  display: block;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-on-dark-faint);
}

/* ==========================================================================
   10. SECTION HEADERS
   ========================================================================== */

.section-head {
  max-width: 54rem;
  margin-bottom: clamp(2.25rem, 1.2rem + 3vw, 3.75rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .lede,
.section-head--center > p {
  margin-inline: auto;
}

.section-head h2 {
  margin-bottom: var(--space-4);
}

.section-head > p {
  color: var(--text-on-light-muted);
  max-width: 60ch;
}

.section--dark .section-head > p,
.section--darker .section-head > p {
  color: var(--text-on-dark-muted);
}

/* ==========================================================================
   11. COLLECTION CARDS
   ========================================================================== */

.card {
  position: relative;
  background: var(--surface-card-light);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.15rem);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

/* The gold edge. A second hairline drawn with a gradient, sitting just inside
   the border so the card reads as foiled rather than merely outlined. */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gold-edge);
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: var(--step-1);
  margin-bottom: var(--space-3);
}

.card p {
  color: var(--text-on-light-muted);
  font-size: 0.94rem;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: var(--space-5);
  border-radius: 50%;
  background: linear-gradient(
    150deg,
    rgba(201, 162, 39, 0.14) 0%,
    rgba(201, 162, 39, 0.05) 100%
  );
  border: 1px solid var(--line-on-light);
  color: var(--gold-700);
}

.card__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.card__meta {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-on-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-700) !important;
}

/* Dark-surface card variant */
.card--dark {
  background: var(--surface-card-dark);
  border-color: var(--line-on-dark);
  box-shadow: none;
}

.card--dark:hover {
  background: var(--surface-card-dark-hover);
  border-color: transparent;
}

.card--dark h3 {
  color: var(--text-on-dark);
}

.card--dark p {
  color: var(--text-on-dark-muted);
}

.card--dark .card__icon {
  background: linear-gradient(
    150deg,
    rgba(227, 192, 112, 0.16) 0%,
    rgba(227, 192, 112, 0.04) 100%
  );
  border-color: var(--line-on-dark);
  color: var(--gold-400);
}

.card--dark .card__meta {
  border-top-color: var(--line-on-dark);
  color: var(--gold-300) !important;
}

/* ==========================================================================
   12. GIFT SETS
   ========================================================================== */

.set {
  display: flex;
  flex-direction: column;
  background: var(--surface-card-light);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.set:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.set__banner {
  display: grid;
  place-items: center;
  padding: var(--space-7) var(--space-5);
  background: linear-gradient(
    165deg,
    var(--ink-900) 0%,
    var(--ink-850) 55%,
    var(--ink-800) 100%
  );
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--gold-400);
  position: relative;
}

.set__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 70% at 50% 30%,
    rgba(201, 162, 39, 0.18) 0%,
    rgba(201, 162, 39, 0) 70%
  );
  pointer-events: none;
}

.set__banner svg {
  width: 3.6rem;
  height: 3.6rem;
}

.set__body {
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.set__body h3 {
  font-size: var(--step-1);
  margin-bottom: var(--space-3);
}

.set__body > p {
  color: var(--text-on-light-muted);
  font-size: 0.94rem;
}

.set__includes {
  list-style: none;
  margin: var(--space-4) 0 var(--space-5);
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-on-light-muted);
  border-top: 1px solid var(--line-on-light);
  padding-top: var(--space-4);
}

.set__includes li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
}

.set__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.42rem;
  height: 1px;
  background: var(--gold-600);
}

.set__price {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-on-light);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.set__price strong {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-light);
}

.set__price span {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-on-light-faint);
}

/* ==========================================================================
   13. PROCESS STEPS
   ========================================================================== */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.75rem, 1rem + 2.4vw, 3rem);
  counter-reset: step;
}

@media (min-width: 48rem) {
  .steps {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  }
}

.steps__item {
  counter-increment: step;
  position: relative;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line-on-dark);
}

.steps__item::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -0.15rem;
  left: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  background: var(--ink-900);
  padding-right: 0.9rem;
}

.steps__item h3 {
  font-size: var(--step-1);
  color: var(--text-on-dark);
  margin-bottom: var(--space-3);
}

.steps__item p {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
}

/* Light-surface variant, for steps placed on cream or sand */
.steps--light .steps__item {
  border-top-color: var(--line-on-light);
}

.steps--light .steps__item::before {
  color: var(--gold-700);
  background: var(--cream-50);
}

.steps--light .steps__item h3 {
  color: var(--text-on-light);
}

.steps--light .steps__item p {
  color: var(--text-on-light-muted);
}

/* ==========================================================================
   14. STANDARDS / CHECKLIST
   ========================================================================== */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
}

.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.checklist__icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
  margin-top: 0.18rem;
  color: var(--gold-600);
}

.checklist strong {
  display: block;
  color: var(--text-on-light);
  margin-bottom: 0.25rem;
}

.checklist p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-on-light-muted);
}

.section--dark .checklist strong {
  color: var(--text-on-dark);
}

.section--dark .checklist p {
  color: var(--text-on-dark-muted);
}

.section--dark .checklist__icon {
  color: var(--gold-400);
}

/* Panel: a quiet inset box for a note, a summary or a sidebar block */
.panel {
  background: var(--surface-sand);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
}

.panel h3 {
  font-size: var(--step-1);
  margin-bottom: var(--space-3);
}

.panel p {
  font-size: 0.92rem;
  color: var(--text-on-light-muted);
}

.panel--dark {
  background: var(--surface-card-dark);
  border-color: var(--line-on-dark);
}

.panel--dark h3 {
  color: var(--text-on-dark);
}

.panel--dark p {
  color: var(--text-on-dark-muted);
}

/* ==========================================================================
   15. HERITAGE BAND
   The "trading since" band. Figures are set in the serif at display size so
   they read as a record rather than as marketing counters.
   ========================================================================== */

.heritage {
  background: var(--ink-900);
  color: var(--text-on-dark);
  border-block: 1px solid var(--line-on-dark);
}

.heritage__grid {
  display: grid;
  gap: clamp(1.75rem, 1rem + 2.6vw, 3.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.heritage__item {
  position: relative;
  padding-left: clamp(1.25rem, 0.6rem + 1.6vw, 2.25rem);
}

/* A vertical foil rule at the head of each figure, like the edge of a bar */
.heritage__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(240, 216, 155, 0.7) 0%,
    rgba(201, 162, 39, 0.18) 60%,
    rgba(201, 162, 39, 0) 100%
  );
}

.heritage__value {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  color: var(--gold-300);
  font-variant-numeric: lining-nums tabular-nums;
  margin-bottom: 0.5rem;
}

.heritage__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.heritage__note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-on-dark-faint);
}

/* ==========================================================================
   16. CLIENT VOICES
   ========================================================================== */

.voices {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.voice {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-card-light);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.voice:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-on-light-strong);
}

/* Opening quotation mark, set as a foil ornament */
.voice__mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 0.7;
  margin-bottom: var(--space-3);
  background: var(--gold-gradient-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .voice__mark {
    color: var(--gold-500);
    -webkit-text-fill-color: currentColor;
  }
}

.voice__quote {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--text-on-light);
  margin-bottom: var(--space-5);
}

.voice__meta {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-on-light);
}

.voice__name {
  display: block;
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--text-on-light);
}

.voice__detail {
  display: block;
  font-size: 0.78rem;
  color: var(--text-on-light-faint);
}

/* ==========================================================================
   17. ACCREDITATIONS
   ========================================================================== */

.marks {
  background: var(--surface-sand-deep);
  border-block: 1px solid var(--line-on-light);
}

.marks__list {
  display: grid;
  gap: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.marks__item {
  text-align: center;
  padding-inline: 0.5rem;
}

.marks__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto var(--space-4);
  color: var(--gold-600);
}

.marks__title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-on-light);
  margin-bottom: 0.35rem;
}

.marks__text {
  display: block;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-on-light-muted);
}

/* ==========================================================================
   18. STUDIO & HOURS
   ========================================================================== */

.studio__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: start;
}

@media (min-width: 56rem) {
  .studio__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

/* Opening hours. Marked up as a definition list, so the day and the time are
   laid out as a two-column grid rather than as stacked blocks — dt and dd are
   siblings here, which is why this is a grid on the list and not a flex row on
   each item. */
.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  margin: 0;
  font-size: 0.9rem;
}

.hours dt,
.hours__day,
.hours dd,
.hours__time {
  padding: 0.68rem 0;
  border-bottom: 1px solid var(--line-on-light);
}

.hours dt,
.hours__day {
  color: var(--text-on-light-muted);
  padding-right: var(--space-5);
}

.hours dd,
.hours__time {
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--text-on-light);
  font-weight: 600;
}

.hours dt:nth-last-of-type(1),
.hours dd:nth-last-of-type(1) {
  border-bottom: 0;
}

.section--dark .hours dt,
.section--dark .hours dd,
.section--darker .hours dt,
.section--darker .hours dd,
.panel--dark .hours dt,
.panel--dark .hours dd {
  border-bottom-color: var(--line-on-dark);
}

.section--dark .hours dt,
.section--darker .hours dt,
.panel--dark .hours dt {
  color: var(--text-on-dark-muted);
}

.section--dark .hours dd,
.section--darker .hours dd,
.panel--dark .hours dd {
  color: var(--text-on-dark);
}

/* ==========================================================================
   19. FAQ — native details/summary, no JavaScript
   ========================================================================== */

.faq {
  border-top: 1px solid var(--line-on-light);
}

.faq__item {
  border-bottom: 1px solid var(--line-on-light);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1.15rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: var(--step-1);
  color: var(--text-on-light);
  list-style: none;
  transition: color 0.2s var(--ease);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  color: var(--gold-700);
}

/* The marker is a plus that becomes a minus — two bars, one of which rotates
   out. Avoids any glyph or image dependency. */
.faq__marker {
  position: relative;
  width: 0.95rem;
  height: 0.95rem;
  flex: none;
}

.faq__marker::before,
.faq__marker::after {
  content: "";
  position: absolute;
  background: var(--gold-600);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq__marker::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.faq__marker::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.faq__item[open] .faq__marker::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__item[open] summary {
  color: var(--gold-700);
}

.faq__answer {
  padding-bottom: var(--space-5);
  padding-right: clamp(0, 0.5rem + 2vw, 3rem);
  max-width: 62ch;
}

.faq__answer p {
  font-size: 0.94rem;
  color: var(--text-on-light-muted);
}

/* Dark-surface FAQ */
.faq--dark {
  border-top-color: var(--line-on-dark);
}

.faq--dark .faq__item {
  border-bottom-color: var(--line-on-dark);
}

.faq--dark .faq__item summary {
  color: var(--text-on-dark);
}

.faq--dark .faq__item summary:hover,
.faq--dark .faq__item[open] summary {
  color: var(--gold-300);
}

.faq--dark .faq__marker::before,
.faq--dark .faq__marker::after {
  background: var(--gold-400);
}

.faq--dark .faq__answer p {
  color: var(--text-on-dark-muted);
}

/* ==========================================================================
   20. CALL-TO-ACTION BAND
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  color: var(--text-on-dark);
  text-align: center;
  border-top: 1px solid var(--line-on-dark);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      52% 90% at 50% 0%,
      rgba(201, 162, 39, 0.2) 0%,
      rgba(201, 162, 39, 0) 68%
    ),
    radial-gradient(
      40% 70% at 50% 110%,
      rgba(168, 132, 42, 0.12) 0%,
      rgba(168, 132, 42, 0) 70%
    );
  pointer-events: none;
}

.cta__inner {
  position: relative;
  max-width: 46rem;
  margin-inline: auto;
}

.cta h2 {
  font-size: var(--step-4);
  color: var(--text-on-dark);
}

.cta p {
  color: var(--text-on-dark-muted);
  font-size: var(--step-1);
  max-width: 44ch;
  margin-inline: auto;
}

.cta .btn-row {
  justify-content: center;
}

.cta__note {
  margin-top: var(--space-6);
  font-size: 0.76rem !important;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-on-dark-faint) !important;
}

/* ==========================================================================
   21. PAGE HEADER — interior pages
   ========================================================================== */

.page-head {
  position: relative;
  overflow: hidden;
  background: var(--ink-1000);
  color: var(--text-on-dark);
  padding-block: clamp(2.75rem, 1.5rem + 4.5vw, 5rem) clamp(2.25rem, 1.2rem + 3.5vw, 4rem);
  border-bottom: 1px solid var(--line-on-dark);
}

.page-head::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 140%;
  background: radial-gradient(
    44% 60% at 82% 22%,
    rgba(201, 162, 39, 0.18) 0%,
    rgba(201, 162, 39, 0) 70%
  );
  pointer-events: none;
}

.page-head__inner {
  position: relative;
  max-width: 52rem;
}

.page-head h1 {
  font-size: var(--step-4);
  color: var(--text-on-dark);
  margin-bottom: var(--space-4);
}

.page-head p {
  color: var(--text-on-dark-muted);
  font-size: var(--step-1);
  max-width: 56ch;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 var(--space-5);
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--gold-700);
}

.breadcrumb a {
  color: var(--text-on-dark-faint);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold-300);
}

.breadcrumb [aria-current="page"] {
  color: var(--gold-300);
}

/* ==========================================================================
   22. PROSE — long-form and legal pages
   ========================================================================== */

.prose {
  max-width: var(--measure);
}

.prose h2 {
  font-size: var(--step-2);
  margin-top: var(--space-9);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line-on-light);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: var(--step-1);
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
}

.prose p,
.prose li {
  color: var(--text-on-light-muted);
}

.prose ul,
.prose ol {
  margin: 0 0 var(--space-4);
  padding-left: 1.3rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose li::marker {
  color: var(--gold-700);
}

.prose a {
  color: var(--accent-on-light);
}

/* Table of contents on legal pages */
.toc {
  background: var(--surface-sand);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 1rem + 0.8vw, 1.7rem);
}

.toc h2 {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  margin: 0 0 var(--space-4);
  padding: 0;
  border: 0;
}

.toc ol {
  list-style: none;
  counter-reset: toc;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.toc li {
  counter-increment: toc;
  margin-bottom: 0.55rem;
}

/* gold-700 rather than gold-600: this is real text at 0.9rem, and gold-600 is
   only 3.4:1 on cream, below the 4.5:1 that small text needs. */
.toc li::before {
  content: counter(toc) ". ";
  color: var(--gold-700);
  font-variant-numeric: tabular-nums;
}

.toc a {
  color: var(--text-on-light-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.toc a:hover {
  color: var(--gold-700);
  border-bottom-color: var(--line-on-light-strong);
}

.meta-line {
  font-size: 0.82rem;
  color: var(--text-on-light-muted);
  letter-spacing: 0.02em;
}

.section--dark .meta-line,
.section--darker .meta-line {
  color: var(--text-on-dark-faint);
}

/* ==========================================================================
   23. TABLES
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  background: var(--surface-card-light);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 30rem;
}

/* Compact variant for tables that sit inside a narrow sidebar. The 30rem floor
   above exists to keep wide data tables readable via horizontal scroll, but in
   a sidebar it would clip values instead — so this variant drops the floor and
   lets the columns wrap. */
table.table--compact,
.table-wrap--compact table {
  min-width: 0;
  font-size: 0.88rem;
}

.table-wrap--compact {
  border: 0;
  background: transparent;
  overflow-x: visible;
}

table.table--compact th,
table.table--compact td,
.table-wrap--compact th,
.table-wrap--compact td {
  padding: 0.6rem 0;
  white-space: normal;
}

.table-wrap--compact thead th {
  background: transparent;
  padding-inline: 0;
}

.table-wrap--compact caption {
  padding: 0 0 var(--space-3);
  border-bottom: 1px solid var(--line-on-light);
}

.table-wrap--compact tbody th {
  padding-right: var(--space-4);
  white-space: nowrap;
}

.table-wrap--compact tbody td {
  text-align: right;
}

caption {
  caption-side: top;
  text-align: left;
  padding: var(--space-4) var(--space-5);
  font-size: 0.76rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  border-bottom: 1px solid var(--line-on-light);
}

th,
td {
  text-align: left;
  padding: 0.95rem var(--space-5);
  border-bottom: 1px solid var(--line-on-light);
  vertical-align: top;
}

thead th {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--surface-sand);
  white-space: nowrap;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  font-weight: 600;
  color: var(--text-on-light);
  white-space: nowrap;
}

td {
  color: var(--text-on-light-muted);
}

/* Tables that sit on a dark surface. The light-surface rules above would leave
   these nearly invisible: caption, header and cell colours all have to invert,
   and the sand header fill has to become a translucent wash instead. */
.section--dark caption,
.section--darker caption,
.panel--dark caption {
  color: var(--text-on-dark-faint);
  border-bottom-color: var(--line-on-dark);
}

.section--dark thead th,
.section--darker thead th,
.panel--dark thead th {
  color: var(--gold-300);
  background: rgba(227, 192, 112, 0.06);
}

.section--dark th,
.section--dark td,
.section--darker th,
.section--darker td,
.panel--dark th,
.panel--dark td {
  border-bottom-color: var(--line-on-dark);
}

.section--dark tbody th,
.section--darker tbody th,
.panel--dark tbody th {
  color: var(--text-on-dark-muted);
}

.section--dark td,
.section--darker td,
.panel--dark td {
  color: var(--text-on-dark);
}

.section--dark .table-wrap,
.section--darker .table-wrap {
  border-color: var(--line-on-dark);
  background: transparent;
}

/* In a compact sidebar table on a dark panel, the row label is the quiet
   column and the value is the loud one — the reverse of the light-surface
   treatment, so it is stated explicitly rather than inherited. */
.panel--dark .table-wrap--compact tbody th,
.section--dark .table-wrap--compact tbody th,
.section--darker .table-wrap--compact tbody th {
  color: var(--text-on-dark-faint);
  font-weight: 500;
}

.panel--dark .table-wrap--compact tbody td,
.section--dark .table-wrap--compact tbody td,
.section--darker .table-wrap--compact tbody td {
  color: var(--text-on-dark);
  font-weight: 600;
}

.panel--dark .table-wrap--compact caption,
.section--dark .table-wrap--compact caption,
.section--darker .table-wrap--compact caption {
  border-bottom-color: var(--line-on-dark);
}

/* ==========================================================================
   24. FORMS
   Static markup only — no backend, no JavaScript. The form posts to a
   mailto: address, and the page states that plainly.
   ========================================================================== */

.form {
  display: grid;
  gap: var(--space-5);
}

.form__row {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 40rem) {
  .form__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label,
.field__label {
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-on-light-muted);
}

.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: var(--step-0);
  color: var(--text-on-light);
  background: var(--surface-card-light);
  border: 1px solid var(--line-on-light-strong);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.6;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: var(--gold-600);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.field__hint,
.hint {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-on-light-faint);
}

/* Required-field marker. Kept as a separate span so it can be hidden from
   assistive tech: the input's own `required` attribute already announces it. */
.req {
  color: var(--gold-700);
  font-weight: 650;
  margin-left: 0.15rem;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.form__note {
  font-size: 0.8rem;
  color: var(--text-on-light-faint);
  max-width: 46ch;
}

/* Checkbox row */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-on-light-muted);
}

.checkbox input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  flex: none;
  accent-color: var(--gold-600);
}

/* ==========================================================================
   25. CONTACT BLOCKS
   ========================================================================== */

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface-card-light);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-on-light-strong);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(
    150deg,
    rgba(201, 162, 39, 0.14) 0%,
    rgba(201, 162, 39, 0.04) 100%
  );
  border: 1px solid var(--line-on-light);
  color: var(--gold-700);
}

.contact-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-card h3 {
  font-size: var(--step-1);
  margin-bottom: 0.4rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-on-light-muted);
  margin-bottom: 0.5rem;
}

.email-link {
  font-weight: 600;
  word-break: break-word;
}

.address {
  font-style: normal;
  line-height: 1.62;
}

/* ==========================================================================
   26. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--ink-1000);
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--line-on-dark);
  padding-block: clamp(2.75rem, 1.6rem + 3.5vw, 4.5rem) var(--space-6);
}

/* Foil rule along the very top edge of the footer */
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-hairline);
  opacity: 0.55;
}

.site-footer__grid {
  display: grid;
  gap: clamp(1.75rem, 1rem + 2.6vw, 3.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.site-footer__brand {
  grid-column: 1 / -1;
}

@media (min-width: 56rem) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  }
  .site-footer__brand {
    grid-column: auto;
  }
}

.site-footer__blurb {
  margin-top: var(--space-4);
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-on-dark-faint);
  max-width: 34ch;
}

.site-footer h2 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 var(--space-4);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.6rem;
  font-size: 0.86rem;
}

.site-footer a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-footer a:hover {
  color: var(--gold-300);
}

.site-footer .address {
  color: var(--text-on-dark-faint);
}

.site-footer__bottom {
  margin-top: clamp(2.25rem, 1.4rem + 2.4vw, 3.5rem);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-on-dark-faint);
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

/* ==========================================================================
   27. RESPONSIVE REFINEMENTS
   ========================================================================== */

@media (min-width: 62rem) {
  .grid--3 {
    gap: var(--space-6);
  }
}

@media (max-width: 60rem) {
  .site-header__inner {
    justify-content: center;
    padding-block: 0.85rem;
    row-gap: 0.85rem;
  }
  .site-nav__list {
    justify-content: center;
  }
  .site-nav__cta {
    margin-left: 0;
  }
  .hero__figure {
    order: -1;
  }
  .medallion {
    width: min(72%, 20rem);
  }
}

@media (max-width: 34rem) {
  .announce {
    font-size: 0.72rem;
  }
  .btn {
    width: 100%;
  }
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .site-footer__bottom {
    justify-content: flex-start;
  }
  .stats__value,
  .heritage__value {
    font-size: var(--step-2);
  }
}

/* ==========================================================================
   28. MOTION & PRINT PREFERENCES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .medallion {
    animation: none;
  }
  .card:hover,
  .set:hover,
  .voice:hover,
  .contact-card:hover,
  .btn:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .announce,
  .cta,
  .skip-link,
  .hero__figure {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
  }
  .section,
  .section--dark,
  .section--darker,
  .section--sand,
  .section--cream,
  .heritage,
  .marks,
  .page-head,
  .hero {
    background: #fff !important;
    color: #000 !important;
    padding-block: 1rem;
  }
  .section--dark h1,
  .section--dark h2,
  .section--dark h3,
  .section--dark p,
  .section--darker h1,
  .section--darker h2,
  .section--darker h3,
  .section--darker p,
  .hero__title,
  .hero__lead {
    color: #000 !important;
  }
  .card,
  .set,
  .panel,
  .table-wrap {
    box-shadow: none;
    border-color: #999;
  }
  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #444;
  }
}
