/* ============================================================
   SECTIONS — page-level layout blocks
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  background: var(--color-bg-cream);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
  position: relative;
}
/* Soft radial bloom top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center,
    rgba(168,196,178,.22) 0%,
    transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Label ── */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-5);
}
.hero-label::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--color-accent);
}

/* ── Heading ── */
.hero-heading {
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -.03em;
  margin-bottom: var(--sp-6);
}
.hero-heading em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-desc {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
  max-width: 44ch;
  margin-bottom: var(--sp-8);
}

/* ── Actions ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

/* ── Trust strip ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-val {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: var(--fw-semibold);
  color: var(--color-text-main);
  letter-spacing: -.02em;
  line-height: 1;
}
.trust-lbl {
  font-size: var(--fs-xxs);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.trust-vr {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ── Media ── */
.hero-media { position: relative; }

.hero-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-primary-light);
  box-shadow: var(--sh-xl);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Floating ESGO card */
.hero-float {
  position: absolute;
  bottom: var(--sp-8);
  left: calc(-1 * var(--sp-12));
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-lg);
  min-width: 180px;
  z-index: 2;
  border: 1px solid var(--color-border-sub);
}
.hero-float-top {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
  line-height: 1.1;
  margin-bottom: 3px;
}
.hero-float-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Floating experience badge */
.hero-exp-badge {
  position: absolute;
  top: var(--sp-6);
  right: calc(-1 * var(--sp-6));
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  box-shadow: var(--sh-lg);
  z-index: 2;
}
.hero-exp-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: var(--fw-semibold);
  line-height: 1;
}
.hero-exp-lbl {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: .05em;
  opacity: .80;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--color-bg-dark);
  padding-block: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* ══════════════════════════════════════════════════════════
   PROCESS (01 / 02 / 03)
══════════════════════════════════════════════════════════ */
.process-section { background: var(--color-bg-ivory); }

.process-intro {
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-12);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

/* ══════════════════════════════════════════════════════════
   ABOUT PREVIEW
══════════════════════════════════════════════════════════ */
.about-preview { background: var(--color-bg-page); }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-primary-light);
  box-shadow: var(--sh-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.about-exp {
  position: absolute;
  top: var(--sp-8);
  right: calc(-1 * var(--sp-8));
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
  box-shadow: var(--sh-lg);
  z-index: 2;
}
.about-exp-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: -.02em;
}
.about-exp-lbl {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .80;
  margin-top: 3px;
}

.about-body { display: flex; flex-direction: column; gap: var(--sp-6); }

.about-title { margin-bottom: 0; }

.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--color-bg-ivory); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

/* ══════════════════════════════════════════════════════════
   LOCATIONS
══════════════════════════════════════════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

/* ══════════════════════════════════════════════════════════
   CTA BLOCK
══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--color-bg-dark);
  padding-block: clamp(80px, 10vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse,
    rgba(201,138,101,.12) 0%,
    transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: var(--sp-4);
  font-size: var(--fs-h2);
}
.cta-lead {
  color: rgba(255,255,255,.55);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 50ch;
  margin: 0 auto var(--sp-10);
  line-height: var(--lh-body);
}

.cta-phones {
  display: flex;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
.cta-phone-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.cta-phone-city {
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.cta-phone-num {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: var(--fw-semibold);
  color: #fff;
  letter-spacing: -.02em;
  transition: color var(--t-fast);
}
.cta-phone-num:hover { color: var(--terracotta); }

.cta-actions { display: flex; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-12);
  background: var(--color-bg-cream);
  border-bottom: 1px solid var(--color-border);
}
.page-hero .eyebrow { margin-bottom: var(--sp-4); }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: var(--sp-4);
}
.page-hero p {
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 18px);
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-full {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-8));
}
.about-sidebar-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--color-primary-light);
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
}
.about-sidebar-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}
.about-sidebar-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(28, 52, 40, 0.45) 100%
  );
  pointer-events: none;
}

.about-cred-list {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.about-cred-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--color-bg-page);
  border: 1px solid var(--color-border-sub);
  border-radius: var(--r-md);
}
.about-cred-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: .6; }
.about-cred-text { display: flex; flex-direction: column; gap: 2px; }
.about-cred-label { font-size: 10px; color: var(--color-text-subtle); text-transform: uppercase; letter-spacing: .06em; }
.about-cred-value { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-text-body); }

.about-content-area {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}
.about-block h2 { margin-bottom: var(--sp-4); }
.about-block p  { margin-bottom: var(--sp-3); font-size: var(--fs-sm); }
.about-block ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.about-block ul li {
  display: flex;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}
.about-block ul li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-top: 8px;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--sp-6);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--color-border-sub);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  padding-top: 1px;
}
.timeline-text strong { display: block; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-text-main); margin-bottom: 2px; }
.timeline-text span   { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-detail-card {
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.sdc-head {
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  background: var(--color-bg-cream);
  border-bottom: 1px solid var(--color-border-sub);
}
.sdc-head h3 { font-size: 21px; margin-bottom: var(--sp-2); }

.sdc-body { padding: var(--sp-6); }
.sdc-body p { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.sdc-body ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.sdc-body ul li {
  display: flex;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.sdc-body ul li::before { content: '–'; color: var(--color-primary); font-weight: var(--fw-semibold); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   CONTACTS PAGE
══════════════════════════════════════════════════════════ */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-form-box {
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
}
.contact-form-box h2 { font-size: 30px; margin-bottom: var(--sp-2); }
.contact-form-box > p { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--sp-8); }

/* ══════════════════════════════════════════════════════════
   PATIENTS PAGE — info grid
══════════════════════════════════════════════════════════ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-16);
}
.info-card {
  padding: var(--sp-8);
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.info-icon {
  width: 46px; height: 46px;
  background: var(--color-primary-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-card h3 { font-size: 18px; }
.info-card p  { font-size: var(--fs-sm); }

/* Symptom grid */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  max-width: 820px;
  margin-inline: auto;
}
.symptom-card {
  padding: var(--sp-6);
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
}
.symptom-card h3 {
  font-size: 17px;
  margin-bottom: var(--sp-4);
}
.symptom-card ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.symptom-card ul li {
  display: flex; gap: 10px;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; }
  .hero-float { left: var(--sp-4); }
  .hero-exp-badge { right: var(--sp-4); }

  .about-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-exp  { right: var(--sp-4); }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner .stat-vr:nth-child(4) { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid > :last-child { grid-column: 1 / -1; max-width: 520px; margin-inline: auto; }

  .about-full  { grid-template-columns: 1fr; }
  .about-sidebar { position: static; max-width: 380px; }

  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-layout { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero        { padding-block: var(--sp-12); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust  { gap: var(--sp-4); }
  .hero-float  { display: none; }
  .hero-exp-badge { right: var(--sp-3); top: var(--sp-3); }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner .stat-vr { display: none; }

  .services-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .testimonials-grid > :last-child { grid-column: auto; max-width: 100%; }
  .locations-grid     { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .symptom-grid       { grid-template-columns: 1fr; }

  .cta-phones  { gap: var(--sp-8); }
  .step-card   { flex-direction: column; gap: var(--sp-4); }
}
