/* ════════════════════════════════════════════════════════════
   MACADY BIRCH | Marriage & Family Therapist
   Shared stylesheet
   Palette: soft slate navy + warm amber + clean whites
   Type: Playfair Display (display) / Source Sans 3 (body)
   ════════════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --paper:        #F6F8FB;
  --paper-cool:   #EBF0F7;
  --white:        #FFFFFF;
  --midnight:     #18283A;
  --slate:        #2E4560;
  --slate-med:    #4A6580;
  --muted:        #6B839A;
  --sky:          #3E7FB8;
  --sky-light:    #6DA0CA;
  --amber:        #C48A35;
  --amber-dark:   #A06A1A;
  --amber-pale:   #FDF3E3;
  --border:       #C8D6E5;
  --border-light: #DDE8F0;
  --success:      #2E7D52;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Sans 3', system-ui, -apple-system, sans-serif;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 12px rgba(30, 60, 100, 0.08);
  --shadow-hover: 0 6px 24px rgba(30, 60, 100, 0.12);

  --maxw: 1080px;
}

/* ── BASE ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--midnight);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ── NAVIGATION ────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246, 248, 251, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nav-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--midnight);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav-name span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-med);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--sky); background: rgba(62,127,184,0.06); }
.nav-links a.active { color: var(--midnight); }
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  width: 18px;
  background: var(--amber);
  border-radius: 2px;
  margin: 0.15rem auto 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber);
  color: #fff !important;
  padding: 0.55rem 1.15rem !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--amber-dark) !important; transform: translateY(-1px); }
.nav-cta.active::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* focus states */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
.nav-cta:focus-visible, .btn-primary:focus-visible { outline-color: var(--amber); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--amber);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 138, 53, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--slate-med);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: rgba(62, 127, 184, 0.04);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  padding: 4.5rem 2rem 3.5rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--paper-cool);
  border: 1px solid var(--border);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.13;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--sky); }
.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

/* ── SPLIT HERO (text + photo) ─────────────────────────────── */
.hero-split {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 2rem 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-content { text-align: left; }
.hero-content .hero-label { margin-bottom: 1.25rem; }
.hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.13;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.hero-content h1 em { font-style: italic; color: var(--sky); }
.hero-content .hero-sub { margin: 0 0 2rem; max-width: 540px; }
.hero-content .hero-actions { justify-content: flex-start; }
.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

/* ── BIRCH DIVIDER (signature) ─────────────────────────────── */
.birch-divider {
  margin: 3rem auto;
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
  position: relative;
}
.birch-divider::before,
.birch-divider::after {
  content: '';
  position: absolute;
  left: -10px;
  width: 21px;
  height: 1px;
  background: var(--border-light);
}
.birch-divider::before { top: 22px; }
.birch-divider::after  { top: 48px; }

/* ── SECTION ───────────────────────────────────────────────── */
.section {
  padding: 4.5rem 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-narrow { max-width: 760px; }
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.65rem;
}
.section h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 500;
  color: var(--midnight);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.section > p { font-size: 1.05rem; color: var(--muted); max-width: 640px; line-height: 1.85; }
.section > p + p { margin-top: 1.1rem; }

.lead {
  font-size: 1.18rem;
  color: var(--slate);
  line-height: 1.8;
  font-weight: 300;
}

.rule { border: none; height: 1px; background: var(--border-light); max-width: var(--maxw); margin: 0 auto; }

/* ── CARD GRID ─────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 0.6rem;
}
.card p { font-size: 0.97rem; color: var(--muted); line-height: 1.75; }

.step-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--paper-cool);
  line-height: 1;
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--amber-pale);
  border: 1px solid #EBD3A6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
}

/* ── DARK BAND / QUOTE ─────────────────────────────────────── */
.dark-band {
  background: var(--midnight);
  padding: 5rem 2rem;
  text-align: center;
}
.dark-band-inner { max-width: 700px; margin: 0 auto; }
.dark-band blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
  line-height: 1.55;
  font-weight: 400;
}
.dark-band cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2.25rem;
}
.dark-band cite.no-cta { margin-bottom: 0; }

/* ── SPLIT (image + text) ──────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4.5rem 2rem;
}
.split.reverse { grid-template-columns: 1.15fr 0.85fr; }
.split.reverse .split-media { order: 2; }

.split-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 500;
  color: var(--midnight);
  line-height: 1.25;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.split-text p { font-size: 1.02rem; color: var(--muted); line-height: 1.85; }
.split-text p + p { margin-top: 1rem; }

/* Photo placeholder, styled so the design holds with or without an image */
.photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--paper-cool) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.photo-frame .ph-mark {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--slate-med);
  margin-bottom: 0.35rem;
}
.photo-frame .ph-sub { font-size: 0.82rem; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; border-radius: var(--radius-lg); }
.photo-frame.has-photo { background: none; border: none; padding: 0; }
.photo-frame.has-photo::after { display: none; }

/* ── DEFINITION LIST / DETAILS ─────────────────────────────── */
.detail-block h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 1rem;
}
.detail-block p,
.detail-block address {
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.85;
  font-style: normal;
}
.detail-block a { color: var(--sky); text-decoration: none; transition: color 0.15s; }
.detail-block a:hover { color: var(--sky-light); text-decoration: underline; }
.detail-block strong { color: var(--slate); font-weight: 600; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { list-style: none; margin-top: 2.5rem; border-top: 1px solid var(--border-light); }
.faq-item { border-bottom: 1px solid var(--border-light); padding: 1.6rem 0; }
.faq-q {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 0.55rem;
}
.faq-a { font-size: 0.975rem; color: var(--muted); line-height: 1.82; }
.faq-a a { color: var(--sky); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ── BLOG ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.post-thumb {
  height: 8px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--amber) 100%);
}
.post-body { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.post-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--midnight);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.post-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.1rem; flex: 1; }
.post-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  align-self: flex-start;
}
.post-link:hover { color: var(--sky-light); }
.post-card h3 a { color: inherit; text-decoration: none; transition: color 0.15s; }
.post-card h3 a:hover { color: var(--sky); }
.post-cover { display: block; text-decoration: none; }

/* ── ARTICLE (single post) ─────────────────────────────────── */
.post-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2rem 3rem;
}
.back-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  margin-bottom: 1.75rem;
}
.back-link:hover { color: var(--sky-light); }
.post-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}
.post-article h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.post-content p {
  font-size: 1.08rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.post-content h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--midnight);
  margin: 2.25rem 0 0.9rem;
  line-height: 1.3;
}
.post-content p:last-child { margin-bottom: 0; }
.post-content strong { color: var(--midnight); font-weight: 600; }

/* ── NOTES CONTROLS (filter + search) ──────────────────────── */
.notes-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
}
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-med);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.45rem 1.05rem;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.filter-btn:hover { border-color: var(--sky); color: var(--sky); }
.filter-btn.active {
  background: var(--midnight);
  border-color: var(--midnight);
  color: #fff;
}
.filter-btn:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.notes-search input {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1.15rem;
  width: 230px;
  max-width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.notes-search input:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(62, 127, 184, 0.12);
}
.notes-search input::placeholder { color: var(--muted); }
.notes-empty {
  text-align: center;
  padding: 3rem 1rem 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.blog-grid { margin-top: 2rem; }

.note-banner {
  background: var(--amber-pale);
  border: 1px solid #EBD3A6;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--amber-dark);
  line-height: 1.7;
}
.note-banner strong { color: var(--amber-dark); }

/* ── TIMELINE (education) ──────────────────────────────────── */
.timeline {
  list-style: none;
  margin-top: 2.75rem;
  position: relative;
  padding-left: 0;
}
.tl-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.75rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }
/* vertical line + node, drawn on the body column */
.tl-body {
  position: relative;
  padding-left: 1.75rem;
  border-left: 1px solid var(--border);
}
.tl-item:last-child .tl-body { border-left-color: transparent; }
.tl-body::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0.35rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--border);
}
.tl-year {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sky);
  text-align: right;
  line-height: 1.2;
  padding-top: 0.05rem;
}
.tl-body h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.tl-school {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--amber-dark);
  margin-bottom: 0.75rem !important;
}
.tl-body p { font-size: 0.97rem; color: var(--muted); line-height: 1.8; max-width: none; }

/* ── FORM (routes to scheduling) ───────────────────────────── */
.cta-strip {
  background: var(--paper-cool);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-strip-inner h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--midnight);
  line-height: 1.3;
}
.cta-strip-inner p { color: var(--muted); font-size: 0.97rem; margin-top: 0.3rem; }

/* ── FOOTER CTA ────────────────────────────────────────────── */
.footer-cta {
  background: var(--paper-cool);
  border-top: 1px solid var(--border);
  padding: 5.5rem 2rem;
  text-align: center;
}
.footer-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer-cta p { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.8; }

/* ── SITE FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--midnight); padding: 3rem 2rem 2rem; }
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.footer-grid h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.9rem;
}
.footer-brand .fname {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}
.footer-brand .frole {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0.2rem 0 0.9rem;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 300px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
.footer-bottom .disclaimer { margin-top: 0.5rem; font-size: 0.74rem; color: rgba(255,255,255,0.3); max-width: 620px; margin-left: auto; margin-right: auto; }

/* ── HELPERS ───────────────────────────────────────────────── */
.amber-chip {
  display: inline-block;
  background: var(--amber-pale);
  border: 1px solid #E8C070;
  color: var(--amber-dark);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.center { text-align: center; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-med);
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1rem 1.25rem;
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
  }
  .nav-links.open { max-height: 460px; padding-top: 0.5rem; padding-bottom: 1.25rem; }
  .nav-links a { padding: 0.75rem 0.5rem; width: 100%; }
  .nav-links a.active::after { margin: 0.15rem 0 0; }
  .nav-cta { margin-top: 0.5rem; justify-content: center; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 1.5rem; }
  .split.reverse .split-media { order: 0; }
  .hero-split { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2.5rem; }
  .hero-content { text-align: center; }
  .hero-content .hero-sub { margin: 0 auto 1.75rem; }
  .hero-content .hero-actions { justify-content: center; }
  .hero-photo { max-width: 360px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .dark-band { padding: 4rem 1.5rem; }
  .footer-cta { padding: 4.5rem 1.5rem; }
  .nav-inner { padding: 0.85rem 1.25rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .tl-item { grid-template-columns: 64px 1fr; gap: 1rem; }
  .tl-year { font-size: 1.15rem; }
  .tl-body { padding-left: 1.25rem; }
  .notes-controls { flex-direction: column; align-items: stretch; gap: 1rem; }
  .notes-search input { width: 100%; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
