/* =====================================================================
   Straight Line Solutions — site styles
   Brand colors:
     Primary:   #577466 sage  |  #DBBDAA blush  |  #B2825A tan
     Secondary: #C3684A coral |  #F0DFCF cream  |  #183829 forest
   Type: Sarvatrik Latin Medium (display) + Inter (body fallback)
   ===================================================================== */

@font-face {
  font-family: "Sarvatrik Latin";
  src: url("assets/fonts/SarvatrikLatin-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --sage: #577466;
  --blush: #dbbdaa;
  --tan: #b2825a;
  --coral: #c3684a;
  --cream: #f0dfcf;
  --forest: #183829;

  --bg: #fbf6f0;
  --bg-soft: #f5ebe0;
  --bg-cream: #f0dfcf;
  --ink: #183829;
  --ink-soft: #2f4a3d;
  --muted: #5d6e63;
  --line: rgba(24, 56, 41, 0.12);

  --container: 1180px;
  --container-narrow: 760px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(24, 56, 41, 0.05),
    0 4px 12px rgba(24, 56, 41, 0.04);
  --shadow:
    0 4px 12px rgba(24, 56, 41, 0.06),
    0 18px 40px rgba(24, 56, 41, 0.08);

  --font-display:
    "Sarvatrik Latin", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ----- Reset-ish base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 180ms var(--ease);
}

a:hover {
  color: var(--coral);
}

button {
  font-family: inherit;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.container.narrow {
  max-width: var(--container-narrow);
}

.center {
  text-align: center;
}

/* ----- Typography ----- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--forest);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 {
  font-size: clamp(2rem, 7.4vw, 4.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  margin-bottom: 0.6em;
}

h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  margin-bottom: 0.5em;
}

p {
  margin: 0 0 1.1em;
  max-width: 60ch;
}

.center p {
  margin-left: auto;
  margin-right: auto;
}

.body-lg {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.lede {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 18px;
}

.eyebrow.on-dark {
  color: var(--blush);
}

.text-accent {
  color: var(--sage);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition:
    transform 200ms var(--ease),
    background-color 200ms var(--ease),
    color 200ms var(--ease),
    border-color 200ms var(--ease),
    box-shadow 200ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}

.btn-accent {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}

.btn-accent:hover {
  background: #a8553b;
  border-color: #a8553b;
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--coral);
}

.btn-ghost.on-dark {
  color: var(--cream);
}

.btn-ghost.on-dark:hover {
  color: var(--blush);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-row.center {
  justify-content: center;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 240, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  color: var(--forest);
  font-weight: 500;
  font-size: 0.97rem;
}

.nav-list a:hover {
  color: var(--sage);
}

.nav-list .btn-primary {
  color: var(--cream);
}

.nav-list .btn-primary:hover {
  color: white;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest);
  margin: 5px 0;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

/* Mobile-only header CTA — appears once user scrolls past the hero. */
.header-cta-mobile {
  display: none;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: clamp(64px, 9vw, 120px) 0 clamp(72px, 10vw, 140px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(87, 116, 102, 0.08) 0,
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(195, 104, 74, 0.06) 0,
      transparent 50%
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
}

.hero-copy {
  max-width: 720px;
}

/* ----- Sections ----- */
.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ----- Problem ----- */
.section-problem {
  background: var(--bg);
}

.section-problem h2 {
  margin-bottom: 28px;
}

/* ----- Contrast (Development vs Fundraising) ----- */
.section-contrast {
  background: var(--bg-soft);
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.contrast-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.contrast-card-alt {
  background: var(--forest);
  color: var(--cream);
  border-color: transparent;
}

.contrast-card-alt h3,
.contrast-card-alt .contrast-tag {
  color: var(--cream);
}

.contrast-tag {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}

.contrast-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contrast-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(24, 56, 41, 0.1);
  font-size: 1.02rem;
}

.contrast-card-alt li {
  border-top-color: rgba(240, 223, 207, 0.2);
}

.contrast-card li:first-child {
  border-top: 0;
}

/* ----- Services ----- */
.section-services {
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--coral);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--ink-soft);
  margin: 0;
}

/* ----- Audience Fit ----- */
.section-fit {
  background: var(--cream);
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: white;
  border-radius: var(--radius);
  font-size: 1.06rem;
  line-height: 1.5;
  border: 1px solid var(--line);
}

.fit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-weight: 600;
}

/* ----- Engagement ----- */
.section-engagement {
  background: var(--bg);
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.engagement-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--line);
}

.engagement-tag {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.engagement-card h3 {
  font-size: 1.7rem;
}

.engagement-card p {
  color: var(--ink-soft);
  margin: 0;
}

/* ----- Pricing ----- */
.section-pricing {
  background: var(--bg-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  background: var(--forest);
  color: var(--cream);
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.pricing-card-featured h3,
.pricing-card-featured .pricing-amount,
.pricing-card-featured .pricing-cap,
.pricing-card-featured .pricing-flag {
  color: var(--cream);
}

.pricing-card-featured .pricing-list {
  color: var(--cream);
}

.pricing-card-featured .pricing-list li {
  border-top-color: rgba(240, 223, 207, 0.18);
}

.pricing-flag {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--coral);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--forest);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.pricing-amount-range {
  font-size: 2.6rem;
}

.pricing-currency {
  font-size: 0.55em;
  color: var(--sage);
  vertical-align: top;
  margin-right: 2px;
  font-weight: 500;
}

.pricing-cadence {
  font-size: 0.42em;
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 500;
}

.pricing-card-featured .pricing-currency {
  color: var(--blush);
}

.pricing-card-featured .pricing-cadence {
  color: var(--blush);
}

.pricing-dash {
  font-size: 0.85em;
  color: var(--sage);
}

.pricing-cap {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.pricing-card-featured .pricing-cap {
  color: var(--blush);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.pricing-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(24, 56, 41, 0.08);
  font-size: 0.97rem;
  color: var(--ink-soft);
}

.pricing-card-featured .pricing-list li {
  color: var(--cream);
}

.pricing-list li:first-child {
  border-top: 0;
}

/* ----- About ----- */
.section-about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  position: sticky;
  top: 110px;
}

.about-photo {
  margin: 0;
  position: sticky;
  top: 110px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px 14px 22px;
  box-shadow: var(--shadow-sm);
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-lg) - 6px);
}

.about-photo figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
  padding: 0 8px;
}

.about-photo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.about-photo-role {
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.stat-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.stat-list li {
  padding: 18px 0;
  border-top: 1px solid rgba(24, 56, 41, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-list li:first-child {
  border-top: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ----- Book / CTA ----- */
.section-book {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-book::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(195, 104, 74, 0.12) 0,
    transparent 60%
  );
  pointer-events: none;
}

.section-book h2 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.section-book .body-lg.on-dark {
  color: var(--blush);
}

.section-book .container {
  position: relative;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-tag {
  color: var(--ink-soft);
  margin: 0;
  max-width: 36ch;
  line-height: 1.5;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--ink);
}

.footer-nav a:hover {
  color: var(--coral);
}

.footer-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0;
}

.footer-contact a {
  color: var(--forest);
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--coral);
}

.footer-bottom {
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom-rights {
  white-space: nowrap;
}

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   Motion polish — subtle, premium, never gimmicky
   ===================================================================== */

/* Nav links — animated underline */
.nav-list a:not(.btn) {
  position: relative;
  padding-bottom: 4px;
}

.nav-list a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 320ms var(--ease);
}

.nav-list a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Buttons — refined lift + scale */
.btn {
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px) scale(1.015);
}

.btn-primary:hover,
.btn-accent:hover {
  box-shadow: 0 10px 24px rgba(24, 56, 41, 0.18);
}

.btn-outline:hover {
  box-shadow: 0 8px 20px rgba(24, 56, 41, 0.12);
}

/* Service cards — lift + number shift */
.service-card {
  transition:
    transform 360ms var(--ease),
    box-shadow 360ms var(--ease),
    border-color 360ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(87, 116, 102, 0.28);
}

.service-num {
  display: inline-block;
  transition:
    transform 320ms var(--ease),
    color 320ms var(--ease);
}

.service-card:hover .service-num {
  transform: translateX(3px);
  color: var(--sage);
}

/* Contrast cards — subtle lift on the lighter card only */
.contrast-card:not(.contrast-card-alt) {
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.contrast-card:not(.contrast-card-alt):hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Engagement cards — lift to white background */
.engagement-card {
  transition:
    transform 320ms var(--ease),
    background-color 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.engagement-card:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: var(--shadow);
}

/* Pricing cards — lift, with featured pulling extra */
.pricing-card:not(.pricing-card-featured) {
  transition:
    transform 340ms var(--ease),
    box-shadow 340ms var(--ease),
    border-color 340ms var(--ease);
}

.pricing-card:not(.pricing-card-featured):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(87, 116, 102, 0.32);
}

.pricing-card-featured {
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
}

.pricing-card-featured:hover {
  transform: translateY(-14px);
  box-shadow:
    0 24px 60px rgba(24, 56, 41, 0.22),
    0 0 0 1px rgba(195, 104, 74, 0.35);
}

/* Audience-fit items — lift + icon slide + color shift */
.fit-list li {
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.fit-list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.fit-icon {
  transition:
    transform 280ms var(--ease),
    background-color 280ms var(--ease);
}

.fit-list li:hover .fit-icon {
  transform: translateX(3px);
  background: var(--coral);
}

/* About photo — gentle tilt + lift */
.about-photo {
  transition:
    transform 450ms var(--ease),
    box-shadow 450ms var(--ease);
}

.about-photo:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: var(--shadow);
}

/* Footer nav — slight slide right on hover */
.footer-nav a {
  display: inline-block;
  transition: color 200ms var(--ease), transform 220ms var(--ease);
}

.footer-nav a:hover {
  transform: translateX(4px);
}

/* ----- Responsive ----- */
@media (max-width: 980px) {
  .about-grid,
  .contrast-grid,
  .engagement-grid,
  .service-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }

  .about-card,
  .about-photo {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .fit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  /* On mobile we don't show a menu — the only header action is "Book a Call". */
  .primary-nav {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .contrast-card,
  .engagement-card,
  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-amount {
    font-size: 2.8rem;
  }

  /* Mobile-only header CTA — hidden initially, fades in on scroll past hero */
  .header-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--forest);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
    pointer-events: none;
    transition:
      opacity 260ms var(--ease),
      transform 260ms var(--ease),
      background-color 200ms var(--ease);
  }

  .site-header.is-scrolled .header-cta-mobile {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .header-cta-mobile:hover,
  .header-cta-mobile:active {
    background: var(--sage);
    color: white;
  }

  /* Footer — more breathing room on mobile */
  .site-footer {
    padding: 56px 0 40px;
  }

  .footer-grid {
    gap: 36px;
    padding-bottom: 36px;
  }

  .footer-col {
    gap: 12px;
  }

  .footer-bottom {
    padding-top: 28px;
    text-align: center;
  }

  .footer-bottom p {
    line-height: 1.7;
  }

  .footer-bottom-rights {
    display: block;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
