/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg: #232323;
  --bg-elevated: #2c2c2c;
  --bg-card: #343434;
  --border: rgba(245, 240, 235, 0.09);
  --border-hover: rgba(245, 240, 235, 0.2);
  --text: #f7f2ed;
  --text-muted: #b5ada4;
  --accent: #db8758;
  --accent-light: #e9a078;
  --accent-dim: rgba(219, 135, 88, 0.15);
  --accent-glow: rgba(219, 135, 88, 0.35);
  --sans: "DM Sans", system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 48px rgba(219, 135, 88, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --section-pad: clamp(88px, 11vw, 128px);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--accent-dim);
  color: var(--text);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1040px, 90vw);
  margin-inline: auto;
}

.container--wide {
  width: min(1180px, 94vw);
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.prose p:last-child { margin-bottom: 0; }

.text-accent {
  color: var(--accent-light);
  font-style: normal;
  font-weight: 500;
}

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.header.scrolled {
  background: rgba(35, 35, 35, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: flex; align-items: center; }
.logo-mark { height: 44px; width: auto; display: block; }

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-mark,
.brand-text { width: auto; display: block; }
.brand--about .brand-mark { height: 120px; }
.brand--about .brand-text { height: 64px; }
.brand--footer .brand-mark { height: 44px; }
.brand--footer .brand-text { height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }

.nav-cta {
  padding: 8px 18px;
  background: var(--accent-dim);
  color: var(--accent) !important;
  border-radius: var(--radius);
  border: 1px solid rgba(219, 135, 88, 0.3);
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta:hover {
  background: rgba(219, 135, 88, 0.22);
  border-color: rgba(219, 135, 88, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.btn:active { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #1a1a1a;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 240, 235, 0.28);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -20%, rgba(219, 135, 88, 0.11) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(219, 135, 88, 0.04) 0%, transparent 50%),
    var(--bg);
}

.hero-content {
  position: relative;
  padding-block: var(--section-pad);
  animation: fadeUp 0.8s ease both;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand-wrap {
  position: relative;
  margin-bottom: 36px;
}
.hero-brand-wrap::before {
  content: "";
  position: absolute;
  inset: -24px -32px;
  background: radial-gradient(ellipse at center, rgba(219, 135, 88, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-banner {
  width: min(600px, 100%);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

.hero-headline {
  font-size: clamp(1.45rem, 3.5vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  max-width: 580px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-subtitle {
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Sections ───────────────────────────────────────────────── */
section { padding-block: var(--section-pad); }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}
.section-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-top: 12px;
  border-radius: 2px;
  opacity: 0.6;
}
.section-header--center .section-eyebrow::after {
  margin-inline: auto;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.75;
}
.section-header { margin-bottom: 56px; }
.section-header--center {
  text-align: center;
}
.section-header--center .section-desc {
  margin-inline: auto;
}

/* ── About ───────────────────────────────────────────────────── */
.about-inner {
  max-width: none;
}

.about-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-inner .philosophy {
  margin-bottom: 28px;
}

.founder-card .philosophy-list {
  margin: 0 0 24px;
  gap: 12px;
}
.founder-card .philosophy-list li {
  font-size: 0.95rem;
  padding-left: 16px;
}

.founder-bio {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.founder-card {
  padding: clamp(28px, 4vw, 36px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.founder-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.88rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ── Services ────────────────────────────────────────────────── */
.services {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: rgba(219, 135, 88, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-summary {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.5;
}
.service-card > p:not(.service-summary) {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-examples li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.service-examples li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── What You Can Expect ─────────────────────────────────────── */
.expect {
  background: var(--bg);
  border-block: 1px solid var(--border);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.expect-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.expect-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
}
.expect-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Experience ──────────────────────────────────────────────── */
.experience { background: var(--bg-elevated); }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag-list li {
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ── Volunteer / Community ───────────────────────────────────── */
.volunteer {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(219, 135, 88, 0.05) 0%, transparent 50%),
    var(--bg);
}

.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 72px);
  align-items: start;
}

.volunteer-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 560px;
}

.volunteer-offerings {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.volunteer-offerings li {
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.volunteer-offerings strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.volunteer-offerings span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.volunteer-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.volunteer-spotlight {
  margin-top: 0;
  margin-bottom: 32px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.volunteer-spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
}
.volunteer-spotlight-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.volunteer-spotlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.volunteer-spotlight-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.volunteer-spotlight p:last-child {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.form-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ── Community ───────────────────────────────────────────────── */
.community { background: var(--bg-elevated); }

.community-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.community-list li {
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.7;
}
.community-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Philosophy ──────────────────────────────────────────────── */
.philosophy {
  padding-block: clamp(64px, 8vw, 96px);
  border-block: 1px solid var(--border);
}
.philosophy-inner { max-width: 640px; }

.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.philosophy-list li {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

/* ── Process ─────────────────────────────────────────────────── */
.process {
  border-block: 1px solid var(--border);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  max-width: 800px;
}
.process-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.process-steps li:not(:last-child)::after {
  content: "↓";
  color: var(--accent);
  font-size: 0.85rem;
  margin-right: 16px;
  opacity: 0.7;
}
.step-name {
  display: inline-block;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (min-width: 640px) {
  .process-steps {
    flex-wrap: nowrap;
  }
  .process-steps li:not(:last-child)::after {
    content: "→";
  }
}

/* ── Technologies ──────────────────────────────────────────────── */
.technologies {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  max-width: 720px;
  margin-inline: auto;
}
.tech-list li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 8vw, 72px);
  align-items: start;
}
.contact-info > p:not(.section-eyebrow) {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
  font-size: 1.02rem;
}
.contact-email {
  margin-top: 24px;
  font-size: 1rem;
}
.contact-email a {
  color: var(--accent);
  transition: opacity var(--transition);
}
.contact-email a:hover { opacity: 0.85; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.optional {
  font-weight: 400;
  opacity: 0.7;
}
.form-group input,
.form-group textarea,
.form-group select,
.form-group input[type="file"] {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
}
.form-group select { cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(184, 176, 168, 0.55); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
  background: rgba(0, 0, 0, 0.15);
}
.form-note {
  font-size: 0.88rem;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
}
.form-note.success {
  color: #7ec89a;
  background: rgba(126, 200, 154, 0.1);
}
.form-note.error {
  color: #e8928a;
  background: rgba(232, 146, 138, 0.1);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form,
.volunteer-form {
  position: relative;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  padding-block: 56px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px 64px;
  align-items: start;
}
.footer-brand { max-width: 280px; }
.footer-tagline {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 0.95rem;
  transition: opacity var(--transition);
}
.footer-email:hover { opacity: 0.85; }
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── Page layouts ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 80px));
  padding-bottom: clamp(40px, 6vw, 64px);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(219, 135, 88, 0.1) 0%, transparent 55%),
    var(--bg);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
}
.page-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.page-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}
.page-content {
  padding-top: 0;
  padding-bottom: var(--section-pad);
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-content {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover,
  .service-card:hover {
    transform: none;
  }
}

/* ── Platform navigation ─────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}
.nav-links a[aria-current="page"] {
  color: var(--text);
}

/* Mobile sticky actions */
.mobile-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 12px 16px;
  background: rgba(35, 35, 35, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  gap: 10px;
}
.mobile-actions .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.88rem;
}
body.has-mobile-actions {
  padding-bottom: 72px;
}

/* ── Feature cards ───────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.feature-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.feature-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.feature-card::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 18px;
  border-radius: 1px;
  opacity: 0.8;
}
a.feature-card:hover {
  border-color: rgba(219, 135, 88, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}
.feature-card .card-link {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}
.feature-card .card-link::after {
  content: " →";
}

/* ── Audience cards ──────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}
a.audience-card:hover {
  border-color: rgba(219, 135, 88, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.audience-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent);
}
.audience-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
}
.audience-card .card-link {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}
.audience-card .card-link::after {
  content: " →";
}

/* ── Path cards ──────────────────────────────────────────────── */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.path-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}
a.path-card:hover {
  border-color: rgba(219, 135, 88, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.path-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.path-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.path-card > p:not(.path-label) {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}

/* ── Steps grid ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: none;
  list-style: none;
}
.step-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-footer-link {
  text-align: center;
  margin-top: 32px;
}

/* ── Help chooser (services browse) ──────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.help-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}
a.help-card:hover {
  border-color: rgba(219, 135, 88, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.help-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.help-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 12px;
}
.service-next-hint {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--accent);
  color: #1a1a1a;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 16px;
}

body.nav-open {
  overflow: hidden;
}

.nav-mobile-cta {
  display: none;
  width: 100%;
  padding-top: 8px;
}
.btn-full {
  width: 100%;
}

/* ── Trust badges ────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}
.trust-item span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: clamp(56px, 8vw, 80px) 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(219, 135, 88, 0.08) 0%, transparent 60%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-band p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.75;
}
.cta-band .hero-actions {
  justify-content: center;
}

/* ── Service detail blocks ───────────────────────────────────── */
.service-block {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-block > p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}
.service-block h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.service-includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 24px;
  margin-bottom: 16px;
}
.service-includes li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.service-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.service-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── Pricing tables ──────────────────────────────────────────── */
.pricing-section {
  margin-bottom: 64px;
}
.pricing-section:last-child { margin-bottom: 0; }
.pricing-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-section .section-desc {
  margin-bottom: 32px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.pricing-table th {
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
}
.pricing-table td {
  color: var(--text-muted);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Plan cards ──────────────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.plan-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.plan-card.featured {
  border-color: rgba(219, 135, 88, 0.4);
  box-shadow: var(--shadow-glow);
}
.plan-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.plan-features {
  margin: 20px 0;
  flex-grow: 1;
}
.plan-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}
.plan-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  line-height: 1.65;
  margin-top: 24px;
}

/* ── Booking wizard ──────────────────────────────────────────── */
.booking-wizard {
  max-width: 960px;
  margin: 0 auto;
}
.booking-progress-wrap {
  margin-bottom: 40px;
}
.booking-progress {
  display: flex;
  gap: 4px;
}
.booking-progress-step {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  transition: background var(--transition);
}
.booking-progress-step.active,
.booking-progress-step.complete {
  background: var(--accent);
}
.booking-progress-labels {
  display: none;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.booking-progress-labels span.active {
  color: var(--accent);
  font-weight: 600;
}
.booking-feedback {
  display: none;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}
.booking-feedback.visible {
  display: block;
}
.booking-feedback.error {
  color: #e8928a;
  background: rgba(232, 146, 138, 0.1);
  border: 1px solid rgba(232, 146, 138, 0.2);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.booking-summary {
  display: none;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: fit-content;
}
.booking-summary.visible {
  display: block;
}
.booking-summary h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.booking-summary dl {
  display: grid;
  gap: 12px;
}
.booking-summary dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.booking-summary dd {
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.booking-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.booking-step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.booking-step-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.booking-panel {
  display: none;
}
.booking-panel.active {
  display: block;
  animation: fadeUp 0.4s ease both;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.choice-btn {
  padding: 20px;
  text-align: left;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}
.choice-btn:hover {
  border-color: rgba(219, 135, 88, 0.35);
}
.choice-btn.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.choice-btn strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.choice-btn span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-preview {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.pricing-preview h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.pricing-preview dl {
  display: grid;
  gap: 10px;
}
.pricing-preview dt {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-preview dd {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.6;
}
.pricing-preview .highlight {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.2rem;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}
.time-slot {
  padding: 12px;
  text-align: center;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.time-slot:hover { border-color: rgba(219, 135, 88, 0.35); }
.time-slot.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.time-slot.unavailable {
  opacity: 0.4;
  pointer-events: none;
}
.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.booking-confirmation {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.booking-confirmation h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent);
}
.booking-confirm-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.confirmation-detail {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.confirmation-detail dt {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.confirmation-detail dd {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.deposit-notice {
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── Process steps (numbered) ────────────────────────────────── */
.process-list {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}
.process-list li {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.process-list li:last-child { border-bottom: none; }
.process-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}
.process-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.process-list span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Policy blocks ───────────────────────────────────────────── */
.policy-block {
  margin-bottom: 40px;
}
.policy-block h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
}
.policy-block p,
.policy-block li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.policy-block ul {
  margin-top: 8px;
  padding-left: 20px;
}
.policy-block li {
  list-style: disc;
  margin-bottom: 6px;
}

.terms-updated {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.terms-scroll {
  max-height: 280px;
  overflow-y: auto;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.terms-scroll h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.terms-scroll ul {
  margin: 12px 0;
  padding-left: 1.25rem;
}
.terms-scroll li {
  margin-bottom: 10px;
}
.terms-scroll p {
  margin-bottom: 10px;
}
.terms-agreement {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.55;
  cursor: pointer;
}
.terms-agreement input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.terms-agreement a {
  color: var(--accent);
}
.terms-agreement a:hover {
  text-decoration: underline;
}
.contact-form .terms-agreement {
  margin-bottom: 20px;
}

/* ── Contact details ─────────────────────────────────────────── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail dt {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.contact-detail dd {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-detail dd a {
  color: var(--accent);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.sensitive-notice {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 1.65;
  margin-top: 16px;
}

/* ── Intro prose ─────────────────────────────────────────────── */
.intro-prose {
  max-width: 680px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.intro-prose p { margin-bottom: 1rem; }
.intro-prose p:last-child { margin-bottom: 0; }
.intro-prose--center {
  margin-inline: auto;
  text-align: center;
  max-width: 680px;
}

.subsection-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

.text-link {
  color: var(--accent);
  transition: opacity var(--transition);
}
.text-link:hover {
  opacity: 0.85;
}

.breadcrumb-link {
  color: var(--accent);
}

.price-note {
  font-weight: 400;
  color: var(--text-muted);
}

.content-narrow {
  max-width: 720px;
}

.u-mb-24 {
  margin-bottom: 24px;
}

.u-mb-28 {
  margin-bottom: 28px;
}

.u-mb-48 {
  margin-bottom: 48px;
}

.u-mb-16 {
  margin-bottom: 16px;
}

.u-mb-12 {
  margin-bottom: 12px;
}

.table-scroll--narrow {
  max-width: 400px;
}

.form-embedded {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

/* ── Section alt backgrounds ───────────────────────────────── */
.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (min-width: 900px) {
  .booking-layout.has-summary {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
  .booking-progress-labels {
    display: flex;
    font-size: 0.68rem;
  }
}

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .nav-actions { display: none; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(35, 35, 35, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 8px;
    font-size: 1rem;
  }
  .nav-links a:not(.nav-cta)::after { display: none; }

  .nav-mobile-cta { display: block; }

  .mobile-actions {
    display: flex;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  body[data-page="book"] .mobile-actions {
    display: none;
  }
  body[data-page="book"] {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

@media (max-width: 1024px) {
  .feature-grid,
  .feature-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: clamp(64px, 10vw, 88px);
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 32px;
  }

  .page-lead,
  .section-desc {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .cta-band {
    padding-inline: 0;
  }
  .cta-band h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    padding-inline: 4px;
  }
  .cta-band p {
    padding-inline: 4px;
  }

  .path-grid,
  .steps-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-brand {
    max-width: none;
    margin-inline: auto;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  .contact-grid,
  .volunteer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer-brand { grid-row: auto; }
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .logo-mark { height: 36px; }
  .hero-banner {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .process-steps {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-steps li:not(:last-child)::after {
    content: "↓";
    margin-right: 0;
    margin-left: 8px;
  }

  .feature-grid,
  .feature-grid--2,
  .feature-grid--4 {
    grid-template-columns: 1fr;
  }
  .audience-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .service-block { padding: 24px; }
  .booking-nav { flex-direction: column-reverse; }
  .booking-nav .btn { width: 100%; }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    min-width: 300px;
  }

  .section-header--center {
    text-align: center;
  }
  .section-header--center .section-desc {
    margin-inline: auto;
  }

  .contact-actions {
    flex-direction: column;
  }
  .contact-actions .btn {
    width: 100%;
    text-align: center;
  }
}
