/* ==========================================================================
   Military Cemetery Canada — shared stylesheet
   One file for every page. Edit a colour here and it changes everywhere.
   ========================================================================== */

:root {
  --red:         #D52B1E;
  --red-dark:    #A82116;
  --red-light:   #F9ECEA;
  --olive:       #5C5A38;
  --olive-dark:  #46442A;
  --olive-light: #F4F3EE;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --mid-grey:    #DDD8D0;
  --text-dark:   #111111;
  --text-body:   #2E2E2E;
  --text-muted:  #5F5F5F;
  --border:      #D4CEC6;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:       70px;
  --shell:       1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }

body {
  background: var(--white);
  color: var(--text-body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

a { color: var(--red-dark); }
a:hover { color: var(--red); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--white); color: var(--red-dark);
  padding: 0.9rem 1.4rem; font-weight: 600;
  border: 2px solid var(--red);
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ── NAV ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 4px solid var(--red);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.nav-logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-flag { width: 44px; height: 22px; flex-shrink: 0; object-fit: contain; }
.nav-logo-text {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700;
  color: var(--olive); line-height: 1.2;
}
.nav-logo-text span {
  display: block; font-family: var(--sans); font-size: 0.62rem; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase;
}

.nav-links { display: flex; gap: 1.9rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-body); text-decoration: none;
  font-size: 0.84rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a[aria-current="page"] { color: var(--red); font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  padding: 0.5rem 0.8rem; font-family: var(--sans); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--olive); cursor: pointer; border-radius: 2px;
}

/* ── SHELL ───────────────────────────────────────────────────────────── */
.section-inner { max-width: var(--shell); margin: 0 auto; }

section { padding: 5.5rem 2.5rem; }
section.tint { background: var(--off-white); }
section.olive-tint { background: var(--olive-light); }

.section-label {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::before {
  content: ''; width: 26px; height: 2px; background: var(--red); flex-shrink: 0;
}

.section-title {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 700;
  color: var(--olive-dark); line-height: 1.14; margin-bottom: 1.4rem;
  text-wrap: balance;
}

.lead { font-size: 1.08rem; max-width: 680px; text-wrap: pretty; }
.body-copy { max-width: 680px; margin-top: 1rem; text-wrap: pretty; }
.mt-md { margin-top: 3rem; }

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none;
  padding: 1.05rem 2rem; border-radius: 2px; transition: all 0.2s;
  min-height: 48px; text-align: center;
}
.btn-primary { background: var(--red); color: var(--white); border: 2px solid var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

.btn-ghost-dark { background: transparent; color: var(--olive-dark); border: 2px solid var(--border); }
.btn-ghost-dark:hover { border-color: var(--olive); color: var(--olive-dark); background: var(--olive-light); }

.alt-link {
  display: inline-block; margin-top: 1rem; font-size: 0.92rem;
  color: rgba(255,255,255,0.8); text-decoration: underline;
  text-underline-offset: 3px;
}
.alt-link:hover { color: var(--white); }
.alt-link-dark { color: var(--text-muted); }
.alt-link-dark:hover { color: var(--red); }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; background: var(--olive); overflow: hidden;
  padding: calc(var(--nav-h) + 5rem) 2.5rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--red);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(213,43,30,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 75%, rgba(0,0,0,0.15) 0%, transparent 50%);
}
.hero-maple-bg {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  width: 440px; height: auto; pointer-events: none; z-index: 0; opacity: 0.22;
}
.hero-content { position: relative; z-index: 1; max-width: 1060px; margin: 0 auto; width: 100%; }

.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-bottom: 1.6rem;
}
.hero-title {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 700;
  color: var(--white); line-height: 1.08; margin-bottom: 1.5rem;
  max-width: 15ch; text-wrap: balance;
}
.hero-title em { font-style: italic; color: #E8E4D2; }
.hero-rule { width: 60px; height: 3px; background: var(--red); margin-bottom: 1.6rem; }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.92);
  max-width: 620px; line-height: 1.7; text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-compact { padding: calc(var(--nav-h) + 3.5rem) 2.5rem 3.5rem; }
.hero-compact .hero-title { font-size: 2.9rem; max-width: 18ch; }

.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1.4rem; }
.breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--white); }

/* ── TIMELINE ────────────────────────────────────────────────────────── */
.timeline { list-style: none; display: grid; gap: 0; margin-top: 2rem; }
.timeline li {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1.5rem;
  padding: 1.1rem 0; border-top: 1px solid var(--border); align-items: baseline;
}
.timeline li:last-child { border-bottom: 1px solid var(--border); }
.timeline .yr {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--red);
  line-height: 1;
}
.timeline .ev { font-size: 0.98rem; text-wrap: pretty; }

/* ── STATS ───────────────────────────────────────────────────────────── */
.stat-block { border-left: 3px solid var(--red); padding-left: 1.4rem; margin-bottom: 2.4rem; }
.stat-number {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--olive-dark); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.5rem;
}
.stat-note {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.65;
  border-top: 1px solid var(--mid-grey); padding-top: 1.2rem; margin-top: 1.5rem;
}
.stat-note strong { color: var(--text-body); }

/* ── GRIDS ───────────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1.35fr 1fr; gap: 4rem; align-items: start; }
.grid-2-even { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.quote-block {
  border-left: 3px solid var(--red); padding: 0.4rem 0 0.4rem 1.6rem; margin-top: 2rem;
}
.quote-block blockquote {
  font-family: var(--serif); font-size: 1.3rem; font-style: italic;
  color: var(--olive-dark); line-height: 1.5; text-wrap: pretty;
}
.quote-block cite {
  display: block; font-family: var(--sans); font-size: 0.78rem; font-style: normal;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  margin-top: 0.9rem;
}

/* ── SECTION CARDS ───────────────────────────────────────────────────── */
.section-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--red); padding: 2rem 1.7rem;
  display: flex; flex-direction: column;
}
.section-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--mid-grey); line-height: 1; margin-bottom: 1rem;
}
.section-card h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.8rem;
}
.section-card p { font-size: 0.96rem; margin-bottom: 1.2rem; flex: 1; text-wrap: pretty; }
.section-badge {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); border-top: 1px solid var(--mid-grey); padding-top: 0.9rem;
}

/* ── LISTS ───────────────────────────────────────────────────────────── */
.elig-list { list-style: none; }
.elig-list li {
  display: grid; grid-template-columns: 1.6rem 1fr; gap: 0.8rem;
  padding: 1rem 0; border-bottom: 1px solid var(--mid-grey); font-size: 0.98rem;
}
.elig-list li::before { content: '\2713'; color: var(--red); font-weight: 700; }
.elig-list strong { color: var(--olive); }

.footnote {
  font-size: 0.85rem; color: var(--text-muted); margin-top: 1.5rem;
  padding-top: 1rem; border-top: 1px solid var(--mid-grey);
}

/* ── PROCESS STEPS ───────────────────────────────────────────────────── */
.process-steps { counter-reset: steps; display: flex; flex-direction: column; gap: 1.6rem; }
.step { counter-increment: steps; display: grid; grid-template-columns: 2.6rem 1fr; gap: 1.2rem; }
.step-num {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--red);
  background: var(--red-light); width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.step-num::before { content: counter(steps); }
.step-content h4 { font-size: 1rem; font-weight: 600; color: var(--olive); margin-bottom: 0.3rem; }
.step-content p { font-size: 0.94rem; text-wrap: pretty; }

/* ── CEREMONY ────────────────────────────────────────────────────────── */
.ceremony-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.ceremony-item {
  background: var(--white); border: 1px solid var(--border);
  padding: 1.8rem 1.6rem; position: relative;
}
.ceremony-item::before {
  content: ''; position: absolute; left: 1.6rem; top: 0;
  width: 30px; height: 3px; background: var(--red);
}
.ceremony-item h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.7rem;
}
.ceremony-item p { font-size: 0.95rem; text-wrap: pretty; }

/* ── APPLICATION ─────────────────────────────────────────────────────── */
.application { background: var(--olive); color: var(--white); }
.app-inner {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start;
}
.application .section-label { color: rgba(255,255,255,0.75); }
.application .section-label::before { background: rgba(255,255,255,0.6); }
.app-copy h2 {
  font-family: var(--serif); font-size: 2.3rem; font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 1.3rem; text-wrap: balance;
}
.app-copy p { color: rgba(255,255,255,0.88); margin-bottom: 1rem; max-width: 46ch; text-wrap: pretty; }

.app-card { background: var(--white); padding: 2.4rem 2.2rem; border-top: 4px solid var(--red); }
.app-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.7rem;
}
.app-card > p { font-size: 0.96rem; margin-bottom: 1.6rem; }
.app-card .btn-primary { width: 100%; }
.app-note {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.65;
  border-top: 1px solid var(--mid-grey); padding-top: 1.2rem; margin-top: 1.6rem;
}
.app-note strong { color: var(--text-body); }

/* ── TWO ARRANGEMENTS ────────────────────────────────────────────────── */
.two-arr { background: var(--off-white); }
.two-arr-inner {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: start;
}
.two-arr-copy h2 {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--olive-dark); line-height: 1.15; margin-bottom: 1.3rem; text-wrap: balance;
}
.two-arr-copy p { margin-bottom: 1rem; text-wrap: pretty; }
.two-arr-card { background: var(--white); border: 1px solid var(--border); padding: 2rem 1.9rem; }
.pair { padding: 1.2rem 0; border-bottom: 1px solid var(--mid-grey); }
.pair:first-child { padding-top: 0; }
.pair-label {
  display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.5rem;
}
.pair-fh .pair-label { color: var(--red); }
.pair-cem .pair-label { color: var(--olive); }
.pair-text { display: block; font-size: 0.95rem; text-wrap: pretty; }
.two-arr-card .btn-primary { display: block; width: 100%; margin-top: 1.6rem; }

/* ── BLOG ────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 1.8rem 1.6rem; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; transition: all 0.2s;
}
.blog-card:hover { border-color: var(--red); box-shadow: 0 6px 22px rgba(0,0,0,0.07); color: inherit; }
.blog-tag {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 0.9rem;
}
.blog-card h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--olive-dark); line-height: 1.25; margin-bottom: 0.8rem; text-wrap: pretty;
}
.blog-card p { font-size: 0.94rem; flex: 1; margin-bottom: 1.2rem; text-wrap: pretty; }
.blog-read-more {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}

/* ── JAMIE / CONTACT ─────────────────────────────────────────────────── */
.contact { background: var(--olive-dark); color: var(--white); }
.contact-inner {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start;
}
.contact .section-label { color: rgba(255,255,255,0.72); }
.contact .section-label::before { background: rgba(255,255,255,0.55); }
.contact h2 {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 1.2rem; text-wrap: balance;
}
.contact p { color: rgba(255,255,255,0.88); max-width: 56ch; margin-bottom: 1rem; text-wrap: pretty; }
.contact-portrait {
  width: 200px; height: 240px; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.25);
}
.portrait-slot {
  width: 200px; height: 240px;
  border: 1px dashed rgba(255,255,255,0.35);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 8px, transparent 8px 16px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.6);
  padding: 1rem; line-height: 1.6;
}
.contact-lines { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 1.6rem; }
.contact-lines a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; font-size: 1.05rem; }
.contact-lines a:hover { color: #E8E4D2; }
.contact-role {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ── PAGE 2: DOCUMENTS ───────────────────────────────────────────────── */
.doc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.doc-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--olive); padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column;
}
.doc-card-form { border-top-color: var(--red); }
.doc-kicker {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 0.8rem;
}
.doc-card h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.7rem; line-height: 1.25;
}
.doc-card p { font-size: 0.94rem; flex: 1; margin-bottom: 1.4rem; text-wrap: pretty; }
.doc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0.85rem 1.2rem; background: var(--red); color: var(--white);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; text-align: center;
}
.doc-btn:hover { background: var(--red-dark); color: var(--white); }
.doc-btn-ghost { background: transparent; color: var(--olive-dark); border: 1px solid var(--border); }
.doc-btn-ghost:hover { background: var(--olive-light); color: var(--olive-dark); border-color: var(--olive); }

.preamble {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--olive); padding: 2.4rem 2.4rem; margin-top: 2.5rem;
}
.preamble h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.9rem;
}
.cost-parts { list-style: none; margin: 1.8rem 0; }
.cost-parts li { padding: 1.2rem 0; border-top: 1px solid var(--mid-grey); }
.cost-name {
  display: block; font-weight: 600; color: var(--olive); font-size: 1.02rem; margin-bottom: 0.3rem;
}
.cost-desc { display: block; font-size: 0.96rem; text-wrap: pretty; }

.doubles {
  background: var(--red-light); border-left: 3px solid var(--red);
  padding: 1.6rem 1.7rem; margin: 1.8rem 0;
}
.doubles h4 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.7rem;
}
.doubles p { font-size: 0.97rem; margin-bottom: 0.7rem; text-wrap: pretty; }
.doubles p:last-child { margin-bottom: 0; }

.fineprint { list-style: none; margin-top: 1.6rem; }
.fineprint li {
  font-size: 0.9rem; color: var(--text-muted); padding: 0.45rem 0 0.45rem 1.3rem; position: relative;
}
.fineprint li::before { content: '\2014'; position: absolute; left: 0; color: var(--border); }
.fineprint strong { color: var(--text-body); }

/* ── PAGE 2: SPLIT ───────────────────────────────────────────────────── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.split-col { background: var(--white); border: 1px solid var(--border); padding: 2.2rem 2rem; }
.split-col-fh { border-top: 3px solid var(--red); }
.split-col-cem { border-top: 3px solid var(--olive); }
.split-kicker {
  display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted); margin-bottom: 0.7rem;
}
.split-col h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.7rem; line-height: 1.2;
}
.split-who { font-size: 0.94rem; color: var(--text-muted); margin-bottom: 1.4rem; }
.split-label {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--olive); margin-bottom: 0.8rem;
}
.split-list { list-style: none; margin-bottom: 1.5rem; }
.split-list li {
  font-size: 0.95rem; padding: 0.6rem 0 0.6rem 1.4rem; position: relative;
  border-bottom: 1px solid var(--olive-light); text-wrap: pretty;
}
.split-list li::before {
  content: ''; position: absolute; left: 0; top: 1.15rem;
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
}
.split-foot {
  font-size: 0.93rem; background: var(--off-white);
  border-left: 3px solid var(--border); padding: 1rem 1.2rem;
}
.split-foot p { margin-bottom: 0.7rem; text-wrap: pretty; }
.split-foot p:last-child { margin-bottom: 0; }
.split-note {
  text-align: center; font-family: var(--serif); font-size: 1.35rem; font-style: italic;
  color: var(--olive); margin-top: 2.5rem;
}

/* ── PAGE 2: MISCONCEPTION ───────────────────────────────────────────── */
.quote-callout {
  background: var(--white); border-left: 4px solid var(--red);
  padding: 1.8rem 2rem; margin: 2rem 0;
}
.quote-callout p {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic;
  color: var(--olive-dark); line-height: 1.45; text-wrap: pretty;
}
.quote-callout cite {
  display: block; font-family: var(--sans); font-size: 0.76rem; font-style: normal;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 1rem;
}

/* ── PAGE 2: SEQUENCE ────────────────────────────────────────────────── */
.seq-list { margin-top: 3rem; display: flex; flex-direction: column; }
.seq-step {
  display: grid; grid-template-columns: 11rem 1fr; gap: 2rem;
  padding: 1.5rem 0; border-top: 1px solid var(--border);
}
.seq-step:last-child { border-bottom: 1px solid var(--border); }
.seq-actor {
  display: inline-block; font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600; padding: 0.4rem 0.75rem; border-radius: 2px;
}
.seq-actor-fh { background: var(--red-light); color: var(--red-dark); }
.seq-actor-cem { background: var(--olive-light); color: var(--olive-dark); }
.seq-body h4 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.4rem;
}
.seq-body p { font-size: 0.96rem; text-wrap: pretty; }

/* ── PAGE 2: INCLUSIONS ──────────────────────────────────────────────── */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.incl-card { background: var(--white); border: 1px solid var(--border); padding: 2rem 1.9rem; }
.incl-card-yes { border-top: 3px solid var(--olive); }
.incl-card-no { border-top: 3px solid var(--red); }
.incl-card h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.3rem;
}
.incl-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.3rem; }
.incl-list { list-style: none; }
.incl-list li {
  font-size: 0.95rem; padding: 0.7rem 0; border-bottom: 1px solid var(--olive-light);
  text-wrap: pretty;
}
.pricelist-note {
  background: var(--white); border-left: 4px solid var(--olive);
  padding: 1.6rem 1.8rem; margin-top: 2.5rem; font-size: 1rem; text-wrap: pretty;
}

/* ── PAGE 2: CHOICE ──────────────────────────────────────────────────── */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 3rem; }
.choice-grid h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.9rem; line-height: 1.25;
}
.choice-grid p { margin-bottom: 1rem; text-wrap: pretty; }
.onsite-list { list-style: none; margin-top: 1rem; }
.onsite-list li {
  font-size: 0.95rem; padding: 0.55rem 0 0.55rem 1.5rem; position: relative; text-wrap: pretty;
}
.onsite-list li::before {
  content: ''; position: absolute; left: 0; top: 1.1rem;
  width: 7px; height: 7px; background: var(--olive); border-radius: 50%;
}

/* ── PAGE 2: FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 2.5rem; max-width: 820px; }
.faq-group-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin: 3rem 0 1.2rem;
}
.faq-item { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.faq-item h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.6rem; line-height: 1.3;
}
.faq-item p { font-size: 0.98rem; margin-bottom: 0.7rem; text-wrap: pretty; }
.faq-item p:last-child { margin-bottom: 0; }

.acc { border-top: 1px solid var(--border); }
.acc:last-of-type { border-bottom: 1px solid var(--border); }
.acc summary {
  cursor: pointer; padding: 1.2rem 2.5rem 1.2rem 0; position: relative;
  font-weight: 600; color: var(--olive-dark); font-size: 1.02rem;
  list-style: none; text-wrap: pretty;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: '+'; position: absolute; right: 0.4rem; top: 1rem;
  font-family: var(--serif); font-size: 1.6rem; color: var(--red); line-height: 1;
}
.acc[open] summary::after { content: '\2212'; }
.acc summary:hover { color: var(--red); }
.acc-body { padding: 0 0 1.4rem; }
.acc-body p { font-size: 0.97rem; margin-bottom: 0.8rem; text-wrap: pretty; }
.acc-body p:last-child { margin-bottom: 0; }

/* ── PAGE 2: WHO TO CALL ─────────────────────────────────────────────── */
.whocall { background: var(--olive); color: var(--white); }
.whocall-inner { max-width: var(--shell); margin: 0 auto; }
.whocall .section-label { color: rgba(255,255,255,0.75); }
.whocall .section-label::before { background: rgba(255,255,255,0.6); }
.whocall h2 {
  font-family: var(--serif); font-size: 2.3rem; font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 1rem; text-wrap: balance;
}
.whocall-lead { color: rgba(255,255,255,0.85); max-width: 56ch; }
.call-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.call-card { background: var(--white); padding: 2rem 1.9rem; }
.call-card-cem { border-top: 4px solid var(--olive-dark); }
.call-card-fh { border-top: 4px solid var(--red); }
.title-line {
  display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted); margin-bottom: 0.6rem;
}
.call-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.8rem;
}
.call-card > p { font-size: 0.95rem; margin-bottom: 1.4rem; text-wrap: pretty; }
.call-detail {
  background: var(--off-white); border-left: 3px solid var(--border);
  padding: 1.1rem 1.2rem; font-size: 0.94rem; line-height: 1.7;
}
.call-detail a { color: var(--red-dark); }

.page-disclaimer {
  max-width: 820px; margin: 0 auto; padding: 3.5rem 2.5rem;
}
.page-disclaimer p { font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); text-wrap: pretty; }

/* ── ARTICLE PAGES ───────────────────────────────────────────────────── */
.article-hero { padding: calc(var(--nav-h) + 3.5rem) 2.5rem 3rem; }
.article-hero .hero-title { font-size: 2.7rem; max-width: 22ch; }
.article-tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.35);
  padding: 0.35rem 0.8rem; margin-bottom: 1.3rem; border-radius: 2px;
}

.article-shell { max-width: 780px; margin: 0 auto; padding: 4rem 2.5rem 2rem; }

.byline {
  display: grid; grid-template-columns: 66px 1fr; gap: 1.1rem; align-items: center;
  padding-bottom: 2rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.byline-portrait { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; }
.byline-slot {
  width: 66px; height: 66px; border-radius: 50%; border: 1px dashed var(--border);
  background: repeating-linear-gradient(135deg, var(--olive-light) 0 6px, transparent 6px 12px);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.5rem; color: var(--text-muted); text-align: center; line-height: 1.3; padding: 0.3rem;
}
.byline-name { font-weight: 600; color: var(--olive-dark); font-size: 1rem; }
.byline-role { font-size: 0.88rem; color: var(--text-muted); }

.prose > p, .prose > ul { margin-bottom: 1.3rem; text-wrap: pretty; }
.prose > p:first-of-type { font-size: 1.14rem; line-height: 1.7; color: var(--text-dark); }
.prose h2 {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 700;
  color: var(--olive-dark); margin: 2.6rem 0 0.9rem; line-height: 1.2; text-wrap: balance;
}
.prose ul { list-style: none; }
.prose ul li { padding: 0.45rem 0 0.45rem 1.5rem; position: relative; text-wrap: pretty; }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 1rem;
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
}
.prose strong { color: var(--olive-dark); }

.article-cta {
  background: var(--olive-light); border-left: 4px solid var(--olive);
  padding: 1.8rem 2rem; margin: 3rem 0 0;
}
.article-cta h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: var(--olive-dark); margin-bottom: 0.6rem;
}
.article-cta p { font-size: 0.98rem; margin-bottom: 0.9rem; text-wrap: pretty; }
.article-cta .contact-lines a { color: var(--red-dark); }

.related { border-top: 1px solid var(--border); margin-top: 3.5rem; padding-top: 2.5rem; }
.related-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 1.4rem;
}
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.related-grid a {
  border: 1px solid var(--border); padding: 1.2rem 1.3rem; text-decoration: none;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--olive-dark);
  line-height: 1.3; transition: all 0.2s; text-wrap: pretty;
}
.related-grid a:hover { border-color: var(--red); color: var(--red-dark); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: var(--olive-dark); color: rgba(255,255,255,0.72);
  padding: 3.5rem 2.5rem 3rem;
}
.footer-inner {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 3rem; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; }
.footer-flag { width: 40px; height: 20px; object-fit: contain; }
.footer-brand-text {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.92rem;
}
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-note { font-size: 0.88rem; line-height: 1.7; }
.footer-note a { color: rgba(255,255,255,0.85); }
.footer-note strong { color: var(--white); }
.footer-legal {
  max-width: var(--shell); margin: 2.8rem auto 0; padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.55);
}

.footer-legal a { color: rgba(255,255,255,0.82); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--white); }

/* ── REVEAL ──────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1040px) {
  .grid-2, .grid-2-even, .app-inner, .two-arr-inner, .choice-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3, .ceremony-grid, .blog-grid, .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-maple-bg { width: 340px; opacity: 0.16; }
  :root { --shell: 100%; }
}

/* Nav collapses earlier than the rest of the layout — five items stop fitting
   before the content columns need to stack. */
@media (max-width: 1000px) {
  nav { padding: 0 1.3rem; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    gap: 0; padding: 0.5rem 0 0.9rem; border-top: 1px solid var(--border); margin-top: 0.7rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.85rem 0.2rem; font-size: 0.95rem; }
  .nav-links li + li { border-top: 1px solid var(--olive-light); }
  .nav-logo-text { font-size: 0.95rem; }
}

@media (max-width: 860px) {
  section { padding: 3.5rem 1.4rem; }
  .hero, .hero-compact, .article-hero { padding-left: 1.4rem; padding-right: 1.4rem; }
  .hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3.5rem; }
  .hero-title { font-size: 2.5rem; max-width: none; }
  .hero-compact .hero-title, .article-hero .hero-title { font-size: 2.1rem; max-width: none; }
  .hero-maple-bg { display: none; }
  .hero-content { max-width: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; }

  .section-title { font-size: 2rem; }
  .split-grid, .incl-grid, .call-grid, .related-grid { grid-template-columns: 1fr; }
  .seq-step { grid-template-columns: 1fr; gap: 0.7rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .preamble { padding: 1.8rem 1.4rem; }
  .article-shell { padding: 3rem 1.4rem 2rem; }
  .page-disclaimer { padding: 2.5rem 1.4rem; }
  .timeline li { grid-template-columns: 4.5rem 1fr; gap: 1rem; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .grid-3, .ceremony-grid, .blog-grid, .doc-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
  .hero-compact .hero-title, .article-hero .hero-title { font-size: 1.85rem; }
  .section-title { font-size: 1.75rem; }
  .app-copy h2, .two-arr-copy h2, .whocall h2, .contact h2 { font-size: 1.8rem; }
  .stat-number { font-size: 2.4rem; }
  .app-card, .split-col, .incl-card, .call-card, .two-arr-card { padding: 1.6rem 1.3rem; }
  .quote-block blockquote, .quote-callout p { font-size: 1.15rem; }
  .split-note { font-size: 1.15rem; }
  .prose h2 { font-size: 1.5rem; }
  .byline { grid-template-columns: 56px 1fr; }
  .byline-portrait, .byline-slot { width: 56px; height: 56px; }
}

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

@media print {
  nav, .nav-toggle, .hero-maple-bg { display: none; }
  body { font-size: 11pt; }
  a { color: #000; }
}
