/* ============================================
   GPS — Guided Purpose Strategy
   Purpose Coaching LLC
   Stylesheet v1.0
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Outfit:wght@300;400;500;600;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand palette — pulled from the GPS Foundation and Pathway materials */
  --navy:           #1b2e4a;
  --navy-deep:      #0f1e33;
  --navy-soft:      #2a4368;
  --rust:           #a83a2c;
  --rust-deep:      #872d22;
  --orange:         #e08a3c;
  --orange-soft:    #f4d9b8;
  --cream:          #f7f1e6;
  --cream-soft:     #fbf6ec;
  --bone:           #faf7f1;
  --ink:            #1a1a1a;
  --ink-soft:       #4a4a4a;
  --ink-muted:      #767064;
  --line:           #e3dccf;
  --line-soft:      #efe9dc;

  /* Type */
  --serif:    'Source Serif 4', Georgia, serif;
  --sans:     'Outfit', system-ui, -apple-system, sans-serif;
  --display:  'Barlow Condensed', 'Outfit', sans-serif;

  /* Layout */
  --max:       1240px;
  --max-text:  720px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease:      cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--rust); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--rust-deep); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.65rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-block;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--rust);
  vertical-align: middle;
  margin-right: 14px;
}

p { font-family: var(--serif); color: var(--ink-soft); }
p + p { margin-top: 1.05rem; }
.lead { font-size: 1.22rem; line-height: 1.55; color: var(--ink); }

/* Prose-block: a vertical text block with consistent rhythm */
.prose-block h2 + p { margin-top: 1.5rem; }
.prose-block p { font-size: 1.08rem; }
.prose-block p + p { margin-top: 1.15rem; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-tight { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand .brand-mark {
  font-size: 1.55rem;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.brand .brand-sub {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0;
}
.brand:hover .brand-mark { color: var(--rust); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--rust); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: var(--navy);
  color: var(--cream) !important;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--rust) !important; color: var(--cream) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: var(--navy);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--bone);
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--line-soft); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 0.5rem; }
  .nav-links a { padding: 0.85rem 0; display: block; }
  .nav-cta { width: max-content; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary {
  background: var(--rust);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--rust-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(168, 58, 44, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--navy);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost .arrow {
  transition: transform .25s var(--ease);
}
.btn-ghost:hover { color: var(--rust); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream-soft) 100%);
}
.hero::before {
  /* Subtle topographic line texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 800px 400px at 85% 20%, rgba(224, 138, 60, 0.08), transparent 60%),
    radial-gradient(ellipse 600px 500px at 10% 80%, rgba(27, 46, 74, 0.05), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--rust);
  font-weight: 500;
}
.hero p.lead {
  margin-bottom: 2.2rem;
  max-width: 38ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
}
.hero-visual svg { width: 100%; height: 100%; display: block; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16 / 11; max-width: 540px; margin: 0 auto; }
}

/* ---------- Problem framing ---------- */
.problem {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}
.problem .eyebrow { color: var(--orange); }
.problem .eyebrow::before { background: var(--orange); }
.problem h2 { color: var(--cream); max-width: 22ch; margin-bottom: 1.5rem; }
.problem p { color: rgba(247, 241, 230, 0.78); max-width: var(--max-text); font-size: 1.12rem; }
.problem-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(247, 241, 230, 0.12);
  border: 1px solid rgba(247, 241, 230, 0.12);
}
.problem-grid div {
  background: var(--navy);
  padding: 1.75rem 1.5rem;
}
.problem-grid .num {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.6rem;
}
.problem-grid h4 { color: var(--cream); margin-bottom: 0.35rem; font-size: 1.05rem; }
.problem-grid p { font-size: 0.95rem; color: rgba(247, 241, 230, 0.7); }

/* ---------- Three layers (Vision/Strategy/Execution) ---------- */
.layers {
  background: var(--bone);
}
.layers-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
@media (max-width: 860px) {
  .layers-head { grid-template-columns: 1fr; gap: 1.5rem; }
}
.layers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .layers-grid { grid-template-columns: 1fr; } }

.layer-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.layer-card:hover { transform: translateY(-3px); border-color: var(--rust); }
.layer-card .layer-num {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--rust);
  margin-bottom: 1rem;
  display: block;
}
.layer-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}
.layer-card .layer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.layer-card p { font-size: 0.98rem; }
.layer-card.is-execution { background: var(--navy); border-color: var(--navy); }
.layer-card.is-execution h3 { color: var(--cream); }
.layer-card.is-execution .layer-tag, .layer-card.is-execution p { color: rgba(247, 241, 230, 0.82); }
.layer-card.is-execution .layer-num { color: var(--orange); }
.layer-card.is-strategy { background: var(--orange-soft); border-color: var(--orange-soft); }

/* ---------- Audience selector ---------- */
.audiences {
  background: var(--cream-soft);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--line);
  position: relative;
  background: transparent;
  transition: background .3s var(--ease);
}
.audience-card:last-child { border-right: 0; }
@media (max-width: 860px) {
  .audience-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .audience-card:last-child { border-bottom: 0; }
}
.audience-card:hover { background: var(--bone); }
.audience-card .audience-icon {
  width: 56px; height: 56px;
  margin-bottom: 1.5rem;
  color: var(--rust);
}
.audience-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.audience-card p { font-size: 0.98rem; margin-bottom: 1.5rem; }
.audience-card .audience-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--rust);
  letter-spacing: 0.02em;
}
.audience-card .audience-link .arrow { display: inline-block; transition: transform .25s var(--ease); }
.audience-card:hover .audience-link .arrow { transform: translateX(4px); }

/* ---------- Credibility band ---------- */
.cred-band {
  background: var(--navy);
  color: var(--cream);
  padding: 4.5rem 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 860px) { .cred-grid { grid-template-columns: 1fr; gap: 2rem; } }
.cred-grid h2 { color: var(--cream); }
.cred-grid p { color: rgba(247, 241, 230, 0.82); margin-bottom: 1rem; }
.cred-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.cred-stat { border-left: 2px solid var(--orange); padding-left: 1rem; }
.cred-stat .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.cred-stat .label {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(247, 241, 230, 0.7);
  text-transform: uppercase;
}

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--rust);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); max-width: 22ch; margin: 0 auto 1.25rem; }
.cta-band p { color: rgba(247, 241, 230, 0.92); max-width: 50ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .btn {
  background: var(--cream);
  color: var(--navy);
}
.cta-band .btn:hover { background: var(--navy); color: var(--cream); box-shadow: 0 8px 24px -8px rgba(15, 30, 51, 0.5); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 241, 230, 0.7);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
.footer-brand .mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-brand p {
  color: rgba(247, 241, 230, 0.6);
  font-size: 0.92rem;
  max-width: 32ch;
  line-height: 1.55;
}
.footer-col h5 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(247, 241, 230, 0.75);
  font-family: var(--sans);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 241, 230, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom .verse {
  font-style: italic;
  color: rgba(247, 241, 230, 0.45);
  font-family: var(--serif);
}

/* ---------- Inner page hero ---------- */
.page-hero {
  background: var(--cream-soft);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 18ch; margin-bottom: 1.25rem; }
.page-hero p.lead { max-width: 56ch; }

/* ---------- About page ---------- */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .about-bio { grid-template-columns: 1fr; } }
.bio-portrait {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.bio-portrait svg { width: 100%; height: 100%; }
.bio-content h2 { margin-bottom: 1.25rem; }
.bio-content p { margin-bottom: 1.1rem; font-size: 1.05rem; }

.scripture-block {
  margin: 4rem auto;
  max-width: 720px;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.scripture-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 1rem;
}
.scripture-block cite {
  font-family: var(--display);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
}

.creds {
  background: var(--bone);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.cred-item {
  padding: 1.5rem;
  background: var(--cream-soft);
  border-left: 3px solid var(--rust);
}
.cred-item h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.cred-item p { font-size: 0.92rem; color: var(--ink-muted); }

/* ---------- Framework page ---------- */
.framework-overview {
  background: var(--bone);
}
.flow-diagram {
  margin: 3rem 0;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.seven-elements {
  background: var(--cream-soft);
}
.elements-list {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.element-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 2fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding .2s var(--ease);
}
.element-row:hover { padding-left: 1rem; }
@media (max-width: 700px) {
  .element-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.75rem 0; }
}
.element-row .el-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--rust);
  line-height: 1;
}
.element-row h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.element-row .el-role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.element-row p { font-size: 1rem; }

.compare {
  background: var(--navy);
  color: var(--cream);
}
.compare h2 { color: var(--cream); }
.compare-intro { color: rgba(247, 241, 230, 0.82); max-width: 60ch; }
.compare-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card {
  background: rgba(247, 241, 230, 0.04);
  border: 1px solid rgba(247, 241, 230, 0.12);
  padding: 2rem 1.75rem;
}
.compare-card.is-gps {
  background: var(--rust);
  border-color: var(--rust);
}
.compare-card h4 {
  color: var(--cream);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.compare-card.is-gps h4 { color: var(--cream); }
.compare-card ul { list-style: none; padding: 0; }
.compare-card li {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: rgba(247, 241, 230, 0.82);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(247, 241, 230, 0.1);
  padding-left: 1.5rem;
  position: relative;
}
.compare-card li:last-child { border-bottom: 0; }
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.1rem;
  width: 8px; height: 1px;
  background: var(--orange);
}
.compare-card.is-gps li { color: rgba(247, 241, 230, 0.95); }
.compare-card.is-gps li::before { background: var(--cream); }

/* ---------- Services page ---------- */
.service-block {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:nth-child(even) { background: var(--cream-soft); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .service-grid { grid-template-columns: 1fr; } }
.service-label {
  position: sticky;
  top: 100px;
}
.service-label .label-num {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--rust);
}
.service-label h2 { margin-top: 0.5rem; }
.service-detail h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.service-detail p { font-size: 1.05rem; margin-bottom: 1.25rem; }
.service-detail h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--rust);
}
.service-detail ul {
  list-style: none;
  padding: 0;
}
.service-detail li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  font-size: 1rem;
}
.service-detail li:last-child { border-bottom: 0; }
.service-detail li strong { color: var(--navy); font-weight: 600; }

.flagship {
  background: var(--navy);
  color: var(--cream);
}
.flagship .service-label .label-num { color: var(--orange); }
.flagship h2 { color: var(--cream); }
.flagship h3 { color: var(--cream); }
.flagship h4 { color: var(--orange); }
.flagship p { color: rgba(247, 241, 230, 0.85); }
.flagship li { border-bottom-color: rgba(247, 241, 230, 0.15); color: rgba(247, 241, 230, 0.92); }
.flagship li strong { color: var(--cream); }
.flagship .meeting-num {
  font-family: var(--display);
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.flagship .outcome {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(224, 138, 60, 0.12);
  border-left: 3px solid var(--orange);
}
.flagship .outcome strong { color: var(--orange); display: block; margin-bottom: 0.3rem; font-family: var(--display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 {
  font-size: 1.1rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rust);
  margin-bottom: 0.6rem;
  margin-top: 2rem;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info a { font-size: 1.02rem; color: var(--ink); }
.contact-info a { display: block; }

.contact-form {
  background: var(--cream-soft);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
}
.field {
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-note {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 1rem;
}

.reassure {
  background: var(--cream-soft);
  border-left: 3px solid var(--orange);
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.98rem;
}
.reassure strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

/* ---------- Reveal-on-scroll (progressive enhancement) ----------
   Content is visible by default. The .js class is added by JS on
   document load, only then do .reveal elements start hidden. This
   way the page works even without JS, search bots, or before
   IntersectionObserver fires. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: translateY(0); }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
.js .reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}
