/* =============================================
   Belong Marriage and Family Therapy Practice
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* === Variables === */
:root {
  --bg:          #FAF8F5;
  --white:       #FFFFFF;
  --cream:       #F0EDE7;
  --sage:        #8FAF8A;
  --sage-light:  #D4E4D1;
  --sage-mid:    #B5CDB2;
  --sage-dark:   #5F865B;
  --charcoal:    #3A3837;
  --muted:       #726E6D;
  --border:      #E5E1DC;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Lato', system-ui, sans-serif;

  --nav-h:     80px;
  --pad-v:     100px;
  --container: 1160px;
  --radius:    6px;

  --shadow-sm: 0 2px 16px rgba(58,56,55,.07);
  --shadow-md: 0 8px 40px rgba(58,56,55,.12);
  --ease:      0.28s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--bg);
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.18;
  color: var(--charcoal);
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.2rem; font-family: var(--sans); font-weight: 700; }
p  { color: var(--muted); line-height: 1.8; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.lead { font-size: 1.08rem; color: var(--muted); }

/* === Layout === */
.container  { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 36px; }
section     { padding: var(--pad-v) 0; }
.bg-cream   { background: var(--cream); }
.bg-white   { background: var(--white); }
.bg-sage-light { background: var(--sage-light); }

/* Divider */
.divider { width: 44px; height: 2px; background: var(--sage); margin: 18px 0 28px; }
.divider-center { margin-left: auto; margin-right: auto; }

/* Section header */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header .eyebrow { justify-content: center; }
.section-header h2 { margin-bottom: 16px; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-dark); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.7); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-dark { border: 1.5px solid var(--sage-dark); color: var(--sage-dark); }
.btn-outline-dark:hover { background: var(--sage-dark); color: var(--white); }
.btn-text { padding: 0; letter-spacing: 0.1em; color: var(--sage-dark); position: relative; }
.btn-text::after { content: ''; position: absolute; left:0; bottom:-2px; width:0; height:1.5px; background:var(--sage-dark); transition: width var(--ease); }
.btn-text:hover::after { width: 100%; }

/* === Navigation === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background var(--ease), box-shadow var(--ease);
}
/* Gradient overlay so nav text is legible over any hero photo */
.site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,0.32) 0%, transparent 100%);
}
.site-header:not(.scrolled) .nav-logo {
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
.site-header:not(.scrolled) .nav-logo em { color: rgba(255,255,255,.72); }
.site-header:not(.scrolled) .nav-links a {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.28);
}
.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links a.active { color: var(--sage-mid); }
.site-header:not(.scrolled) .nav-links a::after { background: var(--sage-mid); }
.site-header:not(.scrolled) .nav-toggle span { background: var(--white); }

.site-header.scrolled { background: var(--white); box-shadow: var(--shadow-sm); }
.site-header.scrolled .nav-logo { color: var(--charcoal); text-shadow: none; }
.site-header.scrolled .nav-logo em { color: var(--muted); }
.site-header.scrolled .nav-links a { color: var(--charcoal); text-shadow: none; }
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 48px;
}
.nav-logo {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
.nav-logo em {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--sage);
  transition: width var(--ease);
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--sage-dark); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 199;
  padding: 40px 36px 48px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--sage-dark); }
.mobile-nav .btn { margin-top: 28px; text-align: center; align-self: flex-start; }

/* === Hero (Full-Height Home) === */
.hero {
  height: 600px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: #2a2825;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: opacity 0.6s;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 20px 0 56px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-credit {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-size: 0.62rem;
  color: rgba(255,255,255,.42);
  z-index: 1;
  line-height: 1.4;
}
.hero-credit a { color: inherit; text-decoration: underline; }
.hero-content .eyebrow { color: var(--sage-mid); margin-bottom: 18px; }
.hero-content h1 { color: var(--white); margin-bottom: 24px; font-weight: 300; }
.hero-content p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin-bottom: 44px;
  max-width: 560px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* === Page Hero (Shorter) === */
.page-hero {
  height: 400px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: #2a2825;
  padding-bottom: 64px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,28,27,.6) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.page-hero-content .eyebrow { color: var(--sage-mid); }
.page-hero-content h1 { color: var(--white); font-weight: 300; }

/* === Cards === */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.3rem;
}
.card h3 { margin-bottom: 14px; }
.card p { font-size: 0.95rem; margin-bottom: 20px; }
.card .btn-text { font-size: 0.75rem; }

/* === Services Grid === */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* === About Split === */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text .eyebrow { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; }
.about-text .divider { margin-top: 0; }
.about-text .btn { margin-top: 12px; }

/* Credentials */
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cred-tag {
  display: inline-flex; align-items: center;
  padding: 8px 18px;
  background: var(--sage-light);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--sage-dark);
}

/* === Philosophy Quote === */
.pullquote {
  background: var(--sage);
  padding: var(--pad-v) 0;
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.pullquote cite {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* === CTA Banner === */
.cta-banner { background: var(--cream); padding: 88px 0; text-align: center; }
.cta-banner .eyebrow { justify-content: center; margin-bottom: 12px; }
.cta-banner h2 { margin-bottom: 18px; }
.cta-banner p { max-width: 520px; margin: 0 auto 40px; }
.cta-banner .btn-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* === Fees === */
.fees-top { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: start; margin-bottom: 48px; }
.fee-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 52px 48px;
  box-shadow: var(--shadow-sm);
}
.fee-card.featured { border-top: 3px solid var(--sage); }
.fee-price {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1;
  margin: 16px 0 8px;
}
.fee-price sup { font-size: 1.6rem; vertical-align: super; }
.fee-per { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px; }
.fee-list { display: flex; flex-direction: column; gap: 14px; }
.fee-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--muted);
}
.fee-list li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.info-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.info-box h3 { font-size: 1.4rem; margin-bottom: 14px; }
.info-box p { font-size: 0.93rem; margin-bottom: 14px; }
.info-box p:last-child { margin-bottom: 0; }
.alert-box {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin-top: 28px;
}
.alert-box p { font-size: 0.9rem; color: var(--charcoal); }

/* === FAQ === */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--charcoal);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--sage-dark); }
.faq-icon {
  width: 30px; height: 30px;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--sage); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner { padding-bottom: 28px; }
.faq-answer-inner p { font-size: 0.97rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start; }
.contact-form h2 { margin-bottom: 8px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143,175,138,.15);
}
.form-group textarea { height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btn-submit { width: 100%; padding: 17px; text-align: center; font-size: 0.82rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.form-disclaimer-text { font-size: 0.8rem; color: var(--muted); line-height: 1.65; margin-bottom: 10px; padding: 12px 16px; background: var(--cream); border-left: 3px solid var(--sage-mid); border-radius: 0 4px 4px 0; }
.form-error { font-size: 0.9rem; background: #fff5f5; border: 1px solid #fca5a5; color: #7f1d1d; border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; line-height: 1.65; }
.form-error a { color: inherit; font-weight: 600; text-decoration: underline; }

.contact-sidebar { }
.contact-sidebar h3 { margin-bottom: 28px; }
.info-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.info-icon {
  width: 44px; height: 44px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--sage-dark);
}
.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-value { color: var(--charcoal); font-size: 0.97rem; }
.info-value a { transition: color var(--ease); }
.info-value a:hover { color: var(--sage-dark); }

.form-success {
  display: none;
  background: var(--sage-light);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.form-success.visible { display: block; }
.form-success h3 { color: var(--sage-dark); margin-bottom: 12px; }
.form-success p { font-size: 0.95rem; }

/* === Modalities === */
.modalities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.modality-tile {
  background: var(--white);
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.modality-tile:hover { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.modality-icon { font-size: 1.8rem; margin-bottom: 14px; }
.modality-tile h4 { font-size: 0.95rem; letter-spacing: 0.02em; margin-bottom: 8px; }
.modality-tile p { font-size: 0.82rem; }

/* === Service Detail === */
.service-detail { padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-inner.reverse .service-img { order: 2; }
.service-detail-inner.reverse .service-text { order: 1; }
.service-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-text .eyebrow { margin-bottom: 10px; }
.service-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.service-text p { margin-bottom: 14px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  padding: 6px 14px;
  background: var(--cream);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* === Process Steps === */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; counter-reset: step; }
.step { padding: 40px 36px; }
.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 { margin-bottom: 10px; }

/* === About Page - Values === */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.value-item { padding: 32px 28px; border: 1.5px solid var(--border); border-radius: var(--radius); }
.value-item h4 { margin-bottom: 10px; color: var(--sage-dark); }

/* === Footer === */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.6); padding: 72px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 36px;
}
.footer-brand h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 24px; }
.footer-brand .btn-text { color: var(--sage-mid); font-size: 0.76rem; }
.footer-brand .btn-text::after { background: var(--sage-mid); }
.footer-col-head {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li span { color: rgba(255,255,255,.4); font-size: 0.88rem; }
.footer-disclaimer { width: 100%; text-align: center; font-size: 0.7rem; color: rgba(255,255,255,.28); line-height: 1.65; margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}
.legal-content { max-width: 760px; margin: 0 auto; padding: 48px 0 64px; }
.legal-content h1 { font-size: 2.4rem; margin-bottom: 8px; }
.legal-content h2 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin-top: 44px; margin-bottom: 12px; color: var(--charcoal); }
.legal-content p, .legal-content li { line-height: 1.85; color: var(--body); margin-bottom: 14px; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--sage-dark); text-decoration: underline; }
.effective-date { font-size: 0.85rem; color: var(--muted); margin-bottom: 36px; }

/* === Fees Strip (inline on Services page) === */
.fees-strip-wrap { max-width: 860px; margin: 0 auto; }
.fees-strip {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 52px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 52px;
  align-items: center;
}
.fees-strip-price { text-align: center; flex-shrink: 0; }
.fees-strip-price .fee-price { font-family: var(--serif); font-size: 3.6rem; font-weight: 300; color: var(--sage-dark); line-height: 1; }
.fees-strip-price .fee-price sup { font-size: 1.5rem; vertical-align: super; }
.fees-strip-price .fee-per { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.fees-strip-divider { width: 1px; height: 80px; background: var(--border); flex-shrink: 0; }

/* === Responsive === */
@media (max-width: 1024px) {
  :root { --pad-v: 80px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .modalities-grid { grid-template-columns: repeat(2,1fr); }
  .about-split { gap: 48px; }
  .fees-top { grid-template-columns: 1fr; max-width: 560px; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --pad-v: 64px; --nav-h: 70px; }
  .container { padding: 0 22px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo { font-size: 1.1rem; }

  .hero-content { padding: 100px 0 60px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .page-hero { height: 300px; padding-bottom: 44px; }

  .services-grid,
  .about-split,
  .contact-grid,
  .values-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .service-detail-inner,
  .service-detail-inner.reverse { grid-template-columns: 1fr; }
  .service-detail-inner.reverse .service-img,
  .service-detail-inner.reverse .service-text { order: unset; }

  .fees-top { max-width: none; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modalities-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }
  .modalities-grid { grid-template-columns: 1fr; }
  .credentials { flex-direction: column; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
}
