/* ============================================================
   Asandra MD International — Editorial Design System
   styles-editorial.css
   ============================================================ */

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

:root {
  --cream:      #f5f2ec;
  --cream-dark: #ede9e1;
  --ink:        #1a1a17;
  --ink-mid:    #5c5952;
  --ink-light:  #9a9690;
  --gold:       #cfa97e;
  --navy:       #1e3f66;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center; padding: 0 48px;
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(26,26,23,0.07);
}
.nav-inner { display: flex; align-items: center; width: 100%; max-width: 1280px; margin: 0 auto; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-amd  { font-family: var(--serif); font-size: 1rem; font-weight: 400; letter-spacing: 0.06em; color: var(--ink); }
.logo-intl { font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 40px; margin: 0 auto; }
.nav-links a { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.btn-nav {
  font-size: 0.67rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 20px; border: 1px solid var(--ink); color: var(--ink);
  background: transparent; transition: all 0.25s;
}
.btn-nav:hover { background: var(--ink); color: var(--cream); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); margin: 6px 0; transition: all 0.3s; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.55rem; opacity: 0.5; }
.dropdown-menu {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream); border: 1px solid rgba(26,26,23,0.1);
  box-shadow: 0 12px 40px rgba(26,26,23,0.1);
  min-width: 268px; padding: 8px 0; list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 11px 24px;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mid); transition: color 0.15s, background 0.15s;
}
.dropdown-menu li a:hover { color: var(--ink); background: var(--cream-dark); }

/* ── MOBILE NAV ── */
.nav-mobile {
  display: none; position: fixed; inset: 0; background: var(--cream); z-index: 999;
  padding: 96px 48px 48px; flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif); font-size: 1.5rem; color: var(--ink);
  padding: 16px 0; border-bottom: 1px solid rgba(26,26,23,0.08);
}
.nav-mobile a:last-child { border-bottom: none; margin-top: 24px; color: var(--ink-mid); }

/* ── HERO VIDEO (homepage) ── */
.hero {
  position: relative; width: 100%; aspect-ratio: 16/9;
  overflow: hidden; background: var(--cream-dark); margin-top: 68px;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; background: rgba(26,26,23,0.25);
}
.hero-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px; display: flex; justify-content: space-between; align-items: flex-end;
}
.hero-h1 {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 400; font-style: italic; color: #fff;
  line-height: 1.2; max-width: 500px;
}
.hero-cta {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 3px;
  white-space: nowrap; transition: all 0.2s;
}
.hero-cta:hover { color: #fff; border-color: rgba(255,255,255,0.85); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; width: 100%; height: 72vh;
  overflow: hidden; margin-top: 68px;
}
.page-hero img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(26,26,23,0.35); }
.page-hero-text { position: absolute; bottom: 0; left: 0; padding: 56px 64px; }
.page-hero-h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400; font-style: italic; color: #fff; line-height: 1.2;
}
.page-hero-text .overline { color: rgba(255,255,255,0.6); margin-bottom: 16px; }

/* ── PAGE HEADER (no image — appointment page) ── */
.page-header {
  margin-top: 68px; padding: 96px 48px 80px; background: var(--cream-dark);
  border-bottom: 1px solid rgba(26,26,23,0.08);
}
.page-header-inner { max-width: 1040px; margin: 0 auto; }
.page-header-h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.2;
  margin-top: 16px;
}

/* ── STATEMENT ── */
.statement {
  padding: 120px 48px; max-width: 840px; margin: 0 auto; text-align: center;
}
.overline {
  font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 32px; display: block;
}
.statement blockquote {
  font-family: var(--serif); font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 400; font-style: italic; line-height: 1.55; color: var(--ink);
}

/* ── FULL-BLEED ── */
.full-bleed { width: 100%; overflow: hidden; }
.full-bleed img { width: 100%; height: 68vh; object-fit: cover; object-position: center 30%; }

/* ── SECTIONS ── */
.section { padding: 112px 48px; }
.section-inner { max-width: 1040px; margin: 0 auto; }
.section-alt { background: var(--cream-dark); }

/* ── HOMEPAGE SERVICES ── */
.services {
  padding: 112px 48px; max-width: 1040px; margin: 0 auto;
}
.services .overline { margin-bottom: 48px; }
hr.rule { border: none; border-top: 1px solid rgba(26,26,23,0.1); margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 64px; }
.svc h4 {
  font-family: var(--serif); font-size: 1.02rem; font-weight: 400;
  margin-bottom: 12px; color: var(--ink);
}
.svc p { font-size: 0.8rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 16px; }
.svc a {
  font-size: 0.63rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-light); border-bottom: 1px solid var(--ink-light);
  padding-bottom: 2px; transition: all 0.2s;
}
.svc a:hover { color: var(--ink); border-color: var(--ink); }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 64px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 64px; }

/* ── PHOTO ESSAY ── */
.photo-essay {
  display: grid; grid-template-columns: 2fr 1fr; gap: 4px;
}
.photo-essay-right { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.photo-cell { overflow: hidden; }
.photo-cell img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover; display: block; transition: transform 0.8s ease;
}
.photo-cell:hover img { transform: scale(1.04); }

/* ── DR. ASANDRA SECTION ── */
.dr-section { display: grid; grid-template-columns: 1fr 1fr; }
.dr-img { overflow: hidden; }
.dr-img img {
  width: 100%; height: 100%; min-height: 600px;
  object-fit: cover; object-position: top center; display: block;
}
.dr-text {
  padding: 96px 72px; display: flex; flex-direction: column;
  justify-content: center; background: var(--cream-dark);
}
.dr-text .overline { margin-bottom: 28px; }
.dr-text h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 400; margin-bottom: 20px; color: var(--ink); line-height: 1.3;
}
.dr-text p { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.9; max-width: 380px; margin-bottom: 36px; }

/* ── LINK LINE ── */
.link-line {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 3px; transition: all 0.2s;
}
.link-line:hover { color: var(--gold); border-color: var(--gold); }

/* ── STATS (NAVY BAR) ── */
.stats { background: var(--navy); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
  padding: 52px 40px; border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.stat-lbl {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── REVIEWS / TESTIMONIALS ── */
.reviews { padding: 112px 48px; max-width: 1040px; margin: 0 auto; }
.reviews .overline { margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.review .stars { color: var(--gold); font-size: 0.65rem; letter-spacing: 4px; margin-bottom: 20px; }
.review blockquote {
  font-family: var(--serif); font-size: 1rem; font-weight: 400;
  font-style: italic; line-height: 1.7; color: var(--ink); margin-bottom: 20px;
}
.review .author { font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-light); }
.review .meta { font-size: 0.63rem; color: var(--ink-light); margin-top: 4px; }

/* ── CTA ── */
.cta {
  padding: 128px 48px; text-align: center;
  border-top: 1px solid rgba(26,26,23,0.08);
}
.cta .overline { margin-bottom: 28px; }
.cta h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; font-style: italic; line-height: 1.3;
  color: var(--ink); margin-bottom: 36px;
}

/* ── BUTTONS ── */
.btn-solid {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 15px 44px;
  background: var(--ink); color: var(--cream); transition: opacity 0.25s;
}
.btn-solid:hover { opacity: 0.8; }

/* ── FEATURE BOXES (flat — no card chrome) ── */
.feature-box h4 { font-family: var(--serif); font-size: 1rem; font-weight: 400; margin-bottom: 10px; }
.feature-num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); opacity: 0.6; line-height: 1; margin-bottom: 16px; }
.feature-box p { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.85; }
.feature-box p a { color: var(--gold); border-bottom: 1px solid rgba(207,169,126,0.4); transition: all 0.2s; }
.feature-box p a:hover { border-color: var(--gold); }

/* ── BENEFITS LIST ── */
.benefits-list { display: flex; flex-direction: column; }
.benefit-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(26,26,23,0.07); }
.benefit-check { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.benefit-text { font-size: 0.9rem; color: var(--ink); }

/* ── FAQ ACCORDION ── */
.faq-list { border-top: 1px solid rgba(26,26,23,0.1); }
.faq-item { border-bottom: 1px solid rgba(26,26,23,0.1); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-family: var(--serif); font-size: 1rem; font-weight: 400;
  font-style: italic; color: var(--ink); background: none; border: none; cursor: pointer; text-align: left;
}
.faq-icon { font-style: normal; font-family: var(--sans); color: var(--gold); flex-shrink: 0; margin-left: 24px; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 0.85rem; color: var(--ink-mid); line-height: 1.9; }

/* ── RATING SUMMARY (reviews page) ── */
.rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap; padding: 56px 0;
  border-bottom: 1px solid rgba(26,26,23,0.08);
}
.rating-big-num {
  font-family: var(--serif); font-size: 4.5rem; color: var(--gold); line-height: 1;
}
.rating-big-stars { color: var(--gold); font-size: 1rem; letter-spacing: 4px; margin: 8px 0; }
.rating-big-lbl { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); }
.rating-bars { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; }
.rating-bar-label { font-size: 0.7rem; color: var(--ink-mid); width: 64px; }
.rating-bar-track { flex: 1; height: 4px; background: rgba(26,26,23,0.1); }
.rating-bar-fill { height: 100%; background: var(--gold); }
.rating-bar-score { font-size: 0.7rem; color: var(--gold); font-weight: 500; }

/* ── FORM ── */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; border: 1px solid rgba(26,26,23,0.15);
  background: rgba(255,255,255,0.5); font-family: var(--sans); font-size: 0.85rem;
  color: var(--ink); outline: none; transition: border-color 0.2s; border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 140px; resize: vertical; }
.req { color: var(--gold); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.form-radio-label { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-mid); cursor: pointer; }
.form-radio-label input[type="radio"] { accent-color: var(--gold); }
.form-error {
  background: #fef2f2; border: 1px solid #fca5a5; padding: 12px 16px;
  margin-bottom: 16px; font-size: 0.82rem; color: #b91c1c;
}
.form-success { text-align: center; padding: 48px 24px; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 16px; color: var(--gold); }
.form-success h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.form-success p { font-size: 0.85rem; color: var(--ink-mid); }

/* ── APPOINTMENT SIDEBAR ── */
.appt-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.appt-step { display: flex; gap: 20px; align-items: flex-start; }
.appt-step-num {
  flex-shrink: 0; width: 32px; height: 32px;
  border: 1px solid rgba(207,169,126,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.85rem; color: var(--gold);
}
.appt-step-title { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.appt-step-body { font-size: 0.8rem; color: var(--ink-mid); line-height: 1.7; }
.appt-info-box { background: var(--navy); padding: 32px; }
.appt-info-box h5 { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.appt-info-item { margin-bottom: 16px; }
.appt-info-item:last-child { margin-bottom: 0; }
.appt-info-item strong { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.appt-info-item p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── TEAM MEMBERS (about page) ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.team-member { }
.team-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 20px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.8s ease; }
.team-photo:hover img { transform: scale(1.04); }
.team-role { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.team-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.team-bio { font-size: 0.78rem; color: var(--ink-mid); line-height: 1.85; }

/* ── INTRO TEXT SECTION (service pages) ── */
.intro-lead {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400; font-style: italic; line-height: 1.6; color: var(--ink);
  margin-bottom: 24px;
}
.intro-body { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.9; margin-bottom: 16px; }
.intro-note { font-size: 0.72rem; color: var(--ink-light); margin-top: 8px; }

/* ── SECTION HEADINGS ── */
.section-overline { font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--ink-light); display: block; margin-bottom: 16px; }
.section-h2 {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400; color: var(--ink); line-height: 1.3; margin-bottom: 20px;
}
.section-h2-italic { font-style: italic; }
.section-p { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.9; margin-bottom: 16px; }

/* ── FOOTER ── */
.footer {
  background: var(--cream-dark); border-top: 1px solid rgba(26,26,23,0.08);
  padding: 64px 48px 36px;
}
.footer-inner {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(26,26,23,0.08);
}
.footer h5 { font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.82rem; color: var(--ink-mid); transition: color 0.2s; }
.footer ul a:hover { color: var(--ink); }
.footer-bottom {
  max-width: 1040px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.68rem; color: var(--ink-light); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.68rem; color: var(--ink-light); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink-mid); }

/* ── SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  will-change: opacity, transform;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1), transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in, .reveal-left.in, .reveal-right.in, .reveal-scale.in {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; }
.d6 { transition-delay: 0.42s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-6, .services-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .photo-essay { grid-template-columns: 1fr; }
  .photo-essay-right { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .dr-section { grid-template-columns: 1fr; }
  .dr-img { aspect-ratio: 16/9; }
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row-img img { height: 240px; }
  .dr-img img { min-height: unset; }
  .page-hero-text { padding: 32px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .nav { padding: 0 24px; }
  .section { padding: 72px 24px; }
  .cta { padding: 80px 24px; }
  .footer { padding: 48px 24px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-text { padding: 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .page-hero-text { padding: 24px; }
  .stat-cell { padding: 40px 24px; }
  .dr-text { padding: 56px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-6, .services-grid { grid-template-columns: 1fr; }
  .services { padding: 72px 24px; }
  .reviews { padding: 72px 24px; }
  .statement { padding: 72px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .page-header { padding: 72px 24px 56px; }
}

/* ── SERVICE ROWS (services/index.html) ── */
.service-row {
  display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: center;
  padding: 72px 0;
}
.service-row:first-of-type { padding-top: 0; }
.service-row-img { overflow: hidden; border-radius: 2px; }
.service-row-img img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.8s ease; }
.service-row:hover .service-row-img img { transform: scale(1.04); }
.service-row-body { }
.service-row-body .section-h2 { margin-bottom: 16px; }
.service-row-body .section-p { margin-bottom: 28px; }
.service-divider { border: none; border-top: 1px solid rgba(26,26,23,0.08); margin: 0; }
