/* ============================================================
   TRUSTED JEWELRY BUYERS — Site Stylesheet
   Built from the official Brand Style Guide (2026).
   Optional enhancement layer for Flowboard → Webflow conversion.
   ------------------------------------------------------------
   Sections:
   1.  Design tokens (color, type, spacing)
   2.  Base / reset
   3.  Typography
   4.  Layout helpers (container, grid, sections)
   5.  Buttons
   6.  Tags & badges
   7.  Header / navigation
   8.  Footer
   9.  Components (cards, callouts, credential bar, steps, forms, FAQ)
   10. Page-specific blocks (hero, etc.)
   11. Utilities
   12. Responsive
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Core palette */
  --color-ink: #1A1B17;
  --color-emerald: #1E5A4C;
  --color-emerald-deep: #143F35;
  --color-gold: #B79A60;
  --color-bone: #F2EEE4;

  /* Supporting neutrals */
  --color-stone: #8C8676;
  --color-cloud: #DAD5C7;
  --color-linen: #E6E0D1;
  --color-white: #FFFFFF;

  /* Semantic */
  --bg-page: var(--color-bone);
  --bg-surface: var(--color-white);
  --text-primary: var(--color-ink);
  --text-muted: #5a5b53;
  --text-on-dark: #F2EEE4;
  --hairline: rgba(183, 154, 96, 0.45);   /* champagne gold hairline */
  --border-soft: #d8d2c4;

  /* Type families */
  --font-display: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-text: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale (web-tuned from the guide's proportions) */
  --fs-display: clamp(2.75rem, 1.6rem + 4.6vw, 4.5rem);   /* ~44–72px */
  --fs-h1: clamp(2.25rem, 1.5rem + 3vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 1.2rem + 2.2vw, 2.5rem);
  --fs-h3: clamp(1.3rem, 1.05rem + 1vw, 1.6rem);
  --fs-subhead: 0.82rem;
  --fs-body: 1.0625rem;       /* 17px */
  --fs-body-lg: 1.1875rem;    /* 19px lead */
  --fs-caption: 0.78rem;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Structure */
  --container: 1200px;
  --container-narrow: 820px;
  --radius: 2px;
  --radius-card: 4px;
  --transition: 0.25s ease;
}

/* ---------- 2. BASE / RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-text);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fraunces optical sizing for display type */
h1, h2, h3, h4, .display { font-optical-sizing: auto; }

/* Webflow / host-builder compatibility overrides.
   When this stylesheet loads BEFORE the builder's own CSS, the builder's base
   `body {}` rules can override ours. `html body` (specificity 0,0,2) wins
   regardless of source order, so the page keeps its Bone background and
   Hanken Grotesk body type instead of falling back to white/Arial. */
html body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-text);
}
html body a { color: inherit; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--color-emerald);
  outline-offset: 3px;
}

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 0.5em;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 0.4em;
}

h1, .h1 { font-size: var(--fs-h1); }
h2, .h2 { font-size: var(--fs-h2); font-weight: 600; }
h3, .h3 { font-size: var(--fs-h3); font-weight: 600; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--text-muted);
}

/* Eyebrow / subhead — Hanken 600, tracked, emerald */
.eyebrow {
  display: inline-block;
  font-family: var(--font-text);
  font-size: var(--fs-subhead);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin: 0 0 1rem;
}
.eyebrow--gold { color: var(--color-gold); }
.eyebrow--muted { color: var(--color-stone); }

.caption {
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.text-muted { color: var(--text-muted); }
.serif { font-family: var(--font-display); }
em, .italic { font-style: italic; }

/* Gold hairline rule */
.rule {
  width: 56px;
  height: 1px;
  background: var(--color-gold);
  border: 0;
  margin: 1.5rem 0;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* ---------- 4. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--bone { background: var(--color-bone); }
.section--linen { background: var(--color-linen); }
.section--cloud { background: var(--color-cloud); }
.section--white { background: var(--color-white); }
.section--ink { background: var(--color-ink); color: var(--text-on-dark); }
.section--emerald { background: var(--color-emerald-deep); color: var(--text-on-dark); }

.section--ink h1, .section--ink h2, .section--ink h3,
.section--emerald h1, .section--emerald h2, .section--emerald h3 { color: var(--color-bone); }
.section--ink .lead, .section--emerald .lead { color: rgba(242,238,228,0.78); }

.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Split: media + text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--media-right { direction: ltr; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05em 2em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary — ink */
.btn--primary { background: var(--color-ink); color: var(--color-bone); }
.btn--primary:hover { background: #000; color: #fff; }

/* Emerald */
.btn--emerald { background: var(--color-emerald); color: var(--color-bone); }
.btn--emerald:hover { background: var(--color-emerald-deep); color: #fff; }

/* Outline */
.btn--outline { background: transparent; color: var(--color-ink); border-color: var(--color-ink); }
.btn--outline:hover { background: var(--color-ink); color: var(--color-bone); }

.btn--outline-light { background: transparent; color: var(--color-bone); border-color: rgba(242,238,228,0.55); }
.btn--outline-light:hover { background: var(--color-bone); color: var(--color-ink); border-color: var(--color-bone); }

/* Text link button */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-emerald);
}
.btn-text .arrow { transition: transform var(--transition); }
.btn-text:hover { color: var(--color-emerald-deep); }
.btn-text:hover .arrow { transform: translateX(4px); }
.section--ink .btn-text, .section--emerald .btn-text { color: var(--color-gold); }

.btn--sm { padding: 0.75em 1.4em; font-size: 0.72rem; }
.btn--block { display: flex; width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---------- 6. TAGS & BADGES ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5em 0.95em;
  border-radius: var(--radius);
  background: var(--color-linen);
  color: var(--color-ink);
}
.tag--emerald { background: var(--color-emerald); color: var(--color-bone); }
.tag--gold { background: transparent; color: var(--color-gold); border: 1px solid var(--hairline); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ---------- 7. HEADER / NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 238, 228, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -22px rgba(26,27,23,0.55); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-img { height: 46px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  position: relative;
  padding: 0.4em 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--color-emerald); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--color-ink);
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- 8. FOOTER ---------- */
.site-footer {
  background: var(--color-ink);
  color: rgba(242, 238, 228, 0.72);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  font-size: 0.92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(183, 154, 96, 0.28);
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 30ch; font-size: 0.92rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a:hover { color: var(--color-bone); }
.footer-contact span { display: block; margin-bottom: 0.55rem; }
.footer-contact a:hover { color: var(--color-bone); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.78rem;
  color: rgba(242, 238, 228, 0.5);
}
.footer-legal { max-width: 70ch; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; }
.footer-social a:hover { color: var(--color-gold); }

/* ---------- 9. COMPONENTS ---------- */

/* Credential / trust bar */
.trust-bar { border-block: 1px solid var(--hairline); background: var(--color-bone); }
.trust-bar .container { padding-block: 1.75rem; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 3rem);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.trust-item strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}
.trust-item span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-stone);
}
.trust-sep { width: 1px; height: 34px; background: var(--hairline); }

/* Generic card */
.card {
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(26,27,23,0.5); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-linen); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.4rem; }
.card-body p { font-size: 0.98rem; color: var(--text-muted); }
.card-body .btn-text { margin-top: auto; padding-top: 1rem; }

/* Callout card (style-guide CARD / CALLOUT) */
.callout {
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.callout--bone { background: var(--color-bone); border: 1px solid var(--border-soft); }
.callout--ink { background: var(--color-ink); color: var(--text-on-dark); }
.callout--ink h3 { color: var(--color-bone); }
.callout--ink p { color: rgba(242,238,228,0.74); }
.callout h3 { font-size: var(--fs-h3); margin: 0.2rem 0 0.6rem; }
.callout p { font-size: 0.98rem; margin-bottom: 1.4rem; }

/* Feature / value item */
.feature { display: flex; flex-direction: column; gap: 0.6rem; }
.feature-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--color-emerald);
  margin-bottom: 0.4rem;
}
.feature h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.15rem; }
.feature p { font-size: 0.98rem; color: var(--text-muted); margin: 0; }
.section--ink .feature p, .section--emerald .feature p { color: rgba(242,238,228,0.74); }
.section--ink .feature-icon, .section--emerald .feature-icon { color: var(--color-gold); border-color: rgba(183,154,96,0.5); }

/* Steps (process) */
.steps { counter-reset: step; display: grid; gap: 1.5rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-top: 1px solid var(--hairline);
}
.step:last-child { border-bottom: 1px solid var(--hairline); }
.step-num {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-gold);
  min-width: 2.5rem;
}
.step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.35rem; }
.step p { color: var(--text-muted); margin: 0; }

/* Stat / proof figures */
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--color-ink);
  display: block;
}
.section--ink .stat-num, .section--emerald .stat-num { color: var(--color-gold); }
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-top: 0.6rem;
  display: block;
}

/* Testimonial */
.testimonial {
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-ink);
}
.testimonial-stars { color: var(--color-gold); letter-spacing: 0.2em; font-size: 0.95rem; }
.testimonial-author { font-size: 0.85rem; }
.testimonial-author strong { display: block; font-weight: 600; letter-spacing: 0.02em; }
.testimonial-author span { color: var(--text-muted); font-size: 0.8rem; }

/* Testimonial carousel (single-in-view with controls) */
.testimonial-carousel { position: relative; max-width: 760px; margin-inline: auto; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-slide { min-width: 100%; box-sizing: border-box; padding: 0 0.25rem; }
.testimonial--feature {
  text-align: center;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3.25rem);
}
.testimonial--feature .testimonial-quote { font-size: clamp(1.35rem, 1rem + 1.4vw, 1.85rem); line-height: 1.4; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.carousel-arrow {
  width: 48px; height: 48px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: transparent;
  color: var(--color-ink);
  font-size: 1.2rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.carousel-arrow:hover { background: var(--color-emerald); color: var(--color-bone); border-color: var(--color-emerald); }
.carousel-dots { display: flex; align-items: center; gap: 0.6rem; }
.carousel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--color-cloud);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot[aria-current="true"] { background: var(--color-gold); transform: scale(1.25); }

/* Credential / accreditation seals */
.cred-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.cred-badge {
  width: 104px; height: 104px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  box-shadow: inset 0 0 0 3px var(--color-bone), inset 0 0 0 4px rgba(183,154,96,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  background: var(--color-white);
}
.cred-badge .cred-badge-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}
.cred-badge .cred-badge-label {
  font-family: var(--font-text);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-stone);
  max-width: 80px;
  margin-top: 2px;
}
.trust-tagline {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-stone);
}

/* Forms */
.form-field { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: 0.6rem;
}
.form-label .optional { color: var(--color-stone); font-weight: 500; letter-spacing: 0.08em; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0.95em 1.05em;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder, .form-textarea::placeholder { color: #a9a392; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(30,90,76,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-file {
  border: 1px dashed var(--hairline);
  border-radius: var(--radius);
  padding: 1.1em;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  background: var(--color-bone);
  cursor: pointer;
  display: block;
}
.form-file input { display: none; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.4rem; }
.form-card {
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

/* Calendly embed placeholder */
.scheduler-embed {
  border: 1px dashed var(--hairline);
  border-radius: var(--radius-card);
  background: var(--color-bone);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  gap: 0.75rem;
}
.scheduler-embed .eyebrow { margin-bottom: 0.25rem; }
.scheduler-embed p { max-width: 42ch; color: var(--text-muted); }

/* FAQ accordion */
.faq-group { margin-bottom: clamp(2rem, 4vw, 3rem); }
.faq-group-title {
  font-family: var(--font-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-emerald);
  padding-bottom: 0.9rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--hairline);
}
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-emerald); }
.faq-icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-gold);
  transition: transform var(--transition);
}
.faq-icon::before { top: 10px; left: 0; width: 22px; height: 1.5px; }
.faq-icon::after { left: 10px; top: 0; width: 1.5px; height: 22px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-answer { padding: 0 0 1.5rem; max-width: 70ch; }
.faq-answer p { color: var(--text-muted); margin-bottom: 0.8rem; }
/* native <details> marker removal */
.faq-question::-webkit-details-marker { display: none; }
details.faq-item > summary { list-style: none; }
details.faq-item > summary::-webkit-details-marker { display: none; }

/* ---------- 10. PAGE BLOCKS ---------- */

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 0;
  min-height: clamp(520px, 72vh, 760px);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem) 0;
}
.hero-content .container-edge { max-width: 560px; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(26,27,23,0.12);
  pointer-events: none;
}
.hero .lead { margin-bottom: 2rem; }

/* Simple page hero (interior pages) */
.page-hero { padding-block: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4vw, 4rem); }
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero .display, .page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 56ch; margin-top: 0.5rem; }
.page-hero--media {
  position: relative;
  color: var(--color-bone);
  background: var(--color-ink);
}
.page-hero--media .page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero--media .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero--media .container { position: relative; z-index: 1; }
.page-hero--media .display, .page-hero--media h1 { color: var(--color-bone); }
.page-hero--media .lead { color: rgba(242,238,228,0.82); }

/* Image with caption frame */
.figure { position: relative; }
.figure img { width: 100%; border-radius: var(--radius-card); }
.figure--tall img { aspect-ratio: 3 / 4; object-fit: cover; }
.figure--wide img { aspect-ratio: 4 / 3; object-fit: cover; }
.figure-tag {
  position: absolute;
  left: 1rem; bottom: 1rem;
}

/* CTA band */
.cta-band { text-align: center; }
.cta-band .display { max-width: 18ch; margin-inline: auto; }
.cta-band .lead { max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }

/* Inline check list */
.check-list { display: grid; gap: 0.9rem; }
.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 1.02rem;
}
.check-list .check {
  flex: none;
  margin-top: 0.15rem;
  color: var(--color-emerald);
}
.section--ink .check-list .check, .section--emerald .check-list .check { color: var(--color-gold); }

/* Logos strip (credentials acronyms) */
.cred-strip { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cred-chip {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.7em 1.1em;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
  background: var(--color-white);
}

/* ---------- 11. UTILITIES ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.maxw-narrow { max-width: 60ch; }
.gap-sm { gap: 1rem; }
.hidden { display: none; }

/* Reveal-on-scroll (progressive enhancement)
   IMPORTANT: content is VISIBLE by default. The hidden/animated state is gated
   behind `.js` on <html>, which script.js adds only when it actually runs.
   So if custom JS does NOT execute (e.g. some Webflow/CMS embed contexts),
   nothing is ever hidden — all content shows. The fade-in is pure enhancement. */
/* will-change promotes a stable compositor layer up front so antialiased serif
   text doesn't shimmer/"wobble" while it's mid-transform during the reveal. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 12. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--color-bone);
    border-bottom: 1px solid var(--hairline);
    padding: 1rem clamp(1.25rem, 5vw, 3rem) 1.5rem;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 20px 40px -30px rgba(26,27,23,0.6);
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  /* Block-level so vertical padding lays out correctly. No divider borders —
     the only line is the gold hover/active underline (.nav-link::after), which
     we leave enabled here so the collapsed menu keeps the same hover state as
     desktop (it's width:0 by default, animating to 100% on hover / current page). */
  .nav-menu .nav-link { display: block; width: 100%; padding: 0.9rem 0; }
  .nav-menu .btn { margin-top: 1rem; width: 100%; }
  .nav-toggle { display: flex; }
  .nav-actions .btn--sm { padding: 0.7em 1.1em; font-size: 0.66rem; }

  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; aspect-ratio: 4 / 3; }
  .hero-content { padding: clamp(2.5rem, 8vw, 3.5rem) 0; }

  .split { grid-template-columns: 1fr; }
  .split .figure { order: -1; }
}

@media (max-width: 480px) {
  .nav-logo-img { height: 34px; }
}

@media (max-width: 720px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-group .btn { width: 100%; }
}
