* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* Disables scroll-anchoring so opening accordion items expands downward
     rather than silently adjusting scroll position. */
  overflow-anchor: none;
  scroll-behavior: smooth;
}

:root {
  --royal-green: #1A3E32;
  --gold: #C9974A;
  --gold-light: #DEB067;
  --beige: #F4F2DD;
  --white: #FAFAFA;
}

body {
  background-color: var(--royal-green);
  /* Blueprint grid: two repeating hairlines (40px minor, 200px major) fixed
     to the viewport so it doesn't seam between sections as the page scrolls. */
  background-image:
    linear-gradient(rgba(244, 242, 221, 0.05) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(244, 242, 221, 0.05) 0.5px, transparent 0.5px),
    linear-gradient(rgba(244, 242, 221, 0.07) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(244, 242, 221, 0.07) 0.5px, transparent 0.5px);
  background-size: 40px 40px, 40px 40px, 200px 200px, 200px 200px;
  background-attachment: fixed;
  color: var(--beige);
  font-family: "Montserrat", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0px 36px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, transform 0.3s ease;
}

/* Hides on deliberate scroll-down past the hero; reappears on scroll-up. */
.nav.is-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  height: 96px;
  width: auto;
  justify-self: start;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: rgba(244, 242, 221, 0.65);
  justify-self: center;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav .btn-outline {
  justify-self: end;
}

/* ── Hamburger & drawer ──────────────────────────────────────────────────── */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--beige);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Animate to X when open */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--royal-green);
  background-image:
    linear-gradient(rgba(244, 242, 221, 0.05) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(244, 242, 221, 0.05) 0.5px, transparent 0.5px),
    linear-gradient(rgba(244, 242, 221, 0.07) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(244, 242, 221, 0.07) 0.5px, transparent 0.5px);
  background-size: 40px 40px, 40px 40px, 200px 200px, 200px 200px;
  background-attachment: fixed;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 40px 40px;
  gap: 0;
  z-index: 49;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.nav-drawer-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244, 242, 221, 0.65);
  padding: 20px 0;
  width: 100%;
  max-width: 280px;
  text-align: center;
  transition: color 0.2s, letter-spacing 0.25s;
}

.nav-drawer-link:hover {
  color: var(--gold-light);
  letter-spacing: 3px;
}

.nav-drawer-cta {
  margin-top: 40px;
  width: auto;
  padding: 13px 44px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

/* Buttons that also use .reveal need their hover transitions restated so the
   reveal transition declaration doesn't silently override them. */
.btn.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

/* All buttons share the same hover language: lift + glassy dark fill.
   Cards intentionally do NOT get this treatment — this visual language
   exclusively signals "clickable" to the user. */
a.btn:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
}

.btn-outline {
  border-color: rgba(244, 242, 221, 0.35);
}

.btn-primary {
  background: var(--gold);
  color: var(--royal-green);
}

.btn-large {
  padding: 14px 28px;
  font-size: 14px;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  text-align: center;
  padding: 24px;
  max-width: 760px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari: excludes browser chrome from height calc */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(244, 242, 221, 0.55);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--beige);
}

.accent-mobilize {
  color: var(--beige);
  transition: color 0.8s ease 1.0s;
}

.reveal.is-visible .accent-mobilize {
  color: var(--gold-light);
}

.subtext {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(244, 242, 221, 0.6);
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* ── Section layout ──────────────────────────────────────────────────────── */

.section-wrap {
  padding: clamp(72px, 11vw, 160px) clamp(24px, 5vw, 48px);
  position: relative;
}

.section-wrap-flush {
  padding-top: 0;
  padding-bottom: 0;
}

.section {
  max-width: 1040px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  color: var(--beige);
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
  line-height: 1.35;
}

/* Blueprint corner crop marks framing each section. */
.crop-marks {
  position: absolute;
  inset: 20px;
  pointer-events: none;
}

.crop-mark {
  position: absolute;
  width: 14px;
  height: 14px;
}

.crop-mark.tl {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(201, 151, 74, 0.4);
  border-left: 1px solid rgba(201, 151, 74, 0.4);
}

.crop-mark.tr {
  top: 0;
  right: 0;
  border-top: 1px solid rgba(201, 151, 74, 0.4);
  border-right: 1px solid rgba(201, 151, 74, 0.4);
}

.crop-mark.bl {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(201, 151, 74, 0.4);
  border-left: 1px solid rgba(201, 151, 74, 0.4);
}

.crop-mark.br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(201, 151, 74, 0.4);
  border-right: 1px solid rgba(201, 151, 74, 0.4);
}

/* Editorial split: sticky label column + scrolling content column */
.split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.split .section-title {
  margin-bottom: 0;
}

.split-content .section-title {
  margin-bottom: clamp(36px, 5vw, 56px);
}

/* Sticky label: outer wrapper stretches to content height; inner label
   stays centered in the viewport while content scrolls past. */
.sticky-label-wrap {
  align-self: stretch;
}

.sticky-label {
  position: sticky;
  top: calc(50vh - var(--sticky-label-half, 80px));
}

/* ── What We Do ──────────────────────────────────────────────────────────── */

.row-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row-item {
  background: rgba(244, 242, 221, 0.05);
  border: 0.5px solid rgba(244, 242, 221, 0.15);
  border-radius: 8px;
  padding: 0 24px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.row-item.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s ease, border-color 0.2s ease;
}

.row-item:hover {
  background: rgba(244, 242, 221, 0.08);
  border-color: rgba(244, 242, 221, 0.3);
}

.row-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 28px 32px 28px 0;
}

.row-item summary::-webkit-details-marker {
  display: none;
}

.row-item summary::after {
  content: "+";
  position: absolute;
  top: 28px;
  right: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-light);
}

.row-item[open] summary::after {
  content: "\2212";
}

.row-mark {
  font-size: 20px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.row-heading {
  font-size: 19px;
  font-weight: 700;
  color: var(--beige);
  margin-bottom: 6px;
}

.row-desc {
  font-size: 15px;
  color: rgba(244, 242, 221, 0.65);
  line-height: 1.6;
}

.row-expand {
  padding-bottom: 28px;
}

.row-expand p {
  font-size: 14px;
  color: rgba(244, 242, 221, 0.65);
  line-height: 1.65;
}

.row-expand ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.row-expand ul li {
  font-size: 14px;
  color: rgba(244, 242, 221, 0.65);
  line-height: 1.65;
  padding: 3px 0 3px 18px;
  position: relative;
}

.row-expand ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-size: 16px;
  top: 1px;
}

.row-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 0.5px solid rgba(201, 151, 74, 0.5);
  border-radius: 4px;
  padding: 4px 10px;
  margin: 12px 0 10px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

a.row-badge:hover {
  color: var(--beige);
  border-color: rgba(201, 151, 74, 0.9);
  background: rgba(201, 151, 74, 0.1);
}

.row-target {
  margin-top: 20px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 4px;
}

.row-target-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.row-target-text {
  font-size: 14px;
  color: rgba(244, 242, 221, 0.7);
  line-height: 1.5;
}

/* ── How It Works timeline ───────────────────────────────────────────────── */

.timeline {
  position: relative;
  max-width: 680px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 52px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Vertical line running from bottom of marker circle to bottom of item */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: rgba(244, 242, 221, 0.15);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--royal-green);
  border: 0.5px solid rgba(244, 242, 221, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  flex-shrink: 0;
  z-index: 1;
}

/* Step 03 uses a sticky anchor: the step sticks to 50vh while the spacer
   below it scrolls, keeping it in view during the scroll gap before the
   "Working together" divider. The ::after draws the continuous line. */
.timeline-anchor {
  position: relative;
}

.timeline-anchor::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(244, 242, 221, 0.15);
}

.timeline-anchor-sticky {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  position: sticky;
  top: 50vh;
  margin-bottom: 5vh;
  z-index: 1;
}

.timeline-anchor-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--royal-green);
  border: 0.5px solid rgba(244, 242, 221, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  flex-shrink: 0;
}

.timeline-anchor-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--beige);
}

.timeline-anchor-content p {
  font-size: 14px;
  color: rgba(244, 242, 221, 0.65);
  line-height: 1.6;
}

.timeline-anchor-spacer {
  height: clamp(220px, 38vh, 520px);
}

/* Section break between "Getting started" and "Working together":
   the timeline line ends at the top diamond, the eyebrow + title sit
   at full section width, and a bottom diamond resumes the line into step 04. */
.timeline-break {
  display: flex;
  flex-direction: column;
}

.timeline-break-diamond {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.timeline-break-content {
  padding: 28px 0;
}

.timeline-break-content .section-eyebrow {
  margin-bottom: 16px;
}

.timeline-break-content .section-title {
  margin-bottom: 0;
}

/* Short connector from bottom diamond to step 04's circle */
.timeline-break-connector {
  width: 48px;
  height: 40px;
  position: relative;
}

.timeline-break-connector::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(244, 242, 221, 0.15);
}

.timeline-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--beige);
}

.timeline-content p {
  font-size: 14px;
  color: rgba(244, 242, 221, 0.65);
  line-height: 1.6;
  max-width: 520px;
}

/* ── About ───────────────────────────────────────────────────────────────── */

.about-split {
  align-items: stretch;
}

.about-photo {
  align-self: stretch;
  width: 100%;
  background: rgba(244, 242, 221, 0.04);
  border: 0.5px solid rgba(244, 242, 221, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-photo-initials {
  font-size: 48px;
  font-weight: 700;
  color: rgba(244, 242, 221, 0.12);
  letter-spacing: 0.05em;
}

.about-photo-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 242, 221, 0.18);
}

.about-body {
  max-width: 680px;
}

.about-body p {
  font-size: 15px;
  color: rgba(244, 242, 221, 0.75);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-attribution {
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  margin-top: 32px;
  margin-bottom: 0;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */

/* Scroll-pin: section freezes in the viewport while the carousel pans
   horizontally via transform. Disabled on mobile in favour of native swipe. */
.quote-pin {
  position: relative;
  height: calc(100vh + 70vh);
}

.quote-pin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.section-wrap-inner {
  padding: clamp(60px, 8vw, 100px) 0 0;
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.featured-quote {
  max-width: 760px;
  margin-bottom: 56px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.quote-large {
  font-size: clamp(19px, 2.4vw, 24px);
  font-style: italic;
  font-weight: 500;
  color: var(--beige);
  line-height: 1.55;
  margin-bottom: 18px;
}

.quote-highlight {
  color: var(--gold-light);
  font-weight: 700;
  font-style: normal;
}

.quote-carousel-wrap {
  max-width: 880px;
}

.quote-carousel-window {
  overflow: hidden;
  margin-bottom: 16px;
}

.quote-carousel {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.quote-carousel::-webkit-scrollbar {
  display: none;
}

.quote-compact {
  flex: 0 0 calc(50% - 12px);
  min-width: 260px;
  background: rgba(244, 242, 221, 0.05);
  border: 0.5px solid rgba(244, 242, 221, 0.15);
  border-radius: 8px;
  padding: 24px;
  height: 220px;
  display: flex;
  flex-direction: column;
}

.quote-small {
  font-size: 14px;
  font-style: italic;
  color: rgba(244, 242, 221, 0.75);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.quote-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
}

/* CTA tile — linked, gold-tinted, replaces a real testimonial slot */
.quote-compact--filler {
  background: rgba(184, 142, 67, 0.18);
  border-color: rgba(184, 142, 67, 0.6);
}

.quote-compact--filler .quote-small {
  color: rgba(220, 175, 90, 0.9);
  font-style: normal;
  letter-spacing: 0.01em;
}

.quote-compact--cta {
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.quote-compact--cta:hover {
  background: rgba(184, 142, 67, 0.28);
  border-color: rgba(220, 175, 90, 0.85);
}

.quote-cta-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: auto;
}

/* Swipe indicator dots — shown on mobile only */
.quote-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
}

.quote-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 242, 221, 0.25);
  transition: background 0.25s;
  flex-shrink: 0;
}

.quote-dot.active {
  background: var(--gold-light);
}

/* Quote modal — triggered by a "read more" button if re-enabled in future */
.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 8, 0.7);
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

.quote-modal-overlay.is-open {
  display: flex;
}

.quote-modal {
  position: relative;
  background: var(--royal-green);
  border: 0.5px solid rgba(244, 242, 221, 0.25);
  border-radius: 12px;
  max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
}

.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: rgba(244, 242, 221, 0.6);
  cursor: pointer;
}

.quote-modal-close:hover {
  color: var(--beige);
}

.quote-modal-text {
  font-size: 15px;
  font-style: italic;
  color: var(--beige);
  line-height: 1.7;
  margin-bottom: 18px;
}

.quote-modal-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.faq-item {
  background: rgba(244, 242, 221, 0.05);
  border: 0.5px solid rgba(244, 242, 221, 0.15);
  border-radius: 8px;
  padding: 0 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  background: rgba(244, 242, 221, 0.08);
  border-color: rgba(244, 242, 221, 0.3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-light);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  font-size: 14px;
  color: rgba(244, 242, 221, 0.65);
  line-height: 1.65;
  padding-bottom: 22px;
}

/* ── Contact & Footer ────────────────────────────────────────────────────── */

.contact-wrap {
  position: relative;
  min-height: 100vh;
}

.contact {
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact .section-title {
  margin: 0 auto 16px;
}

.contact-sub {
  font-size: 15px;
  color: rgba(244, 242, 221, 0.65);
  max-width: 480px;
  margin: 0 auto 36px;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: rgba(244, 242, 221, 0.4);
  background: transparent;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
  .nav-drawer { display: flex; }
  .nav { display: flex; justify-content: center; padding: 0; }
  .nav-logo { height: 56px; }

  .hero h1 { font-size: 32px; }

  .about-photo { min-height: 240px; }
  .hero { padding-top: 56px; padding-bottom: 56px; }

  .quote-dots { display: flex; }
  .section-wrap-inner { padding-bottom: 60px; }
  .quote-compact { flex: 0 0 100%; }

  /* Disable scroll-pin pan on mobile; fall back to native swipe-scroll */
  .quote-pin {
    height: auto;
  }

  .quote-pin-sticky {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
  }

  .quote-carousel-window {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .quote-carousel {
    transform: none !important;
  }

  .quote-compact {
    scroll-snap-align: start;
  }
}

/* ── Scroll reveal ───────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered reveal delays */
.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.30s; }
.reveal-d3 { transition-delay: 0.45s; }
/* Hero CTA reveals after "mobilize" starts turning gold (1.0s delay on entrance only;
   hover transitions have 0s delay so they're unaffected after the reveal fires). */
.btn.reveal.btn-hero {
  transition: opacity 0.6s ease 1.0s, transform 0.6s ease 1.0s, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
