/* ============================================================
   LeadOps Advisory — Design System v2
   Deep pine green + muted gold. Fraunces display, Inter body.
   Tokens are documented in ../../design/BRAND_GUIDE.md
   ============================================================ */

/* ---------- Fonts (self-hosted, variable, latin) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand greens */
  --green-950: #0b1f1e;
  --green-900: #122b2a;
  --green-800: #1a3a38;
  --green-700: #274c4b;   /* brand primary */
  --green-600: #33605e;

  /* Brand golds */
  --gold-200: #e6d7ae;
  --gold-300: #d8c08a;
  --gold-400: #cbb26a;    /* brand light gold */
  --gold-500: #bfa35f;    /* logo gold */
  --gold-700: #7d6a3c;
  --gold-800: #66562c;

  /* Neutrals (warm) */
  --paper:   #f7f4ec;
  --paper-2: #efeadc;
  --cream:   #fffdf7;
  --ink:     #182b29;
  --ink-2:   #3d4f4c;
  --ink-3:   #55635f;

  /* Hairlines */
  --line:      #e0d9c6;
  --line-soft: #eae4d4;
  --line-dark: rgba(216, 192, 138, 0.22);

  /* Semantic */
  --bg: var(--paper);
  --text: var(--ink);
  --text-soft: var(--ink-2);
  --accent: var(--gold-500);
  --accent-deep: var(--gold-800);
  --surface-dark: var(--green-900);

  /* Type scale (fluid) */
  --fs-hero:  clamp(2.25rem, 1.7rem + 2.4vw, 3.5rem);
  --fs-h2:    clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  --fs-h3:    clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-h4:    1.1875rem;
  --fs-lead:  clamp(1.125rem, 1.03rem + 0.3vw, 1.25rem);
  --fs-body:  1.0625rem;
  --fs-small: 0.9375rem;
  --fs-caps:  0.8125rem;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Rhythm */
  --space-section: clamp(4rem, 8vw, 6.5rem);
  --space-block: clamp(2rem, 4vw, 3.25rem);
  --gutter: clamp(1.25rem, 4.5vw, 2.5rem);
  --container: 72.5rem;
  --container-narrow: 50rem;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-1: 0 1px 2px rgba(18, 43, 42, 0.05), 0 8px 28px -12px rgba(18, 43, 42, 0.14);
  --shadow-2: 0 2px 4px rgba(18, 43, 42, 0.06), 0 18px 44px -16px rgba(18, 43, 42, 0.22);

  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);
  --header-h: 4.5rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
  font-weight: 580;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.22; }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 650; letter-spacing: 0; }

p { margin: 0 0 1.1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s var(--ease); }
a:hover { color: var(--green-700); }

ul { padding-left: 1.2em; margin: 0 0 1.1em; }
li { margin-bottom: 0.45em; }
li::marker { color: var(--gold-500); }

strong { font-weight: 650; color: var(--ink); }

::selection { background: var(--gold-300); color: var(--green-950); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(11, 31, 30, 0.6);
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 200;
  background: var(--green-900);
  color: var(--gold-200);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}
.skip-link:focus { left: 0.75rem; color: var(--gold-200); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); }
.section--tight { padding-block: var(--space-block); }
.section--dark { background: linear-gradient(178deg, var(--green-900) 0%, var(--green-950) 100%); color: #eef0e9; }
.section--alt { background: var(--paper-2); }
.section--cream { background: var(--cream); }

.section--dark h1, .section--dark h2, .section--dark h3 { color: #f4f1e6; }
.section--dark p { color: #d7ddd3; }
.section--dark a { color: var(--gold-300); }
.section--dark a:hover { color: var(--gold-200); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-caps);
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--gold-500);
  flex: none;
}
.section--dark .eyebrow { color: var(--gold-300); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 62ch;
}
.section--dark .lead { color: #ccd5cc; }

.section-head { max-width: 46rem; margin-bottom: var(--space-block); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.125rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  touch-action: manipulation;
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--green-950);
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 10px 24px -10px rgba(191, 163, 95, 0.55);
}
.btn--gold:hover { background: linear-gradient(180deg, var(--gold-300), var(--gold-400)); color: var(--green-950); transform: translateY(-1px); }

.btn--ghost-dark {
  border-color: var(--line-dark);
  color: var(--gold-200);
  background: rgba(216, 192, 138, 0.05);
}
.btn--ghost-dark:hover { border-color: var(--gold-400); color: var(--gold-200); background: rgba(216, 192, 138, 0.12); }

.btn--ghost {
  border-color: var(--gold-700);
  color: var(--accent-deep);
  background: transparent;
}
.btn--ghost:hover { background: rgba(191, 163, 95, 0.1); color: var(--accent-deep); }

.btn--lg { min-height: 3.375rem; padding: 0.95rem 2rem; font-size: 1.0625rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 30, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 192, 138, 0.14);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.55); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 2.1rem; width: auto; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.site-nav a {
  color: #e9e5d6;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--gold-300); }
.site-nav a[aria-current="page"] { color: var(--gold-300); border-bottom-color: var(--gold-500); }
.site-nav .btn { min-height: 2.625rem; padding: 0.5rem 1.25rem; font-size: 0.9375rem; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(216, 192, 138, 0.35);
  border-radius: 999px;
  overflow: hidden;
  flex: none;
}
.lang-switch a, .lang-switch span {
  padding: 0.45rem 0.82rem;
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #cfd8cd;
  line-height: 1;
}
.lang-switch [aria-current="true"] { background: var(--gold-500); color: var(--green-950); }
.lang-switch a:hover { color: var(--gold-200); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(216, 192, 138, 0.35);
  border-radius: 10px;
  color: var(--gold-200);
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 1.4rem; height: 1.4rem; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--green-950);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.75rem var(--gutter) 1.5rem;
    display: none;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  body.nav-open { overflow: hidden; }
  .site-nav a { padding: 0.9rem 0.25rem; font-size: 1.0625rem; border-bottom: 1px solid rgba(216, 192, 138, 0.1); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--gold-500); }
  .site-nav .btn { margin-top: 1.1rem; justify-content: center; }
  .nav-open .nav-toggle .icon-menu { display: none; }
  .nav-open .nav-toggle .icon-close { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90rem 46rem at 82% -18%, rgba(51, 96, 94, 0.55) 0%, rgba(18, 43, 42, 0) 55%),
    linear-gradient(168deg, var(--green-800) 0%, var(--green-900) 42%, var(--green-950) 100%);
  color: #eef0e9;
}
.hero .eyebrow { color: var(--gold-300); }
.hero h1 { color: #f6f3e8; margin-bottom: 0.5em; }
.hero h1 em { font-style: italic; color: var(--gold-300); }

.hero-mark {
  position: absolute;
  right: -14rem;
  top: -10rem;
  width: 52rem;
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-block: clamp(4rem, 8.5vw, 7.5rem) clamp(3.5rem, 7vw, 6rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}

.hero-copy .lead { margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.1rem; }

.hero-points { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; padding: 0; margin: 0; list-style: none; }
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--fs-small);
  color: #c9d2c8;
  margin: 0;
}
.hero-points svg { width: 1rem; height: 1rem; color: var(--gold-400); flex: none; }

/* Portrait */
.hero-portrait { justify-self: center; text-align: center; position: relative; }
.portrait-ring {
  position: relative;
  width: min(21rem, 72vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  padding: 10px;
  background:
    linear-gradient(var(--green-900), var(--green-900)) padding-box,
    conic-gradient(from 210deg, var(--gold-700), var(--gold-300), var(--gold-500), var(--gold-200), var(--gold-700)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.65);
}
.portrait-ring img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }

.portrait-card {
  display: inline-block;
  margin-top: -1.9rem;
  position: relative;
  background: rgba(11, 31, 30, 0.92);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 0.85rem 1.4rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.portrait-card strong { display: block; font-family: var(--font-display); font-size: 1.1875rem; font-weight: 560; color: #f4f1e6; letter-spacing: 0.01em; }
.portrait-card span { font-size: 0.8125rem; color: var(--gold-300); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* Trust strip */
.trust-strip { border-top: 1px solid rgba(216, 192, 138, 0.16); position: relative; }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 2.4rem; padding-block: 1.4rem; }
.trust-label { font-size: var(--fs-caps); letter-spacing: 0.13em; text-transform: uppercase; color: #97a89d; font-weight: 500; }
.trust-names { display: flex; flex-wrap: wrap; gap: 0.7rem 2.2rem; align-items: center; margin: 0; padding: 0; list-style: none; }
.trust-names li { margin: 0; font-family: var(--font-display); font-size: 1.0625rem; font-weight: 500; letter-spacing: 0.03em; color: #cfd8cb; white-space: nowrap; }

/* ---------- Stats ---------- */
.stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  border-top: 2px solid var(--gold-500);
  padding-top: 1.1rem;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.35rem + 2vw, 2.75rem);
  font-weight: 560;
  line-height: 1;
  color: var(--green-700);
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums;
  margin-bottom: 0.55rem;
}
.stat b sup { font-size: 0.55em; color: var(--gold-800); font-weight: 500; }
.stat span { font-size: var(--fs-small); color: var(--ink-2); line-height: 1.5; display: block; max-width: 26ch; }

.stats-note { margin-top: 2rem; font-size: 0.875rem; color: var(--ink-3); }

/* ---------- Cards ---------- */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-1);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
a.card { text-decoration: none; color: inherit; display: block; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--gold-400); }

.card--static:hover { transform: none; box-shadow: var(--shadow-1); border-color: var(--line); }

.card-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 560;
  color: var(--accent-deep);
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.card-num::after { content: ""; width: 1.7rem; height: 1px; background: var(--gold-500); }

.card h3 { margin-bottom: 0.5rem; font-size: 1.4375rem; }
.card p { font-size: 1rem; color: var(--ink-2); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  font-weight: 650;
  font-size: 0.9375rem;
  color: var(--accent-deep);
  text-decoration: none;
}
.card-link svg { width: 1rem; height: 1rem; transition: transform 0.2s var(--ease); }
.card:hover .card-link svg, .card-link:hover svg { transform: translateX(4px); }

/* Situation cards (icon top) */
.icon-chip {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  color: var(--gold-300);
  margin-bottom: 1.2rem;
}
.icon-chip svg { width: 1.4rem; height: 1.4rem; }

/* ---------- Quotes / testimonials ---------- */
.quote-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  break-inside: avoid;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  font-weight: 430;
  line-height: 1.5;
  color: var(--ink);
}
.quote-card blockquote::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold-500);
  margin-bottom: 0.7rem;
  font-weight: 560;
}
.quote-who { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.avatar {
  width: 3rem;
  height: 3rem;
  flex: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--green-700), var(--green-950));
  border: 1.5px solid var(--gold-500);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 560;
  letter-spacing: 0.05em;
}
.quote-who b { display: block; font-size: 0.9875rem; font-weight: 650; color: var(--ink); line-height: 1.3; }
.quote-who span { display: block; font-size: 0.8438rem; color: var(--ink-3); line-height: 1.4; }

.quote-featured {
  border: none;
  background: linear-gradient(170deg, var(--green-800), var(--green-950));
  color: #edefe6;
}
.quote-featured blockquote { color: #f1eede; }
.quote-featured .quote-who b { color: #f1eede; }
.quote-featured .quote-who span { color: #b9c5b8; }

/* Masonry-ish testimonial columns */
.quote-wall { columns: 1; column-gap: 1.75rem; }
@media (min-width: 760px) { .quote-wall { columns: 2; } }
@media (min-width: 1120px) { .quote-wall { columns: 3; } }
.quote-wall .quote-card { margin-bottom: 1.75rem; }

/* Group header for testimonial themes */
.theme-head { display: flex; align-items: baseline; gap: 1.1rem; margin: var(--space-block) 0 1.6rem; }
.theme-head h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2.1rem); margin: 0; }
.theme-head::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.theme-sub { font-size: var(--fs-small); color: var(--ink-3); margin: -0.9rem 0 1.6rem; }

/* ---------- Method / floor section ---------- */
.floor-quote {
  border-left: 3px solid var(--gold-500);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 1.8rem 0 0;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 430;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.floor-quote footer { font-family: var(--font-body); font-style: normal; font-size: 0.875rem; color: var(--ink-3); margin-top: 0.8rem; }

/* ---------- Role tags ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.7rem; padding: 0; margin: 0; list-style: none; }
.tag-row li {
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #dfe4d6;
  background: rgba(216, 192, 138, 0.06);
  white-space: nowrap;
}
.tag-row li.tag--gold { border-color: var(--gold-500); color: var(--gold-300); }

/* ---------- Lists with gold check ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1.1em; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.8em; }
.check-list svg { width: 1.25rem; height: 1.25rem; flex: none; color: var(--gold-700); margin-top: 0.2em; }
.section--dark .check-list svg { color: var(--gold-400); }

/* ---------- Timeline ---------- */
.tl { list-style: none; margin: 0; padding: 0; position: relative; }
.tl::before { content: ""; position: absolute; left: 0.4375rem; top: 0.5rem; bottom: 0.5rem; width: 1px; background: var(--line); }
.tl li { position: relative; padding: 0 0 2rem 2.4rem; margin: 0; }
.tl li:last-child { padding-bottom: 0; }
.tl li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background: var(--paper);
  border: 2.5px solid var(--gold-500);
}
.tl-period { font-size: var(--fs-caps); font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); display: block; margin-bottom: 0.25rem; }
.tl h3 { font-size: 1.25rem; margin-bottom: 0.3rem; font-family: var(--font-body); font-weight: 650; letter-spacing: 0; }
.tl p { font-size: 0.9875rem; color: var(--ink-2); max-width: 58ch; }

/* ---------- Credential cards ---------- */
.cred { display: flex; gap: 1.1rem; align-items: flex-start; }
.cred .icon-chip { margin: 0; flex: none; }
.cred h3 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 650; margin-bottom: 0.3rem; letter-spacing: 0; }
.cred p { font-size: 0.9375rem; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.25rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.faq summary:hover { color: var(--accent-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--gold-700);
  border-bottom: 2px solid var(--gold-700);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-right: 0.3rem;
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq .faq-a { padding: 0 0.25rem 1.5rem; color: var(--ink-2); max-width: 62ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .hero-mark { right: auto; left: -16rem; top: -14rem; opacity: 0.07; }
.cta-inner { position: relative; text-align: center; max-width: 46rem; margin-inline: auto; }
.cta-inner h2 { margin-bottom: 0.5em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2.2rem; }
.cta-contact { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem 2.2rem; justify-content: center; font-size: var(--fs-small); }
.cta-contact a { display: inline-flex; align-items: center; gap: 0.55rem; color: #d3dbcf; text-decoration: none; }
.cta-contact a:hover { color: var(--gold-300); }
.cta-contact svg { width: 1.05rem; height: 1.05rem; color: var(--gold-400); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: #b9c5b8; border-top: 1px solid rgba(216, 192, 138, 0.14); }
.footer-inner { display: grid; gap: 2.5rem; padding-block: 3.5rem 2.5rem; }
@media (min-width: 860px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand img { height: 2rem; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.9375rem; max-width: 34ch; color: #9fae9f; }

.site-footer h4 { color: var(--gold-300); font-size: var(--fs-caps); letter-spacing: 0.13em; text-transform: uppercase; font-weight: 650; margin-bottom: 1rem; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 0.65rem; }
.footer-list a { color: #cfd8cb; text-decoration: none; font-size: 0.9688rem; display: inline-flex; align-items: center; gap: 0.6rem; padding-block: 0.3rem; }
.footer-list a:hover { color: var(--gold-300); }
.footer-list svg { width: 1.05rem; height: 1.05rem; color: var(--gold-500); flex: none; }

.footer-bottom {
  border-top: 1px solid rgba(216, 192, 138, 0.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.8438rem;
  color: #8a9a8d;
}
.footer-bottom a { color: #aab8aa; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    radial-gradient(70rem 30rem at 90% -30%, rgba(51, 96, 94, 0.5) 0%, rgba(18, 43, 42, 0) 60%),
    linear-gradient(170deg, var(--green-800) 0%, var(--green-900) 55%, var(--green-950) 100%);
  color: #eef0e9;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-mark { width: 38rem; right: -12rem; top: -12rem; opacity: 0.08; }
.page-hero-inner { position: relative; padding-block: clamp(3.5rem, 7vw, 5.5rem); max-width: 54rem; }
.page-hero h1 { color: #f6f3e8; font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.25rem); }
.page-hero .lead { color: #ccd5cc; }
.page-hero .eyebrow { color: var(--gold-300); }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; padding: 0; margin: 0 0 1.6rem; list-style: none; font-size: 0.8438rem; }
.breadcrumbs li { margin: 0; display: inline-flex; align-items: center; gap: 0.5rem; color: #9db0a2; }
.breadcrumbs li + li::before { content: "/"; color: rgba(216, 192, 138, 0.5); }
.breadcrumbs a { color: #c2cec2; text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-300); }

/* ---------- About layout ---------- */
.about-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
@media (min-width: 940px) { .about-grid { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); } }
.about-side { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.5rem; }
@media (max-width: 939px) { .about-side { position: static; } }

/* ---------- Reveal animations ----------
   Content is visible by default (no-JS, crawlers, screenshots).
   main.js hides only below-fold elements, then reveals on scroll. */
.reveal--pending { opacity: 0; transform: translateY(22px); }
.reveal--anim { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal--anim.in { opacity: 1; transform: none; }
.reveal--anim.reveal-d1 { transition-delay: 0.08s; }
.reveal--anim.reveal-d2 { transition-delay: 0.16s; }
.reveal--anim.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal--pending { opacity: 1; transform: none; }
  .reveal--anim { transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .hero-ctas { display: none; }
  body { background: #fff; color: #000; }
  .section--dark, .hero, .page-hero { background: #fff; color: #000; }
  .section--dark h2, .hero h1, .page-hero h1 { color: #000; }
}

/* ---------- Engagements: wide 2x2 cards, art left, content right ---------- */
.eng-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: var(--space-block); }
@media (min-width: 860px) { .eng-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }
.card.card--eng {
  display: grid;
  grid-template-columns: minmax(64px, 84px) 1fr;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.1rem, 1.8vw, 1.4rem) clamp(1.2rem, 2vw, 1.6rem);
}
.eng-media { display: block; align-self: center; }
.eng-media img { display: block; width: 100%; height: auto; }
.eng-body { display: block; min-width: 0; }
.card--eng .card-num { margin-bottom: 0.35rem; }
.card--eng h3 { font-size: 1.1875rem; margin-bottom: 0.3rem; }
.card--eng p { font-size: 0.9063rem; line-height: 1.5; }
.card--eng .card-link { margin-top: 0.55rem; font-size: 0.875rem; }
.eng-art { filter: none; }
/* Phones: stack the card so the copy gets the full width (the 84px image column
   squeezed the text into many short lines) — infographic on top, text below. */
@media (max-width: 620px) {
  .card.card--eng { grid-template-columns: 1fr; gap: 0.7rem; align-items: start; }
  .card--eng .eng-media { width: 92px; justify-self: start; }
}
.eng-art--svc { display: block; width: clamp(150px, 44%, 210px); height: auto; margin-bottom: 1.2rem; }
.eng-proof {
  margin: 0.7rem 0 0;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--accent-deep);
  font-weight: 600;
}
.card .eng-proof { color: var(--gold-800); }

/* ---------- Testimonial teaser: light, human, one click deep ---------- */
.t-teaser { background: var(--paper); }
.t-faces {
  display: flex;
  justify-content: center;
  margin: 1.6rem 0 1.5rem;
}
.t-faces img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--cream);
  box-shadow: 0 6px 16px -8px rgba(18, 43, 42, 0.4);
}
.t-faces img + img { margin-left: -12px; }
.t-teaser-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.75rem);
  font-weight: 520;
  line-height: 1.4;
  color: var(--green-900);
  max-width: 34ch;
  margin: 0 auto 0.8rem;
}
.t-teaser-who { color: var(--ink-3); font-size: var(--fs-small); margin-bottom: 1.6rem; }

/* ---------- Pre-footer CTA: cream card that overlaps the footer ---------- */
.cta-lift {
  background: var(--paper);
  padding-top: var(--space-section);
  position: relative;
  z-index: 2;
}
.cta-lift .cta-card {
  background: var(--cream);
  border: 1.5px solid var(--gold-400);
  border-radius: 16px;
  box-shadow: 0 32px 70px -32px rgba(18, 43, 42, 0.5);
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.4rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: calc(-1 * clamp(3.4rem, 8vw, 5.6rem));
}
.cta-lift .cta-card h2 { color: var(--green-900); }
.cta-lift .cta-card .lead { color: var(--ink-2); margin-inline: auto; }
.cta-lift .cta-card .cta-contact a { color: var(--gold-800); }
.site-footer.has-cta-lift { padding-top: calc(clamp(3.4rem, 8vw, 5.6rem) + 3.2rem); }


/* ---------- Walk-the-floor nav item: a small film chip (gold play badge + duration) ---------- */
.site-nav .nav-walk {
  display: inline-flex; align-items: center; gap: 0.55em; white-space: nowrap;
  padding: 0.4rem 0.95rem 0.4rem 0.45rem;
  border: 1px solid rgba(191, 163, 95, 0.5);
  border-radius: 999px;
  background: rgba(191, 163, 95, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-nav .nav-walk:hover { background: rgba(191, 163, 95, 0.16); border-color: rgba(191, 163, 95, 0.85); }
.nav-play { width: 1.5em; height: 1.5em; flex: none; }
.nav-walk-dur {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold-300); line-height: 1;
  padding-left: 0.6em; border-left: 1px solid rgba(191, 163, 95, 0.35);
}
@media (max-width: 900px) {
  .site-nav .nav-walk { align-self: flex-start; margin: 0.6rem 0 0.25rem; padding: 0.55rem 1.05rem 0.55rem 0.55rem; font-size: 1.0625rem; }
}

/* ---------- Teaser attribution: centered block ---------- */
.t-teaser blockquote { margin-left: auto; margin-right: auto; }
.t-teaser-who { text-align: center; max-width: 46ch; margin-left: auto; margin-right: auto; margin-bottom: 1.6rem; }
