/* ============================================================
   Summit Senior Services — Modernized expression (2026)
   Keeps the production palette + IA; re-engineers the look.
   Foundations adapted from colors_and_type.css.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* ---- Palette (verbatim from production) ---- */
  --navy:        #1a2e44;
  --navy-900:    #0f1d2b;
  --navy-800:    #142639;
  --navy-700:    #1a2e44;
  --navy-600:    #2a4159;
  --navy-500:    #3c556e;
  --navy-400:    #647a91;
  --navy-300:    #8ea0b3;
  --gold:        #c9a84c;
  --gold-700:    #a98c35;
  --gold-800:    #8a7128;
  --gold-300:    #ead9ad;
  --gold-100:    #faf3e3;
  --cream:       #f8f5ef;
  --cream-deep:  #f1ece2;
  --warm-gray:   #6b6560;
  --warm-gray-2: #8a847d;
  --light:       #ffffff;
  --border:      #e3ddd3;
  --border-strong:#d4cdbf;

  /* ---- Type ---- */
  --serif: 'Newsreader', 'Iowan Old Style', Georgia, serif; /* @kind font */
  --sans:  'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* @kind font */
  --headline-font: var(--serif);   /* tweakable */

  /* ---- Tweak-driven knobs (defaults) ---- */
  --radius-card: 8px;
  --radius-btn: 6px;
  --radius-img: 10px;

  /* ---- Layout ---- */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem); /* @kind spacing */

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1); /* @kind other */
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1.0625rem;          /* 17px base — senior-legible */
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ─────────── Shared section rhythm ─────────── */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }

.band-navy  { background: var(--navy); color: var(--cream); }
.band-cream { background: var(--cream-deep); }
.band-light { background: var(--light); }

/* ─────────── Eyebrow device (rule + caps) ─────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.band-navy .eyebrow { color: var(--gold); }

/* ─────────── Headings ─────────── */
.h-display {
  font-family: var(--headline-font);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-family: var(--headline-font);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.band-navy .h-section, .band-navy .h-display { color: var(--cream); }

/* When headline font is the sans, tune weight/spacing */
html[data-headline="sans"] {
  --headline-font: var(--sans);
}
html[data-headline="sans"] .h-display,
html[data-headline="sans"] .h-section {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--warm-gray);
  font-weight: 400;
  max-width: 46ch;
  margin: 1.4rem 0 0;
}
.band-navy .lead { color: rgba(248,245,239,0.74); }

.section-head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn--primary { background: var(--navy); color: var(--cream); }
.btn--primary:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-700); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(26,46,68,0.03); }
.band-navy .btn--ghost { color: var(--cream); border-color: rgba(248,245,239,0.3); }
.band-navy .btn--ghost:hover { border-color: var(--cream); background: rgba(255,255,255,0.06); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: gap 0.2s var(--ease), color 0.2s;
}
.textlink:hover { gap: 0.7rem; color: var(--gold-800); }
.band-navy .textlink { color: var(--cream); }

/* ─────────── NAV (transparent over hero → solid on scroll) ─────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-logo .logo-navy { display: none; }

.nav-links { display: flex; gap: clamp(1.1rem, 2vw, 1.9rem); align-items: center; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s;
  text-shadow: 0 1px 10px rgba(15,29,43,0.45);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.5rem); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; font-size: 0.95rem;
  color: var(--cream);
  white-space: nowrap;
  transition: color 0.2s;
  text-shadow: 0 1px 10px rgba(15,29,43,0.45);
}
.nav-phone svg { width: 15px; height: 15px; fill: none; stroke: var(--gold); stroke-width: 2; }
.nav-cta {
  padding: 0.72rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
  box-shadow: 0 8px 22px -10px rgba(201,168,76,0.7);
}

/* Scrolled state — solid cream bar */
.nav.scrolled {
  background: rgba(248,245,239,0.94);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -16px rgba(15,29,43,0.4);
}
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-navy { display: block; }
.nav.scrolled .nav-links a { color: var(--navy); }
.nav.scrolled .nav-phone { color: var(--navy); }
.nav.scrolled .nav-links a, .nav.scrolled .nav-phone { text-shadow: none; }
.nav.scrolled .hamburger span { background: var(--navy); }

.hamburger { display: none; }

@media (max-width: 920px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .hamburger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: background 0.3s; }
}

/* ─────────── HERO (full-bleed background photo) ─────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
  --hero-ov: 0.28; /* @kind other */
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
}
/* Solid shade (tweakable) + directional gradient for text legibility */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy-900);
  opacity: var(--hero-ov);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,29,43,0.74) 0%, rgba(15,29,43,0.2) 11%, rgba(15,29,43,0) 22%),
    linear-gradient(102deg, rgba(15,29,43,0.95) 0%, rgba(15,29,43,0.9) 36%, rgba(15,29,43,0.6) 60%, rgba(15,29,43,0.2) 84%, rgba(15,29,43,0) 100%),
    linear-gradient(to top, rgba(15,29,43,0.55) 0%, rgba(15,29,43,0) 38%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 660px; padding-block: clamp(7rem, 14vh, 10rem) clamp(3.5rem, 8vh, 6rem); }
.hero-loc {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-loc::before { content: ''; width: 32px; height: 2px; background: var(--gold); border-radius: 2px; }
.hero h1 {
  font-family: var(--headline-font);
  font-weight: 500;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 1.5rem;
  text-wrap: balance;
  text-shadow: 0 1px 24px rgba(15,29,43,0.4);
}
html[data-headline="sans"] .hero h1 { font-weight: 700; letter-spacing: -0.035em; }
.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: rgba(248,245,239,0.82);
  max-width: 50ch;
  margin: 0 0 2.3rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }
.hero .btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 14px 34px -14px rgba(201,168,76,0.6); }
.hero .btn--primary:hover { background: var(--gold-700); transform: translateY(-1px); }
.hero .btn--ghost { color: var(--cream); border-color: rgba(248,245,239,0.4); }
.hero .btn--ghost:hover { border-color: var(--cream); background: rgba(255,255,255,0.08); }
.hero-call {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.85rem; font-size: 1rem; color: rgba(248,245,239,0.68);
}
.hero-call a { font-weight: 700; color: var(--cream); border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.hero-call a:hover { color: var(--gold); }
.hero-credit {
  position: absolute;
  right: var(--gutter); bottom: 1.5rem; z-index: 2;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,245,239,0.6);
}
@media (max-width: 760px) {
  .hero-bg img { object-position: 40% 22%; }
  .hero-bg::after {
    background:
      linear-gradient(to top, rgba(15,29,43,0.96) 4%, rgba(15,29,43,0.72) 42%, rgba(15,29,43,0.4) 100%);
  }
  .hero { --hero-ov: 0.32; /* @kind other */ }
  .hero-content { padding-block: clamp(7rem, 18vh, 9rem) 3rem; }
  .hero-credit { display: none; }
}

/* ─────────── TRUST STRIP ─────────── */
.trust { background: var(--light); border-block: 1px solid var(--border); }
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.6rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding-inline: 1.75rem;
}
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-item:first-child { padding-left: 0; }
.trust-glyph { flex-shrink: 0; width: 26px; height: 26px; stroke: var(--gold-700); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-txt { font-size: 0.92rem; font-weight: 600; color: var(--navy); line-height: 1.25; }
.trust-txt small { display: block; font-size: 0.78rem; font-weight: 400; color: var(--warm-gray); margin-top: 0.1rem; }
@media (max-width: 900px) {
  .trust-inner { grid-template-columns: repeat(2,1fr); gap: 1.3rem 0; }
  .trust-item { padding: 0 1.25rem; }
  .trust-item:nth-child(odd) { padding-left: 0; }
  .trust-item:nth-child(3) { border-left: 0; }
}
@media (max-width: 520px) {
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-left: 0 !important; padding: 0; }
}

/* ─────────── PULL QUOTE / PROMISE ─────────── */
.promise-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  max-width: 1000px;
}
.promise-portrait { flex-shrink: 0; }
.promise-portrait img {
  display: block;
  width: clamp(132px, 17vw, 200px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 12%;
  border-radius: var(--radius-img);
  box-shadow: 0 24px 48px -24px rgba(26,46,68,0.4);
}
.promise-rule { width: 4px; align-self: stretch; background: var(--gold); border-radius: 3px; min-height: 100%; }
.promise blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.9vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-wrap: balance;
}
.promise .attr {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  font-weight: 500;
}
.promise .attr strong { color: var(--navy); font-weight: 700; }
@media (max-width: 640px) {
  .promise-grid { grid-template-columns: auto 1fr; }
  .promise-portrait img { width: 110px; }
}
@media (max-width: 460px) {
  .promise-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .promise-rule { display: none; }
}

/* ─────────── SERVICES GRID (photo-top cards) ─────────── */
.svc-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.25rem, 4vw, 3rem); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -28px rgba(26,46,68,0.45);
}
.svc-photo {
  display: block;
  width: 100%;
  height: 230px;
  background: var(--cream-deep);
}
.svc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.85rem 2rem 2rem;
}
.svc-card h3 {
  font-family: var(--headline-font);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 0.65rem;
}
html[data-headline="sans"] .svc-card h3 { font-weight: 700; }
.svc-card p { margin: 0; font-size: 0.98rem; color: var(--warm-gray); line-height: 1.6; }
.svc-card p strong { color: var(--navy); font-weight: 600; }
.svc-cta {
  align-self: flex-start;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
  background: var(--gold);
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-btn);
  transition: background 0.2s var(--ease), gap 0.2s var(--ease), transform 0.2s var(--ease);
}
.svc-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-cta:hover { background: var(--gold-700); gap: 0.75rem; }
@media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } .svc-photo { height: 200px; } }

/* ─────────── STEPS ─────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step { position: relative; padding-top: 1.5rem; border-top: 2px solid var(--border-strong); }
.step-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.22rem; color: var(--navy); margin: 0 0 0.5rem; letter-spacing: -0.01em; }
html[data-headline="sans"] .step h3 { font-weight: 700; }
.step p { margin: 0; font-size: 0.95rem; color: var(--warm-gray); line-height: 1.6; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2,1fr); gap: 2rem 1.5rem; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ─────────── WHO WE SERVE (default: light card; navy variant below) ─────────── */
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.who-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 2rem 2.1rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.who-card:hover { border-color: rgba(201,168,76,0.6); box-shadow: var(--shadow-md); }
.who-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.9rem;
}
.who-card h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.3rem; color: var(--navy); margin: 0 0 0.6rem; letter-spacing: -0.01em; }
html[data-headline="sans"] .who-card h3 { font-weight: 700; }
.who-card p { margin: 0; font-size: 0.96rem; color: var(--warm-gray); line-height: 1.6; }

/* Navy band (homepage “Who we serve”): cream text on translucent dark cards */
.band-navy .who-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.band-navy .who-card:hover { border-color: rgba(201,168,76,0.5); background: rgba(255,255,255,0.06); box-shadow: none; }
.band-navy .who-tag { color: var(--gold); }
.band-navy .who-card h3 { color: var(--cream); }
.band-navy .who-card p { color: rgba(248,245,239,0.72); }
@media (max-width: 720px) { .who-grid { grid-template-columns: 1fr; } }

/* ─────────── FOUNDER SPOTLIGHT ─────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.founder-media { position: relative; }
.founder-media img { width: 100%; aspect-ratio: 4/4.7; object-fit: cover; object-position: center 15%; border-radius: var(--radius-img); }
.founder-facts {
  display: flex;
  gap: 0;
  margin-top: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--light);
  overflow: hidden;
}
.founder-fact { flex: 1; padding: 0.95rem 1rem; text-align: center; }
.founder-fact + .founder-fact { border-left: 1px solid var(--border); }
.founder-fact b { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--navy); font-weight: 600; line-height: 1.1; white-space: nowrap; }
.founder-fact span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gray); font-weight: 500; }
.founder-body p { margin: 0 0 1.15rem; font-size: 1.08rem; line-height: 1.7; color: var(--warm-gray); }
.founder-body p strong { color: var(--navy); font-weight: 600; }
.founder-lead {
  font-family: var(--serif) !important;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem) !important;
  line-height: 1.4 !important;
  color: var(--navy) !important;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.founder-sign { margin-top: 1.75rem; display: flex; align-items: baseline; gap: 0.9rem; }
.founder-sign .name { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold-700); line-height: 1; }
.founder-sign .role { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); font-weight: 500; }
@media (max-width: 820px) { .founder-grid { grid-template-columns: 1fr; } .founder-media { max-width: 360px; } }

/* ─────────── FREE GUIDE ─────────── */
.guide-grid { display: grid; grid-template-columns: 1fr 0.78fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.guide-meta { display: flex; gap: 2.25rem; margin: 1.75rem 0; padding-block: 1.1rem; border-block: 1px solid rgba(255,255,255,0.12); }
.guide-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.guide-meta-num { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--gold); line-height: 1; }
.guide-meta-lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,245,239,0.6); font-weight: 500; }
.guide-note { font-size: 0.88rem; color: rgba(248,245,239,0.6); }
.guide-cover {
  display: block;
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 2.5rem 2.25rem 1.6rem;
  text-align: center;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.6), 0 8px 24px -10px rgba(0,0,0,0.4);
  transition: transform 0.25s var(--ease);
  max-width: 380px;
  margin-inline: auto;
}
.guide-cover:hover { transform: translateY(-4px) rotate(-0.5deg); }
.guide-cover img.mark { width: 78px; margin: 0 auto 1.4rem; }
.guide-cover-eyebrow { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-700); font-weight: 700; margin-bottom: 0.9rem; }
.guide-cover h3 { font-family: var(--serif); font-weight: 500; font-size: 1.55rem; line-height: 1.18; color: var(--navy); margin: 0 0 0.8rem; letter-spacing: -0.01em; }
.guide-cover p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.55; margin: 0 auto 1.4rem; max-width: 30ch; }
.guide-cover .rule { width: 50px; height: 2px; background: var(--gold); margin: 0 auto 1.3rem; border-radius: 2px; }
.guide-cover .by-name { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold-700); }
.guide-cover .by-role { font-size: 0.74rem; color: var(--warm-gray); margin-top: 0.2rem; }
.guide-cover .foot { margin-top: 1.4rem; padding-top: 0.9rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--warm-gray); }
@media (max-width: 820px) { .guide-grid { grid-template-columns: 1fr; } }

/* ─────────── CLOSING CTA ─────────── */
.closing { background: var(--cream-deep); }
.closing-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.closing-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 18%; border-radius: var(--radius-img); }
.closing h2 { font-family: var(--headline-font); font-weight: 500; font-size: clamp(1.9rem,3.4vw,2.7rem); color: var(--navy); margin: 0 0 1rem; letter-spacing: -0.015em; line-height: 1.08; }
html[data-headline="sans"] .closing h2 { font-weight: 700; }
.closing p { font-size: 1.1rem; color: var(--warm-gray); max-width: 48ch; margin: 0 0 1.75rem; }
.closing-sign { margin: 0 0 1.75rem; }
.closing-sign .name { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold-700); }
.closing-sign .role { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); margin-top: 0.2rem; }
.closing-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }
.closing-actions .call { font-size: 1rem; color: var(--warm-gray); }
.closing-actions .call a { font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--gold); }
@media (max-width: 720px) { .closing-grid { grid-template-columns: 1fr; } .closing-media { max-width: 300px; } }

/* ─────────── FOOTER ─────────── */
.footer { background: var(--navy-900); color: rgba(248,245,239,0.7); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: clamp(3rem,5vw,4rem) var(--gutter) 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 56px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; color: rgba(248,245,239,0.6); max-width: 32ch; }
.footer-col h5 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 1rem; }
.footer-col a, .footer-col span { display: block; font-size: 0.92rem; color: rgba(248,245,239,0.7); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 1.5rem var(--gutter); border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: rgba(248,245,239,0.5); }
.footer-bottom a { color: rgba(248,245,239,0.5); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─────────── MOBILE MENU ─────────── */
.mobile-menu { display: none; position: fixed; inset: 0 0 auto 0; top: 0; background: var(--navy); z-index: 100; padding: 5rem 2rem 2rem; flex-direction: column; gap: 0.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--cream); font-size: 1.2rem; font-weight: 500; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu .close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: 0; color: var(--cream); font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-menu .m-cta { margin-top: 1rem; background: var(--gold); color: var(--navy); border-radius: var(--radius-btn); text-align: center; border: 0; font-weight: 700; }

/* ─────────── MOBILE STICKY CTA ─────────── */
.mcta { display: none; }
@media (max-width: 720px) {
  .mcta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--border-strong);
    box-shadow: 0 -6px 20px -8px rgba(0,0,0,0.25);
  }
  .mcta a { background: var(--light); color: var(--navy); padding: 0.95rem; text-align: center; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
  .mcta a.quote { background: var(--navy); color: var(--cream); }
  body { padding-bottom: 56px; }
}

/* ─────────── Reveal on scroll (progressive enhancement only) ─────────── */
/* Hidden state applies ONLY when JS is running AND motion is allowed, so
   print, PDF export, no-JS, and reduced-motion always show content. */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); transition-delay: var(--rv-d, 0ms); will-change: opacity, transform; }
  html.js .reveal.in { opacity: 1; transform: none; }
  /* Directional slide-in variants (override the base translateY) */
  html.js .reveal--left  { transform: translateX(-52px); }
  html.js .reveal--right { transform: translateX(52px); }
  html.js .reveal--zoom  { transform: scale(1.05); }
  html.js .reveal--left.in,
  html.js .reveal--right.in,
  html.js .reveal--zoom.in { transform: none; }
}

/* Count-up not used (no invented stats) */
