:root {
  --bg: #fff8f0;
  --bg-soft: #fff2e5;
  --text: #2f1f15;
  --muted: #6f4d3a;
  --brand: #ea580c;
  --brand-strong: #c2410c;
  --brand-soft: #ffd2b3;
  --accent: #78350f;
  --panel: #ffffff;
  --border: #efc39b;
  --shadow: 0 20px 40px rgba(120, 53, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 12%, rgba(234, 88, 12, 0.2), transparent 36%),
    radial-gradient(circle at 92% 10%, rgba(120, 53, 15, 0.16), transparent 34%),
    linear-gradient(180deg, #fff8f0 0%, #ffeedf 100%);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
}

p {
  margin: 0;
}

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

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 240, 0.86);
  border-bottom: 1px solid rgba(194, 65, 12, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--brand-strong);
}

.nav-cta {
  display: flex;
  gap: 0.7rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 0.7rem;
  padding: 0.55rem 0.85rem;
  font-weight: 700;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px solid var(--border);
  padding: 0.9rem 4vw 1rem;
  background: rgba(255, 255, 255, 0.94);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.75rem;
  padding: 0.68rem 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}

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

.btn-solid {
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 10px 20px rgba(194, 65, 12, 0.26);
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

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

main {
  padding-bottom: 3.5rem;
}

.hero {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-notes {
  margin-top: 1.1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.image-placeholder {
  background:
    linear-gradient(145deg, #fffaf4, #fff1e3),
    repeating-linear-gradient(45deg, rgba(194, 65, 12, 0.08), rgba(194, 65, 12, 0.08) 8px, rgba(255, 255, 255, 0.88) 8px, rgba(255, 255, 255, 0.88) 16px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: grid;
  place-items: center;
  text-align: center;
  color: #6a432c;
  font-weight: 700;
  padding: 1rem;
}

.image-placeholder.has-image {
  padding: 0.55rem;
  overflow: hidden;
  align-items: stretch;
  justify-items: stretch;
  background: linear-gradient(145deg, #fff9f2, #fff3e7);
}

.image-placeholder.has-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0.75rem;
  background: #fff;
}

.image-placeholder.large {
  min-height: 390px;
  box-shadow: var(--shadow);
}

.image-placeholder.small {
  min-height: 145px;
}

.float-card {
  width: 62%;
  position: absolute;
  right: -1.3rem;
  bottom: -1.3rem;
  background: linear-gradient(145deg, #fff0df, #ffe2c3);
  border-color: #f2bf8f;
  box-shadow: var(--shadow);
}

.trust {
  margin-top: 4.5rem;
}

.trust p {
  color: var(--muted);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.logo-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  min-height: 58px;
  display: grid;
  place-items: center;
  color: #56635d;
  font-weight: 700;
}

.features,
.split,
.community,
.pricing,
.cta {
  margin-top: 5.4rem;
}

.values-preview {
  margin-top: 5.4rem;
}

.values-preview-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.value-pill-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}

.value-pill-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.value-pill-card p {
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.3rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
}

.feature-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.image-placeholder.medium {
  min-height: 330px;
}

.split-copy ul {
  margin: 1rem 0 1.3rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.split-copy li + li {
  margin-top: 0.4rem;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.quote-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

.quote-card p {
  color: #31403a;
  font-size: 1.08rem;
}

.quote-card h4 {
  margin: 0;
  font-size: 1rem;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.image-placeholder.tall {
  min-height: 280px;
}

@media (max-width: 640px) {
  .image-placeholder.large {
    min-height: 260px;
  }

  .image-placeholder.medium {
    min-height: 230px;
  }

  .image-placeholder.small {
    min-height: 170px;
  }
}

.pricing-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-grid .price-card:nth-child(3) {
  grid-column: 1 / -1;
}

.pricing-included-panel,
.pricing-caveat-panel,
.pricing-summary {
  margin-top: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
}

.pricing-included-panel h3,
.pricing-caveat-panel h3,
.pricing-summary h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 0.55rem;
}

.pricing-included-grid {
  margin: 0.8rem 0 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.pricing-included-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(194, 65, 12, 0.2);
  background: linear-gradient(150deg, #fff8f1, #fff2e7);
  color: var(--muted);
  font-weight: 700;
}

.pricing-included-panel p,
.pricing-caveat-panel p,
.pricing-note {
  color: var(--muted);
}

.pricing-caveat-panel blockquote,
.pricing-clause {
  margin: 0.9rem 0 0;
  padding: 0.85rem 0.95rem;
  border-left: 4px solid var(--brand);
  border-radius: 0.65rem;
  background: linear-gradient(160deg, #fff8f1, #fff2e7);
  color: #5f3925;
  font-weight: 600;
}

.pricing-summary ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.pricing-summary li + li {
  margin-top: 0.35rem;
}

.funding-panel {
  margin-top: 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.15rem;
}

.funding-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

.funding-panel > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.funding-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.95rem;
}

.funding-card h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  line-height: 1.3;
}

.funding-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.funding-link {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.funding-link:hover {
  color: var(--brand);
}

.roadmap {
  margin-top: 5.4rem;
}

.roadmap-intro {
  color: var(--muted);
  max-width: 72ch;
  margin-bottom: 1rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.roadmap-item {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}

.roadmap-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.roadmap-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.55rem;
  gap: 0.5rem;
}

.roadmap-phase {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--brand-strong);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.roadmap-quarter {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

.roadmap-item h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.roadmap-item p {
  color: var(--muted);
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.roadmap-item ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.roadmap-item li + li {
  margin-top: 0.25rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(194, 65, 12, 0.35);
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.1);
}

.price-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.price-card .price {
  margin: 0.45rem 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-card .amount {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1;
  font-weight: 800;
  color: var(--brand-strong);
}

.price-card .term {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-breakdown {
  margin: 0.45rem 0 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(194, 65, 12, 0.22);
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #fff8f2, #fff2e8);
}

.price-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.price-divider {
  margin: 0.3rem 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.price-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1rem;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 0.35rem;
}

.price-card .btn {
  margin-top: auto;
}

.price-card.featured {
  border-color: rgba(194, 65, 12, 0.45);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.1), transparent 45%);
  pointer-events: none;
}

.chip {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}

.cta {
  background: linear-gradient(145deg, #ffffff, #fff0e3);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}

.cta p {
  color: var(--muted);
}

.cta .btn {
  min-width: 220px;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.booking-modal.open {
  display: block;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(47, 31, 21, 0.62);
  cursor: pointer;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 94vw);
  max-height: 90vh;
  overflow: auto;
  margin: 5vh auto;
  background: linear-gradient(165deg, #fff9f3 0%, #fff2e5 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 24px 45px rgba(47, 31, 21, 0.28);
  padding: 1.2rem;
}

.booking-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.booking-modal__head h2 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.booking-modal__close {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 0.7rem;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-modal__close:hover {
  background: var(--bg-soft);
}

.booking-modal__intro {
  margin-top: 0.7rem;
  color: var(--muted);
}

.booking-embed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  margin-top: 1rem;
}

.booking-embed-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.9rem;
}

.booking-embed-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.booking-embed-frame-wrap {
  border: 1px dashed rgba(194, 65, 12, 0.45);
  border-radius: 0.8rem;
  background: #fffaf5;
  padding: 0.45rem;
}

.booking-embed-card iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 0.65rem;
  background: #fff;
}

.booking-embed-card--availability iframe {
  min-height: 560px;
}

.booking-embed-card--appointment iframe {
  min-height: 360px;
}

.booking-embed-placeholder {
  margin: 0;
  min-height: 150px;
  padding: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  display: grid;
  place-items: center;
  text-align: center;
}

.footer {
  margin: 4rem auto 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(194, 65, 12, 0.2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.footer-contact {
  text-align: right;
}

.footer-heading {
  margin-bottom: 0.25rem;
  font-weight: 800;
  color: var(--text);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact p {
  margin: 0.15rem 0;
  color: var(--muted);
  font-weight: 600;
}

.footer-contact a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(194, 65, 12, 0.14);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-legal a {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-meta p {
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

/* ── Features CTA (index.html) ─────────────────────────────── */
.features-cta {
  margin-top: 1.6rem;
  text-align: center;
}

/* ── Features Page ──────────────────────────────────────────── */
.feature-page-hero {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
  max-width: 860px;
}

.pricing-page-hero {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
  max-width: 860px;
}

.values-page-hero {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
  max-width: 860px;
}

.values-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.9rem;
}

.values-page-hero .lead {
  max-width: 72ch;
}

.values-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-hero {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
  max-width: 860px;
}

.about-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.9rem;
}

.about-hero .lead {
  max-width: 72ch;
}

.about-section {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-section--flip .about-image-wrap {
  order: 2;
}

.about-section--flip .about-copy {
  order: 1;
}

.about-image-wrap {
  margin-bottom: 0;
}

.image-placeholder.about-img {
  min-height: 380px;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 0.75rem;
}

.about-copy > p {
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  max-width: 58ch;
  line-height: 1.65;
}

.about-copy p + p {
  margin-top: 0.6rem;
}

.about-values-focus {
  margin-top: 4rem;
}

.about-values-focus h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 1.2rem;
  text-align: center;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.about-values-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-value-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.15rem;
}

.about-value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.about-value-item p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.value-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.15rem;
}

.value-card h2 {
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  margin-bottom: 0.45rem;
}

.value-card p {
  color: var(--muted);
}

.funding-page-hero {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
  max-width: 860px;
}

.funding-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.9rem;
}

.funding-page-hero .lead {
  max-width: 72ch;
}

.pricing-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.9rem;
}

.pricing-page-hero .lead {
  max-width: 68ch;
}

.pricing-note {
  margin-top: 0.8rem;
}

.pricing-detail-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.funding-detail-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-detail-grid--stacked {
  margin-top: 1rem;
}

.funding-detail-grid--stacked {
  margin-top: 1rem;
}

.funding-subheading {
  margin-top: 0.35rem;
  margin-bottom: 0.85rem;
  color: var(--brand-strong);
  font-weight: 800;
}

.funding-copy-block {
  margin-top: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
}

.funding-copy-block h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  margin-bottom: 0.7rem;
}

.funding-copy-block p {
  color: var(--muted);
}

.feature-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.9rem;
}

.feature-page-hero .lead {
  margin-bottom: 1.5rem;
  max-width: 68ch;
}

.feature-nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.feature-pill:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
}

.feature-section {
  margin-top: 5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.feature-section--flip .feature-image-wrap {
  order: unset;
}

.feature-section--flip .feature-copy {
  order: unset;
}

.feature-section--tinted {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.feature-image-wrap {
  margin-bottom: 2rem;
}

.image-placeholder.feature-img {
  min-height: 480px;
  max-height: 620px;
  box-shadow: var(--shadow);
}

.feature-tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
}

.feature-copy h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  margin-bottom: 0.85rem;
}

.feature-copy > p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
  max-width: 58ch;
}

.feature-copy ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.feature-copy li + li {
  margin-top: 0.45rem;
}

.nav-active {
  color: var(--brand-strong) !important;
}

/* ── Dual screenshot layout (Journeys) ──────────────────────── */
.feature-img-dual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.feature-img-dual .fid-main {
  box-shadow: var(--shadow);
}

.fid-float {
  min-height: 280px;
  background: linear-gradient(145deg, #fff0df, #ffe2c3);
  border-color: #f2bf8f;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .feature-img-dual {
    grid-template-columns: 1fr;
  }

  .fid-float {
    width: 100%;
    min-height: 220px;
  }
}

@media (max-width: 980px) {
  .feature-section {
    padding: 2rem 0;
  }

  .feature-section--flip .feature-image-wrap,
  .feature-section--flip .feature-copy {
    order: unset;
  }
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu.open {
    display: flex;
  }

  .hero,
  .split,
  .community-grid,
  .pricing-grid,
  .pricing-detail-grid,
  .funding-detail-grid,
  .funding-grid,
  .roadmap-grid,
  .values-preview-grid,
  .values-grid,
  .about-section,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-section--flip .about-image-wrap {
    order: unset;
  }

  .about-section--flip .about-copy {
    order: unset;
  }

  .image-placeholder.about-img {
    min-height: 300px;
  }

  .float-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.9rem;
  }

  .logo-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main,
  .footer-meta {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .booking-embed-card--availability iframe {
    min-height: 500px;
  }

  .pricing-grid .price-card:nth-child(3) {
    grid-column: auto;
  }

  .pricing-included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.6rem;
  }

  .logo-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }

  .booking-modal__panel {
    margin: 2vh auto;
    max-height: 96vh;
    padding: 1rem;
  }

  .booking-embed-card--availability iframe {
    min-height: 420px;
  }

  .booking-embed-card--appointment iframe {
    min-height: 340px;
  }
}
