/* ============================================================
   MindRise Counseling Center — Design System
   Palette: linen / terracotta / olive / warm ink
   Type: Fraunces (display) + Karla (body)
   ============================================================ */

:root {
  --linen: #F2ECE1;
  --linen-deep: #E8DFCE;
  --card: #FBF7EF;
  --terracotta: #A8502F;
  --terracotta-dark: #8C3F22;
  --olive: #5C6141;
  --olive-deep: #3D412E;
  --ink: #2B2620;
  --ink-soft: #5A5348;
  --line: rgba(43, 38, 32, 0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --radius-arch: 999px 999px 0 0;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

em.accent {
  font-style: italic;
  color: var(--terracotta);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 236, 225, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.logo svg { flex-shrink: 0; }

.site-header .logo { flex-shrink: 0; }

.nav-links a { white-space: nowrap; }

.site-header .logo img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

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

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--terracotta); }

.nav-cta {
  display: inline-block;
  background: var(--terracotta);
  color: #FBF7EF !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--terracotta-dark); }

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-toggle button {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 13px;
  cursor: pointer;
  color: var(--ink-soft);
}

.lang-toggle button.active {
  background: var(--olive);
  color: #FBF7EF;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ---------- Hero ---------- */

.hero {
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--terracotta);
  color: #FBF7EF;
}

.btn-primary:hover { background: var(--terracotta-dark); color: #FBF7EF; }

.btn-ghost {
  border-color: var(--olive);
  color: var(--olive-deep);
}

.btn-ghost:hover {
  background: var(--olive);
  color: #FBF7EF;
}

/* Arch portrait — the signature */

.arch-frame {
  position: relative;
  width: min(380px, 100%);
  margin: 0 auto;
}

.arch-frame .arch {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-arch);
  background: linear-gradient(180deg, var(--linen-deep) 0%, #D8CBB2 100%);
  border: 1.5px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.arch-frame .arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-rings {
  position: absolute;
  inset: -22px;
  border-radius: var(--radius-arch);
  border: 1px solid rgba(92, 97, 65, 0.35);
  border-bottom: none;
  pointer-events: none;
}

.cred-card {
  position: relative;
  margin: -34px 18px 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px -22px rgba(43, 38, 32, 0.35);
  text-align: center;
}

.cred-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
}

.cred-card span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
}

/* Sunrise arcs backdrop */

.rise-arcs {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  max-width: none;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

/* ---------- Sections ---------- */

section { padding: 88px 0; }

.section-olive {
  background: var(--olive-deep);
  color: #EFEAE0;
}

.section-olive h2, .section-olive h3 { color: #F6F1E6; }
.section-olive .eyebrow { color: #C6B98F; }
.section-olive p { color: #D8D2C2; }

.section-card { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: 3rem; }

/* Pillars */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  border: 1px solid rgba(246, 241, 230, 0.18);
  border-radius: 18px;
  padding: 30px 28px;
}

.pillar h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.pillar p { font-size: 0.98rem; }

.pillar .mark {
  width: 42px;
  height: 22px;
  border-radius: 999px 999px 0 0;
  border: 2px solid #C6B98F;
  border-bottom: none;
  margin-bottom: 1.2rem;
}

/* Cards grid (services & specialties) */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -26px rgba(43, 38, 32, 0.4);
}

.svc-card h3 { font-size: 1.3rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }

.svc-card .go {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--terracotta);
}

.svc-arch {
  width: 46px;
  height: 26px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  margin-bottom: 0.6rem;
}

.svc-arch.olive { background: linear-gradient(180deg, var(--olive) 0%, var(--olive-deep) 100%); }

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 28px;
  border-left: 2px solid var(--olive);
}

.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.6rem;
}

.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* CTA band */

.cta-band {
  background: var(--terracotta);
  color: #FBF7EF;
  text-align: center;
  padding: 76px 24px;
}

.cta-band h2 { color: #FBF7EF; margin-bottom: 0.8rem; }
.cta-band p { color: rgba(251, 247, 239, 0.85); max-width: 54ch; margin: 0 auto 2rem; }

.cta-band .btn {
  background: #FBF7EF;
  color: var(--terracotta-dark);
}

.cta-band .btn:hover { background: var(--linen-deep); }

/* ---------- About page ---------- */

.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.cred-list {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 12px;
}

.cred-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.96rem;
}

.cred-list li strong { color: var(--olive-deep); }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}

/* ---------- Detail rows (services/specialties pages) ---------- */

.detail-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.detail-row:first-of-type { border-top: none; }

.svc-group {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 64px 0 -8px;
}

.svc-group:first-child { margin-top: 8px; }
.svc-group + .detail-row { border-top: none; }

.detail-row h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}

.detail-row .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}

.detail-row p { color: var(--ink-soft); }
.detail-row p + p { margin-top: 0.9rem; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.info-block { margin-bottom: 1.8rem; }
.info-block h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.info-block p { color: var(--ink-soft); }

form.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 34px;
  display: grid;
  gap: 18px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--linen);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--olive);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--olive-deep);
  color: #D8D2C2;
  padding: 64px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.site-footer .logo { color: #F6F1E6; margin-bottom: 0.8rem; }

.site-footer .logo img {
  height: 34px;
  width: auto;
  display: block;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C6B98F;
  margin-bottom: 1rem;
}

.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: #D8D2C2; }
.site-footer a:hover { color: #FBF7EF; }

.footer-bottom {
  border-top: 1px solid rgba(246, 241, 230, 0.15);
  padding-top: 26px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(216, 210, 194, 0.7);
}

/* ---------- Reveal on scroll ---------- */

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

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

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

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .pillars, .card-grid, .steps, .values { grid-template-columns: 1fr 1fr; }
  .bio-grid, .contact-grid, .detail-row { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
}

@media (max-width: 720px) {
  .pillars, .card-grid, .steps, .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

/* ---------- Nav dropdowns ---------- */

.nav-links > li { position: relative; }

.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7em;
  opacity: 0.65;
  margin-left: 5px;
}

.dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: -23px;
  min-width: 250px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  display: none;
  z-index: 60;
  box-shadow: 0 14px 34px rgba(43, 42, 38, 0.14);
}

@media (min-width: 981px) {
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown { display: block; }
}

.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.92rem;
}

.dropdown a:hover { background: var(--linen-deep); }

.dropdown .dropdown-more a {
  margin-top: 7px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 9px 9px;
  color: var(--terracotta);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav { padding: 14px 16px; gap: 10px; }
  .logo { font-size: 0.9rem; gap: 10px; }
  .site-header .logo img { height: 38px; }
  .menu-btn { padding: 4px; }
  .lang-toggle button { padding: 6px 9px; font-size: 0.7rem; }

  .dropdown {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0 4px 14px;
    min-width: 0;
  }
  .has-dropdown.open > .dropdown { display: block; }
  .has-dropdown.open > a::after { content: "\25B4"; }
  .dropdown a { padding: 6px 0; font-size: 0.92rem; color: var(--ink-soft); }
  .dropdown .dropdown-more a { border-top: none; margin-top: 2px; padding-top: 6px; }
}

/* ---------- wordmark sizing on mid-width screens ---------- */

@media (max-width: 1300px) and (min-width: 981px) {
  .logo { font-size: 1.02rem; gap: 9px; }
  .site-header .logo img { height: 46px; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 0.85rem; }
  .nav-cta { padding: 9px 14px; }
  .lang-toggle button { padding: 6px 10px; font-size: 0.74rem; }
}

/* ---------- Footer contact extras ---------- */

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg { flex-shrink: 0; opacity: 0.85; }

.footer-note {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 34ch;
}

/* ---------- very narrow phones ---------- */

@media (max-width: 390px) {
  .nav { padding: 12px 14px; gap: 8px; }
  .logo { font-size: 0.84rem; gap: 8px; }
  .site-header .logo img { height: 34px; }
  .lang-toggle button { padding: 5px 8px; font-size: 0.68rem; }
}

/* ---------- Booking page ---------- */

.booking-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(43, 42, 38, 0.06);
}

.booking-card h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.booking-card > p { color: var(--ink-soft); max-width: 48ch; margin: 0 auto; }

.booking-btn {
  margin-top: 1.8rem;
  font-size: 1.02rem;
  padding: 16px 34px;
}

.booking-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.85;
}

@media (max-width: 720px) {
  .booking-card { padding: 28px 20px; }
  .booking-btn { width: 100%; }
}

/* ---------- Rates page ---------- */

.rate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rate-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 24px 26px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.rate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--terracotta), var(--olive));
  transition: width 0.28s ease;
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(43, 38, 32, 0.13);
  border-color: rgba(168, 80, 47, 0.35);
}

.rate-card:hover::before { width: 128px; }

.rate-age {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.rate-card h3 { font-size: 1.12rem; margin: 0.55rem 0 0.15rem; }
.rate-dur { font-size: 0.84rem; color: var(--ink-soft); }

.rate-price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1;
  color: var(--ink);
  margin: 1.1rem 0 0.15rem;
}

.rate-price sup {
  font-size: 0.9rem;
  top: -1.15em;
  margin-right: 1px;
  color: var(--ink-soft);
}

.rate-per {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.rate-pack {
  list-style: none;
  margin-top: 1.2rem;
}

.rate-pack li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1px 10px;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
}

.rate-pack li span { font-size: 0.82rem; color: var(--ink-soft); }
.rate-pack li strong { font-family: var(--font-display); font-size: 1rem; }
.rate-pack li em {
  grid-column: 1 / -1;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--olive);
}

.rate-note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* packages */

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pkg-card {
  position: relative;
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pkg-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(43, 38, 32, 0.12); }

.pkg-featured {
  background: linear-gradient(160deg, var(--olive) 0%, var(--olive-deep) 100%);
  border-color: transparent;
}



.pkg-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FBF7EF;
  background: var(--terracotta);
  padding: 6px 13px;
  border-radius: 999px;
}

.pkg-card h3 { font-size: 1.5rem; margin: 1rem 0 0.5rem; }
.pkg-card p { color: var(--ink-soft); }

.pkg-card.pkg-featured h3 { color: #F6F1E6; }
.pkg-card.pkg-featured p { color: #EDE7D9; }
.pkg-card.pkg-featured .pkg-save { color: #F6F1E6; }

.pkg-save {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--terracotta);
}

/* insurance */

.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ins-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  border-left: 3px solid var(--olive);
}

.ins-card--accent { border-left-color: var(--terracotta); }

.ins-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.ins-card p { color: var(--ink-soft); font-size: 0.97rem; }

@media (max-width: 960px) {
  .rate-grid, .ins-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .rate-grid, .pkg-grid, .ins-grid { grid-template-columns: 1fr; }
  .pkg-card, .ins-card { padding: 26px 22px; }
}

/* ---------- Hero secondary action ---------- */

.hero-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.2rem;
}

.hero-actions .hero-ctas { margin-top: 0; justify-content: center; }

.approach-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--olive-deep);
  background: rgba(92, 97, 65, 0.08);
  border: 1px solid rgba(92, 97, 65, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.approach-link:hover {
  background: rgba(92, 97, 65, 0.15);
  border-color: var(--olive);
  transform: translateY(-2px);
}

/* ---------- Therapeutic approach ---------- */

#approach { scroll-margin-top: 100px; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.approach-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(43, 38, 32, 0.1);
  border-color: rgba(92, 97, 65, 0.35);
}

.approach-card h3 {
  font-size: 1.12rem;
  color: var(--olive-deep);
  margin-bottom: 0.6rem;
}

.approach-card p { color: var(--ink-soft); font-size: 0.95rem; }

@media (max-width: 960px) {
  .approach-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .approach-grid { grid-template-columns: 1fr; }
  .hero-actions { display: flex; align-items: stretch; }
  .approach-link { justify-content: center; }
}

/* Honeypot — off-canvas rather than display:none, since some bots skip
   display:none fields. Never seen, focused, or read aloud by a real visitor. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
