/* ==========================================================================
   Boundless Fitness with Pushpa — site stylesheet
   Palette: cream paper / forest ink / terracotta clay / sage
   Type: Fraunces (display) + Karla (body)
   ========================================================================== */

:root {
  --paper: #f7f1e6;
  --paper-deep: #efe6d4;
  --ink: #22392e;
  --ink-soft: #47594e;
  --clay: #c05b33;
  --clay-deep: #a34625;
  --sage: #9db8a4;
  --gold: #d9a441;
  --white: #fffdf8;
  --shadow: 0 24px 60px -24px rgba(34, 57, 46, 0.35);
  --radius-lg: 22px;
  --radius-sm: 10px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Karla", "Helvetica Neue", sans-serif;
  --measure: 62ch;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: var(--clay); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.wrap { width: min(1140px, 92vw); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
}

.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: var(--measure); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 57, 46, 0.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 640;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.wordmark .logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.site-footer .wordmark .logo { width: 48px; height: 48px; }
.wordmark em { font-style: italic; color: var(--clay); }
.nav-links { display: flex; gap: 1.9rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--clay);
  transition: right 0.25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 99px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--clay); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.9rem;
  border-radius: 99px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 12px 28px -12px rgba(192, 91, 51, 0.6);
}
.btn-primary:hover { background: var(--clay-deep); color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 1.1rem 0 1.4rem;
}
.hero h1 .accent { font-style: italic; color: var(--clay); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -7%;
  background: radial-gradient(closest-side, rgba(217, 164, 65, 0.35), transparent 70%);
  z-index: 0;
}
.hero-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 170px 170px 22px 22px;
  box-shadow: var(--shadow);
}
.hero-portrait .badge {
  position: absolute;
  z-index: 2;
  left: -9%;
  bottom: 9%;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}
.hero-portrait .badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--clay);
}

/* decorative ring */
.hero .ring {
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px; height: 420px;
  border: 1.5px solid rgba(192, 91, 51, 0.25);
  border-radius: 50%;
  pointer-events: none;
}
.hero .ring::after {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1.5px dashed rgba(34, 57, 46, 0.18);
  border-radius: 50%;
}

/* ---------- stat band ---------- */
.stat-band {
  background: var(--ink);
  color: var(--paper);
  padding: 2.6rem 0;
}
.stat-band .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: var(--gold);
}
.stat span { font-size: 0.92rem; opacity: 0.85; }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-top: 1rem; max-width: 24ch; }
.section.tinted { background: var(--paper-deep); }

/* ---------- services list (numbered editorial) ---------- */
.svc-list { list-style: none; border-top: 1px solid rgba(34, 57, 46, 0.18); }
.svc-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.6rem 0.4rem;
  border-bottom: 1px solid rgba(34, 57, 46, 0.18);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, padding-left 0.25s ease;
}
.svc-item:hover { background: rgba(192, 91, 51, 0.07); padding-left: 1.1rem; }
.svc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--clay);
}
.svc-item h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin-bottom: 0.3rem; }
.svc-item p { color: var(--ink-soft); font-size: 0.98rem; max-width: 56ch; }
.svc-item .go {
  font-size: 1.4rem;
  color: var(--clay);
  transition: transform 0.25s ease;
}
.svc-item:hover .go { transform: translateX(6px); }

/* ---------- service detail cards (services page) ---------- */
.svc-card {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: 0 16px 44px -28px rgba(34, 57, 46, 0.4);
  margin-bottom: 2rem;
  scroll-margin-top: 6rem;
}
.svc-card .svc-side h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin: 0.5rem 0 0.8rem;
}
.svc-card .svc-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}
.svc-card .svc-photo {
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  margin-top: 1.1rem;
  box-shadow: 0 12px 30px -20px rgba(34, 57, 46, 0.5);
}
.svc-card .svc-photo.duo { aspect-ratio: 1 / 1; }
.svc-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.1rem; }
.svc-photo-row .svc-photo { margin-top: 0; }
.svc-card .svc-body p { margin-bottom: 1rem; color: var(--ink-soft); }
.svc-card ul { margin: 0.6rem 0 1rem 1.2rem; color: var(--ink-soft); }
.svc-card li { margin-bottom: 0.45rem; }
.svc-card li::marker { color: var(--clay); }

/* ---------- feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split .img-stack { position: relative; }
.split .img-stack img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.split .img-stack .float-note {
  position: absolute;
  right: -6%;
  bottom: -8%;
  background: var(--clay);
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  max-width: 240px;
  line-height: 1.4;
}
.split h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 1rem 0 1.2rem; }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }

/* checklist */
.checks { list-style: none; margin: 1.4rem 0; }
.checks li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.checks li::before {
  content: "✦";
  color: var(--clay);
  flex: 0 0 auto;
}

/* ---------- testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.testi {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: 0 14px 40px -30px rgba(34, 57, 46, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi .tf-photo {
  margin: -1.7rem -1.6rem 0.2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: calc(100% + 3.2rem);
  max-width: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
}
.testi .kg {
  align-self: flex-start;
  background: rgba(192, 91, 51, 0.12);
  color: var(--clay-deep);
  font-family: var(--font-display);
  font-weight: 640;
  font-size: 1.05rem;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
}
.testi blockquote {
  font-size: 0.99rem;
  color: var(--ink-soft);
  border: 0;
}
.testi cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}
.testi cite::before { content: "— "; color: var(--clay); }

/* highlight testimonial */
.testi.feature {
  grid-column: span 2;
  background: var(--ink);
  color: var(--paper);
}
.testi.feature blockquote { color: rgba(247, 241, 230, 0.85); font-size: 1.1rem; }
.testi.feature cite { color: var(--gold); }
.testi.feature .kg { background: rgba(217, 164, 65, 0.18); color: var(--gold); }

/* ---------- certificates ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.cert-grid figure {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 14px 40px -30px rgba(34, 57, 46, 0.5);
}
.cert-grid img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain; /* documents: letterbox, never crop */
  background: var(--white);
}
.cert-grid figcaption {
  padding: 0.8rem 0.3rem 0.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

/* ---------- photo gallery (about) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 40px -30px rgba(34, 57, 46, 0.5);
  background: var(--white);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
}
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ---------- CTA panel ---------- */
.cta-panel {
  background: linear-gradient(120deg, var(--ink) 0%, #2f4a3c 100%);
  border-radius: var(--radius-lg);
  color: var(--paper);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before, .cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(217, 164, 65, 0.3);
}
.cta-panel::before { width: 300px; height: 300px; left: -110px; bottom: -140px; }
.cta-panel::after { width: 220px; height: 220px; right: -70px; top: -90px; border-style: dashed; }
.cta-panel h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  max-width: 22ch;
  margin: 0 auto 1rem;
}
.cta-panel p { opacity: 0.85; max-width: 52ch; margin: 0 auto 2rem; }

/* ---------- forms / contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info .item { margin-bottom: 1.6rem; }
.contact-info .item h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.contact-info .item p, .contact-info .item a { color: var(--ink-soft); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(34, 57, 46, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(192, 91, 51, 0.15);
}
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.8rem; }

/* date + time slot picker */
.field-sub { font-weight: 400; font-size: 0.82rem; color: var(--ink-soft); }
.field-hint { font-size: 0.85rem; color: var(--clay-deep); margin-top: 0.4rem; }
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.slot-grid label {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 0.4rem;
  border: 1.5px solid rgba(34, 57, 46, 0.25);
  border-radius: 99px;
  cursor: pointer;
  background: var(--paper);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.slot-grid input { position: absolute; opacity: 0; pointer-events: none; }
.slot-grid input:checked + span { color: inherit; }
.slot-grid label:has(input:checked) {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--white);
}
.slot-grid label:has(input:disabled) {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}
@media (max-width: 480px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
}

/* booking steps / payment */
.step-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.step-num {
  flex: 0 0 auto;
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.pay-to {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.pay-to code {
  background: var(--paper);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
#pay-step .btn { width: 100%; justify-content: center; }
.qr-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.1rem;
  padding: 0.9rem;
  background: var(--paper);
  border-radius: var(--radius-sm);
}
.qr-box img { border-radius: 6px; width: 110px; height: 110px; }
.qr-box p { font-size: 0.85rem; color: var(--ink-soft); }
.linklike {
  background: none;
  border: 0;
  color: var(--clay);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1.2rem;
  padding: 0;
}
.linklike:hover { text-decoration: underline; }

/* ---------- prose (privacy) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.6rem; margin: 2.2rem 0 0.8rem; }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 0.9rem; }
.prose ul { margin-left: 1.3rem; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: clamp(3rem, 7vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-hero h1 { font-size: clamp(2.3rem, 5.5vw, 3.8rem); margin-top: 1rem; max-width: 20ch; }
.page-hero .lede { margin-top: 1.2rem; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(247, 241, 230, 0.8);
  padding: 3.5rem 0 2rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.site-footer .wordmark { color: var(--paper); font-size: 1.35rem; }
.site-footer p { font-size: 0.95rem; margin-top: 0.8rem; max-width: 34ch; }
.site-footer h4 {
  color: var(--paper);
  font-size: 1rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(247, 241, 230, 0.8); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-base {
  border-top: 1px solid rgba(247, 241, 230, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ---------- lead magnet strip ---------- */
.magnet-strip {
  background: var(--paper-deep);
  border-block: 1px solid rgba(34, 57, 46, 0.12);
  padding: 1.8rem 0;
}
.magnet-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
}
.magnet-icon {
  font-size: 2.4rem;
  background: var(--white);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px -16px rgba(34, 57, 46, 0.5);
}
.magnet-inner h2 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.magnet-inner h2 em { color: var(--clay); }
.magnet-inner p { color: var(--ink-soft); font-size: 0.97rem; max-width: 56ch; }
@media (max-width: 820px) {
  .magnet-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ---------- family cards (about) ---------- */
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.family-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem 1.8rem;
  box-shadow: 0 14px 40px -30px rgba(34, 57, 46, 0.5);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.family-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.family-mono {
  width: 74px; height: 74px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 640;
  display: grid;
  place-items: center;
}
.family-card h3 { font-size: 1.3rem; }
.family-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0.3rem 0 0.7rem;
}
.family-card p { font-size: 0.95rem; color: var(--ink-soft); }
.family-card a { font-weight: 700; }
@media (max-width: 860px) {
  .family-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ---------- guide cards ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: 0 14px 40px -30px rgba(34, 57, 46, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.guide-card.free {
  background: var(--ink);
  color: var(--paper);
  grid-row: span 1;
}
.guide-card.free h3 { color: var(--paper); }
.guide-card.free p { color: rgba(247, 241, 230, 0.85); }
.guide-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  background: rgba(192, 91, 51, 0.12);
  color: var(--clay-deep);
}
.free-badge { background: var(--gold); color: var(--ink); }
.guide-card h3 { font-size: 1.3rem; margin-top: 0.3rem; }
.guide-who {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
}
.guide-card.free .guide-who { color: var(--gold); }
.guide-card > p:last-of-type { font-size: 0.96rem; color: var(--ink-soft); }
.guide-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.8rem; }
.guide-actions .btn { font-size: 0.9rem; padding: 0.7rem 1.3rem; }
.guide-card.free .btn-ghost { border-color: var(--paper); color: var(--paper); }
.guide-card.free .btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; }
.faq details {
  border-bottom: 1px solid rgba(34, 57, 46, 0.16);
  padding: 0.35rem 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  padding: 0.85rem 2rem 0.85rem 0;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clay);
  font-size: 1.5rem;
  font-family: var(--font-body);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--ink-soft); padding: 0 0 1rem; max-width: 68ch; }

/* ---------- floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.75); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* stack two-column form rows on narrow phones */
@media (max-width: 480px) {
  #contact-form .form-row[style*="grid"] { display: block !important; }
  #contact-form .form-row[style*="grid"] > div + div { margin-top: 1.2rem; }
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-portrait { justify-self: center; margin-top: 1rem; }
  .stat-band .wrap { grid-template-columns: repeat(2, 1fr); }
  .svc-card { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .testi.feature { grid-column: span 1; }
  .split .img-stack .float-note { right: 4%; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(34, 57, 46, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1rem; }
  .nav-cta { border-radius: 0; margin: 0; }
  .svc-item { grid-template-columns: 3rem 1fr; }
  .svc-item .go { display: none; }
}
