/* =========================================================
   WorkFractional — styles
   Brand tokens live at the top; sections follow in HTML order.
   ========================================================= */

:root {
  --cream:      #F5F1EB;
  --cream-deep: #F0EBE3;
  --coral:      #CB3B3B;
  --rose:       #CB3B3B;
  --rose-dark:  #B23232;
  --charcoal:   #2A2A2A;
  --warm-gray:  #6B615A;
  --warm-gray-soft: #8A8079;
  --hairline:   rgba(42, 42, 42, 0.10);

  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --script: 'Parisienne', 'Brush Script MT', cursive;

  --maxw: 1140px;
  --maxw-narrow: 760px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--warm-gray);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--coral);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--rose-dark); }

p { margin: 0 0 1.1em; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.005em;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.narrow { max-width: var(--maxw-narrow); margin-left: auto; margin-right: auto; }
.narrow-center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 16px;
}
.eyebrow-onlight { color: var(--coral); }

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 24px;
}

.lead {
  font-size: 16px;
  color: var(--warm-gray);
  max-width: 60ch;
}
.narrow-center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Wordmark ---------- */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.wordmark-work {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.wordmark-script {
  font-family: var(--script);
  color: var(--coral);
  font-weight: 400;
  /* Pull the script in tight against WORK so it reads as one mark. */
  margin-left: -0.04em;
}

.wordmark-sm .wordmark-work { font-size: 22px; }
.wordmark-sm .wordmark-script {
  font-size: 30px;
  /* Slight optical drop so the cursive baseline sits nicely. */
  transform: translateY(0.12em);
}

.wordmark-lg {
  margin-bottom: 24px;
}
.wordmark-lg .wordmark-work { font-size: clamp(44px, 7vw, 78px); }
.wordmark-lg .wordmark-script {
  font-size: clamp(60px, 9vw, 104px);
  transform: translateY(0.12em);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.btn-primary:hover {
  background: var(--rose-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(178, 50, 50, 0.25);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 235, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.nav.is-scrolled {
  box-shadow: 0 6px 24px rgba(42, 42, 42, 0.04);
  background: rgba(245, 241, 235, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}
.nav-links a:not(.btn):hover {
  color: var(--coral);
}

/* Hamburger toggle (hidden on desktop, shown on small screens) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
}
.nav-toggle-bar {
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .25s var(--ease), top .3s var(--ease);
}
.nav-toggle-bar:nth-child(1) { top: 13px; }
.nav-toggle-bar:nth-child(2) { top: 19px; }
.nav-toggle-bar:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}
body.nav-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 96px;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero-copy {
  width: 100%;
  max-width: 720px;
  margin: -50px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.08;
  margin: 8px 0 18px;
}
.hero-brandline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--coral);
  margin: 4px 0 18px;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 17px;
  color: var(--warm-gray);
  margin: 0 auto 28px;
  max-width: 60ch;
}
.hero-microcopy {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--warm-gray-soft);
  font-style: italic;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.hero-art-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* ---------- Sections (shared) ---------- */
.section {
  padding: 112px 0;
}

/* ---------- Problem ---------- */
.section-problem .lead {
  font-size: 16px;
}

/* ---------- What I do: lead card + toolkit cards ---------- */
.lead-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--coral);
  border-radius: 14px;
  padding: 44px 44px 40px;
  max-width: 880px;
  margin: 56px auto 0;
  box-shadow: 0 10px 40px rgba(42, 42, 42, 0.05);
}
.lead-card .eyebrow {
  margin-bottom: 12px;
}
.lead-card-title {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 16px;
  line-height: 1.2;
}
.lead-card-body {
  color: var(--warm-gray);
  font-size: 16px;
  margin: 0 0 20px;
}
.lead-card-list {
  margin: 8px 0 0;
  padding-left: 1.1em;
  columns: 2;
  column-gap: 36px;
}
.lead-card-list li {
  margin: 6px 0;
  break-inside: avoid;
}
.lead-card-list li::marker {
  color: var(--coral);
}

.toolkit-intro {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--warm-gray);
  font-size: 16px;
  max-width: 60ch;
  margin: 64px auto 24px;
}
.toolkit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.toolkit-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 32px 28px;
}
.toolkit-title {
  font-size: 22px;
  margin: 0 0 10px;
  line-height: 1.2;
}
.toolkit-card p {
  color: var(--warm-gray);
  margin: 0;
}

/* ---------- The Exit Edge ---------- */
.section-exit {
  background: var(--charcoal);
  color: rgba(245, 241, 235, 0.85);
}
.section-exit .section-headline {
  color: var(--cream);
}
.section-exit .eyebrow {
  color: var(--coral);
}
.section-exit .lead {
  color: rgba(245, 241, 235, 0.78);
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}
.exit-flow {
  margin: 56px auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.exit-step {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.exit-arrow {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--coral);
}
.exit-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- How we work ---------- */
.section-howwework {
  background: var(--cream-deep);
}

/* Two engagement cards above the 3-step approach */
.engagement-grid {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  align-items: stretch;
}
.engagement-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 40px 32px;
}
.engagement-card .eyebrow {
  margin-bottom: 12px;
}
.engagement-title {
  font-size: clamp(24px, 2.4vw, 30px);
  margin: 0 0 16px;
  line-height: 1.2;
}
.engagement-body {
  color: var(--warm-gray);
  margin: 0 0 16px;
}
.engagement-bestfor {
  margin: 0 0 24px;
}
.engagement-bestfor em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--charcoal);
  font-size: 16px;
}
.engagement-price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--charcoal);
  margin: 0 0 20px;
}
.engagement-price strong { font-weight: 700; }
.engagement-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* "Our approach" intro that sits between the engagement cards and the steps */
.approach-intro {
  margin: 96px auto 0;
}
.approach-subhead {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--charcoal);
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 8px;
  line-height: 1.2;
}
.approach-line {
  margin: 0;
  color: var(--warm-gray);
}

.steps {
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 980px;
}
.step {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px 26px;
  text-align: left;
  min-height: 100%;
}
.step-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 12px;
}
.step-title {
  font-size: 24px;
  margin-bottom: 8px;
}
.step-copy {
  margin: 0;
  color: var(--warm-gray);
  font-size: 15px;
}
.step-arrow {
  align-self: center;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--coral);
  padding-top: 28px;
}

/* ---------- Logo wall ---------- */
.logo-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.logo-box {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--charcoal);
  background: transparent;
  letter-spacing: 0.01em;
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.logo-box:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.about-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 15% center;
  border-radius: 14px;
}
.about-copy p {
  font-size: 15px;
}
.about-copy em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--charcoal);
}

/* The bench — 3-up of headshot cards inside the About section */
.bench-block {
  margin-top: 96px;
}
.bench-intro {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--warm-gray);
  font-size: 16px;
  max-width: 60ch;
  margin: 0 auto 40px;
}
.bench-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.bench-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bench-photo {
  display: block;
  width: 72%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  align-self: center;
  margin-bottom: 18px;
}
.bench-name {
  font-size: 22px;
  margin: 0 0 4px;
  line-height: 1.2;
}
.bench-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 14px;
}
.bench-bio {
  color: var(--warm-gray);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 16px;
}
.bench-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--coral);
  background: transparent;
  transition: color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
  margin-top: auto;
}
.bench-linkedin:hover {
  color: var(--cream);
  background: var(--coral);
  transform: translateY(-1px);
}
.bench-linkedin svg { display: block; }

/* ---------- Contact ---------- */
.section-contact {
  background: var(--cream-deep);
}
.section-contact .calendly-inline-widget {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 10px 40px rgba(42, 42, 42, 0.05);
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 48px;
  background: var(--cream);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.footer-tagline {
  margin: 4px 0 0;
  color: var(--warm-gray);
  max-width: 52ch;
}
.footer-meta {
  margin: 6px 0 0;
  color: var(--warm-gray-soft);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.footer-meta a {
  color: var(--warm-gray);
}
.footer-meta a:hover { color: var(--coral); }

/* =========================================================
   PRICING PAGE
   Same design system as the homepage; only new components live here.
   ========================================================= */

/* Hero on the pricing page (no logo composition, just type-led) */
.pricing-hero {
  padding: 112px 0 64px;
  text-align: center;
}
.pricing-hero-headline {
  margin-bottom: 18px;
}

/* Operations Diagnostic — single emphasized card on cream-deep background */
.section-diagnostic {
  background: var(--cream-deep);
}
.diagnostic-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--coral);
  border-radius: 14px;
  padding: 48px 44px;
  box-shadow: 0 10px 40px rgba(42, 42, 42, 0.05);
}
.diagnostic-head .eyebrow { margin-bottom: 12px; }
.diagnostic-sub {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--charcoal);
  margin: 0 0 24px;
}
.diagnostic-sub strong { font-weight: 700; }
.diagnostic-body p {
  color: var(--warm-gray);
  margin: 0 0 20px;
}
.diagnostic-list-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 24px 0 12px;
}
.diagnostic-list {
  margin: 0 0 28px;
  padding-left: 1.1em;
}
.diagnostic-list li {
  margin: 8px 0;
  color: var(--warm-gray);
}
.diagnostic-list li::marker { color: var(--coral); }

/* Retainer tier grid */
.tier-grid {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  align-items: stretch;
}
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 36px 28px;
}
.tier-card.is-featured {
  border: 2px solid var(--coral);
  box-shadow: 0 14px 44px rgba(203, 59, 59, 0.10);
  transform: translateY(-4px);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-card .eyebrow {
  margin-bottom: 10px;
}
.tier-price {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 4px;
  line-height: 1.1;
}
.tier-price-unit {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}
.tier-cadence {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray-soft);
  margin: 0 0 20px;
}
.tier-positioning {
  color: var(--warm-gray);
  margin: 0 0 22px;
}
.tier-list-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 10px;
}
.tier-list {
  margin: 0 0 24px;
  padding-left: 1.1em;
}
.tier-list li {
  margin: 6px 0;
  color: var(--warm-gray);
  font-size: 14px;
}
.tier-list li::marker { color: var(--coral); }
.tier-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* "Set expectations" section reuses .section + cream-deep */
.section-expectations {
  background: var(--cream-deep);
}

/* FAQ accordion (native <details>) */
.faq-list {
  margin-top: 40px;
}
.faq-item {
  border-top: 1px solid var(--hairline);
}
.faq-list .faq-item:last-of-type {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  padding-right: 40px;
  transition: color .2s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--coral); }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 26px;
  color: var(--coral);
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq-item[open] .faq-q::after {
  content: '\2013'; /* en dash for the open state */
}
.faq-a {
  margin: 0 0 22px;
  color: var(--warm-gray);
  max-width: 60ch;
}

/* Final CTA block on pricing page */
.section-pricing-cta {
  background: var(--cream-deep);
  text-align: center;
}
.section-pricing-cta .lead {
  margin-bottom: 28px;
}

/* Current-page highlight in nav (desktop) */
.nav-links a[aria-current="page"] {
  color: var(--coral);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 40px 0 64px; }
  .hero-art { max-width: 270px; }
  .hero-copy { margin-top: -35px; }
  .section { padding: 72px 0; }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 460px;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    justify-self: center;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 540px;
  }
  .approach-intro { margin-top: 72px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-photo { max-width: 360px; margin: 0 auto; }

  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .lead-card { padding: 32px 24px; }
  .lead-card-list { columns: 1; }
  .toolkit-grid { grid-template-columns: 1fr; max-width: 540px; }

  .bench-block { margin-top: 72px; }
  .bench-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Pricing page */
  .pricing-hero { padding: 80px 0 40px; }
  .diagnostic-card { padding: 36px 26px; }
  .tier-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
  }
  .tier-card.is-featured { transform: none; }
}

@media (max-width: 767px) {
  /* Show hamburger, hide inline nav by default */
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 40;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a:not(.btn) {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
  }
  .nav-links a.btn {
    margin-top: 8px;
    padding: 14px 28px;
    font-size: 16px;
  }
  .nav-links a[aria-current="page"] {
    color: var(--coral);
  }
}

@media (max-width: 620px) {
  .section-headline { font-size: 28px; }
  .hero-sub { font-size: 16px; }
  .lead { font-size: 15px; }
}

/* Respect users who prefer reduced motion. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
