/* ---------- Tokens ---------- */
:root {
  --cream: #FEF5F0;
  --cream-deep: #FBE7DB;
  --cream-card: #FFFAF6;
  --rust: #9F5434;
  --rust-dark: #7C4128;
  --ink: #2A1810;
  --gray: #7A6459;
  --gray-soft: #9C8A80;
  --line: rgba(42, 24, 16, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --shadow: 0 20px 50px -25px rgba(42, 24, 16, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: "Inter Tight", "Inter", sans-serif;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.12; }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1em; color: var(--gray); }

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

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

.tag {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--rust-dark);
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.faq-head { margin-bottom: 0; }
.section-sub { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 99px;
  font-weight: 500;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-solid { background: var(--rust); color: var(--cream); }
.btn-solid:hover { background: var(--rust-dark); }

.btn-light { background: var(--cream-card); color: var(--rust-dark); }
.btn-light:hover { background: #fff; }

.btn-outline-rust { background: transparent; color: var(--rust); border-color: var(--rust); }
.btn-outline-rust:hover { background: var(--rust); color: var(--cream); }

.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-full { width: 100%; }

/* ---------- Header (floating pill nav) ---------- */
.site-header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
}
.nav-pill {
  max-width: calc(var(--container) - 32px);
  margin: 0 auto;
  background: rgba(254, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--rust-dark);
}
.logo-mark { font-size: 1.1rem; }

.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: .9rem; color: var(--rust-dark); transition: opacity .15s ease; }
.main-nav a:hover { opacity: .7; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--rust-dark);
  border-radius: 2px;
}

/* ---------- Hero (full-bleed, image-as-background) ---------- */
.hero-full {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: max(calc(100vh - 280px), 40vw);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 78%;
  filter: sepia(.2) saturate(1.15) hue-rotate(-4deg) brightness(1.03) contrast(1.02);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(254,245,240,0.35) 0%, rgba(254,245,240,0) 22%),
    linear-gradient(to top, rgba(42,24,16,0.25) 0%, rgba(42,24,16,0) 30%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: left;
  padding-bottom: 70px;
  max-width: 600px;
}
.hero-overlay h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; justify-content: flex-start; }
.hero-overlay .btn-outline-rust { background: rgba(254,245,240,0.5); }

@media (min-width: 981px) {
  .hero-overlay { margin: 0 auto 0 max(0px, calc((100vw - 1200px) / 2)); }
  .hero-actions { display: none; }
}

@media (max-width: 980px) and (orientation: landscape) {
  .hero-overlay { display: none; }
}

.intro-block { padding: 88px 0; text-align: center; background: var(--cream-deep); }
.intro-block .wrap { max-width: 700px; margin: 0 auto; }
.intro-block p { font-size: 1.15rem; line-height: 1.7; color: var(--ink); margin: 0; }

.quote-section { padding: 72px 0; }
.quote-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: 940px;
  margin: 0 auto;
}
.quote-box {
  max-width: 620px;
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}
.quote-logo { flex: 0 0 auto; width: 120px; height: auto; }
.quote-text {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 20px;
}
.quote-author {
  display: block;
  font-style: normal;
  font-size: .95rem;
  color: var(--gray-soft);
  letter-spacing: .02em;
}

/* ---------- About ---------- */
.about-grid, .doctor-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-image-frame, .doctor-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}
.about-image-frame img, .doctor-image-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%;
}
.about-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-points li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  color: var(--gray);
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 99px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  display: block;
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rust); }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 99px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--rust);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card p { font-size: .92rem; margin: 0; }
.section-cta { text-align: center; margin-top: 44px; }

/* ---------- Prices ---------- */
.price-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.price-row h3 { margin: 0; }
.price-value { font-weight: 600; color: var(--rust-dark); white-space: nowrap; }

/* ---------- Doctor ---------- */
.doctor-role { font-weight: 500; color: var(--rust-dark); margin-bottom: 16px; }
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}
.credential {
  background: var(--cream-deep);
  color: var(--rust-dark);
  padding: 8px 14px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--line);
}
.testimonial-rating {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--rust-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.testimonial-card p { font-size: .95rem; color: var(--ink); }
.testimonial-name { font-weight: 600; font-size: .92rem; margin-top: 14px; }
.testimonial-meta { font-size: .82rem; color: var(--gray-soft); }

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--line);
}
.news-thumb {
  border-radius: var(--radius-sm);
  height: 200px;
  margin-bottom: 20px;
}
.thumb-a { background: linear-gradient(135deg, #e8c9b2, #c98f68); }
.thumb-b { background: linear-gradient(135deg, #d9ab8a, #9f5434); }
.news-date { font-size: .8rem; color: var(--gray-soft); margin-bottom: 6px; }
.news-card h3 { margin-bottom: 8px; }
.news-card p { font-size: .92rem; margin: 0; }

/* ---------- Certifications ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cert-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1px solid var(--line);
  text-align: center;
}
.cert-icon {
  width: 46px; height: 46px;
  border-radius: 99px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--rust);
}
.cert-icon svg { width: 22px; height: 22px; }
.cert-card h3 { font-size: 1rem; margin: 0; }

/* ---------- CTA ---------- */
.cta { background: var(--rust); padding: 100px 0; }
.cta-inner { text-align: center; max-width: 560px; }
.cta h2 { color: var(--cream); }
.cta p { color: rgba(254,245,240,0.78); font-size: 1.05rem; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 99px;
  background: var(--cream-deep);
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--rust-dark);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 9px; height: 1.4px; }
.faq-icon::after { width: 1.4px; height: 9px; transition: transform .2s ease; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .28s ease;
  padding: 0 22px;
}
.faq-a p { margin: 0 0 20px; font-size: .92rem; }
.faq-item.open .faq-a { max-height: 220px; }

/* ---------- Book a Consultation page ---------- */
.book-hero { text-align: center; padding-bottom: 24px; }
.book-hero .wrap { max-width: 640px; margin: 0 auto; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.location-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.location-card:hover, .location-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rust); outline: none; }
.location-icon {
  width: 42px; height: 42px;
  border-radius: 99px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--rust);
}
.location-icon svg { width: 20px; height: 20px; }
.location-card h3 { margin: 0 0 2px; }
.location-address { font-size: .9rem; color: var(--gray); margin: 0; }
.location-phone { font-size: .85rem; color: var(--gray-soft); margin: 0 0 12px; }
.location-select { margin-top: auto; font-size: .88rem; font-weight: 600; color: var(--rust-dark); }

.booking-panel { padding-top: 8px; }
.booking-back {
  background: none;
  border: none;
  color: var(--rust-dark);
  font-weight: 500;
  font-size: .9rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin-bottom: 36px;
}
.booking-back:hover { opacity: .7; }
.booking-head { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.booking-head h2 { margin-bottom: 6px; }
/* ---------- Custom booking widget ---------- */
.booking-widget {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
  transform-origin: top center;
  opacity: 1;
  transition: transform .32s ease, opacity .28s ease;
}
.booking-widget.is-folded {
  transform: perspective(1000px) rotateX(-16deg) scaleY(0.92);
  opacity: 0;
  pointer-events: none;
}
.booking-widget[hidden] { display: none; }
.booking-calendar {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
}
.calendar-nav {
  width: 34px; height: 34px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--rust-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.calendar-nav:hover { background: var(--cream-deep); }
.calendar-nav svg { width: 18px; height: 18px; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.calendar-weekdays span {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-soft);
  font-weight: 500;
  text-transform: uppercase;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  border-radius: 99px;
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.calendar-day:hover:not(:disabled) { background: var(--cream-deep); }
.calendar-day.is-selected { background: var(--rust); color: var(--cream); font-weight: 600; }
.calendar-day.is-past, .calendar-day-empty { visibility: hidden; pointer-events: none; }
.calendar-day:disabled { cursor: default; }

.booking-slots {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 320px;
}
.booking-slots h3 { margin-bottom: 16px; }
.slots-list { display: flex; flex-direction: column; gap: 8px; }
.slots-empty, .slots-loading { font-size: .9rem; color: var(--gray-soft); margin: 0; }
.slot-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.slot-btn:hover { border-color: var(--rust); }
.slot-btn.is-selected { background: var(--rust); border-color: var(--rust); color: var(--cream); }

.booking-form-wrap {
  max-width: 480px;
  margin: 32px auto 0;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transform-origin: top center;
  opacity: 1;
  transition: transform .32s ease, opacity .28s ease;
}
.booking-form-wrap.is-folded {
  transform: perspective(1000px) rotateX(-16deg) scaleY(0.92);
  opacity: 0;
  pointer-events: none;
}
.booking-form-wrap h3 { margin-bottom: 6px; }
.booking-time-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 14px;
  margin-bottom: 20px;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 500;
  color: var(--rust-dark);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.booking-time-chip:hover { background: var(--rust); color: var(--cream); border-color: var(--rust); }
.booking-time-chip-icon { width: 14px; height: 14px; color: currentColor; flex-shrink: 0; }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-soft);
}
.booking-form input {
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}
.booking-form input:focus { outline: none; border-color: var(--rust); }
.booking-form-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.booking-status { margin: 16px 0 0; font-size: .92rem; text-align: center; }
.booking-status.is-success { color: #4a7c4e; }
.booking-status.is-error { color: #b3432b; }

.booking-confirmation {
  max-width: 480px;
  margin: 32px auto 0;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
}
.booking-confirmation-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-confirmation-icon svg { width: 28px; height: 28px; }
.booking-confirmation h3 { margin-bottom: 10px; }
.booking-confirmation-detail { color: var(--rust-dark); font-weight: 500; margin-bottom: 6px; }
.booking-confirmation-note { color: var(--gray-soft); font-size: .9rem; margin-bottom: 24px; }

/* ---------- Generic sub-page hero ---------- */
.page-hero { text-align: center; padding-bottom: 24px; }
.page-hero .wrap { max-width: 640px; margin: 0 auto; }

/* ---------- Treatment detail page ---------- */
.breadcrumb { font-size: .85rem; color: var(--gray-soft); margin-bottom: 16px; }
.breadcrumb a { color: var(--rust-dark); }
.breadcrumb a:hover { opacity: .7; }

.treatment-hero { text-align: center; padding-bottom: 0; }
.treatment-hero .wrap { max-width: 720px; margin: 0 auto; }

.key-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 32px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.key-detail { text-align: center; }
.key-detail span { display: block; font-size: 1.25rem; font-weight: 600; color: var(--rust-dark); }
.key-detail p { margin: 4px 0 0; font-size: .82rem; color: var(--gray-soft); }

.treatment-actions { text-align: center; margin-top: 28px; }

.treatment-body { max-width: 760px; margin: 0 auto; }
.treatment-body h2 { margin-top: 0; }

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits-list li {
  position: relative;
  padding-left: 30px;
  font-size: .98rem;
  color: var(--gray);
}
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 99px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.process-step { text-align: center; }
.process-number {
  display: inline-block;
  font-size: 1rem;
  color: var(--rust-dark);
  border: 1px solid var(--line);
  border-radius: 99px;
  width: 40px; height: 40px;
  line-height: 38px;
  margin-bottom: 14px;
  font-weight: 600;
}
.process-step h3 { margin-bottom: 6px; }
.process-step p { font-size: .9rem; }

.process-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 20px;
}
.process-list { display: flex; flex-direction: column; }
.process-item { border-bottom: 1px solid var(--line); }
.process-item:first-child { border-top: 1px solid var(--line); }
.process-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: inherit;
  cursor: pointer;
  color: var(--ink);
}
.process-item-header .process-num {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-soft);
  width: 24px;
  flex-shrink: 0;
}
.process-item-header .process-title {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color .18s ease;
}
.process-item-header .process-arrow {
  color: var(--gray-soft);
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform .25s ease, color .18s ease;
}
.process-item-header .process-arrow svg { width: 18px; height: 18px; display: block; }
.process-item.active .process-item-header .process-title { color: var(--rust-dark); }
.process-item.active .process-arrow { color: var(--rust-dark); transform: rotate(180deg); }
.process-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 0 0 42px;
}
.process-item-body p { margin: 0; font-size: .92rem; }
.process-item.active .process-item-body { max-height: 160px; padding: 0 0 22px 42px; }

.process-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.process-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

/* ---------- Social page ---------- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.social-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rust); }
.social-card-icon {
  width: 46px; height: 46px;
  border-radius: 99px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--rust);
}
.social-card-icon svg { width: 22px; height: 22px; }
.social-card h3 { margin-bottom: 4px; }
.social-card p { font-size: .9rem; margin-bottom: 16px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
}
.photo-tile.tone-1 { background: linear-gradient(135deg, #e8c9b2, #c98f68); }
.photo-tile.tone-2 { background: linear-gradient(135deg, #d9ab8a, #9f5434); }
.photo-tile.tone-3 { background: linear-gradient(135deg, #f3ddc9, #d9ab8a); }
.photo-tile.tone-4 { background: linear-gradient(135deg, #c98f68, #7c4128); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}
.contact-details div { display: flex; flex-direction: column; gap: 4px; }
.contact-details strong { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-soft); font-weight: 500; }
.contact-details span { font-size: .95rem; color: var(--ink); }

.contact-form {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-soft);
}
.contact-form input, .contact-form textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  resize: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .78rem; color: var(--gray-soft); text-align: center; margin: 4px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream-deep); padding: 70px 0 0; margin-top: 40px; }
.footer-inner {
  display: grid;
  grid-template-columns: .85fr 1.4fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(42,24,16,0.1);
}
.footer-brand p { margin: 16px 0 20px; font-size: .88rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 99px;
  background: var(--cream-card);
  color: var(--rust-dark);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 17px; height: 17px; }
.footer-links { display: grid; grid-template-columns: .8fr 1.6fr; gap: 30px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { font-size: .82rem; font-weight: 500; color: var(--gray-soft); text-transform: uppercase; letter-spacing: .06em; margin: 0 0 4px; }
.footer-col a { font-size: .92rem; color: var(--gray); }
.footer-col a:hover { color: var(--rust-dark); }
.footer-locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 20px; margin-bottom: 4px; }
.footer-location { font-size: .88rem; }
.footer-location strong { display: block; color: var(--ink); font-weight: 600; }
.footer-location span { color: var(--gray); font-size: .85rem; }
.footer-bottom { padding: 22px 0; }
.footer-bottom p { font-size: .78rem; color: var(--gray-soft); margin: 0; text-align: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .doctor-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media, .doctor-media { order: -1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-widget { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout { grid-template-columns: 1fr; }
  .process-media { order: -1; }
  .footer-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .key-details { gap: 32px; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--cream-card);
    flex-direction: column;
    gap: 0;
    padding: 8px 22px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-pill { position: relative; }
}

@media (max-width: 980px) and (orientation: portrait) {
  .hero-bg img { object-position: 50% 85%; }
  .hero-full { height: 100vh; min-height: 100vh; }
}

@media (max-width: 980px) and (orientation: landscape) {
  .hero-bg img { object-position: 80% 35%; }
  .hero-full { height: calc(100vh - 280px); min-height: 420px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .quote-inner { flex-direction: column; gap: 28px; }
  .quote-logo { width: 88px; }
  .service-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .booking-form-actions { flex-direction: column-reverse; align-items: stretch; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .key-details { gap: 24px; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .contact-details { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-pill { padding: 6px 6px 6px 16px; }
  .header-actions .btn-sm { padding: 9px 14px; font-size: .78rem; }
}

@media (max-width: 640px) and (orientation: landscape) {
  .hero-full { height: calc(100vh - 380px); min-height: 380px; }
}

@media (max-width: 640px) and (orientation: portrait) {
  .hero-full { height: 100vh; min-height: 100vh; }
}

@media (max-width: 480px) {
  .header-actions .btn-sm span,
  .header-actions a.btn-sm { display: none; }
}