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

:root {
  --navy: #0d1b2a;
  --navy-mid: #162336;
  --gold: #b89a6a;
  --gold-light: #d4b896;
  --gold-pale: #f5ede0;
  --white: #ffffff;
  --off-white: #f9f6f1;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --border: #e8e0d4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── UTILITY ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #a08558; }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.7); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { border: 1px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.announcement-bar a { color: var(--gold-light); text-decoration: none; }
.announcement-bar a:hover { text-decoration: underline; }

/* ─── NAVIGATION ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 30px rgba(13,27,42,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-name { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); line-height: 1; letter-spacing: 0.02em; }
.nav-logo-sub { font-size: 9.5px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 12px; font-weight: 400; color: var(--text-light); text-decoration: none; letter-spacing: 0.05em; }
.nav-phone:hover { color: var(--gold); }

/* ─── MOBILE MENU BUTTON ─── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all 0.3s; }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px 36px;
  z-index: 999;
  box-shadow: 0 8px 40px rgba(13,27,42,0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-phone { display: block; margin-top: 16px; font-size: 13px; color: var(--text-light); text-decoration: none; letter-spacing: 0.05em; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 95vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.5) 55%, rgba(13,27,42,0.1) 100%);
  z-index: 1;
}
.hero-image-area {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.55) 50%, rgba(13,27,42,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold-light); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 2s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.7)} }
@keyframes fadeInUp { from{opacity:0;transform:translateX(-50%) translateY(20px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

/* ─── CREDENTIALS STRIP ─── */
.credentials-strip {
  background: var(--navy);
  padding: 22px 0;
  border-bottom: 1px solid rgba(184,154,106,0.2);
}
.credentials-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 12px; padding: 0 36px; border-right: 1px solid rgba(255,255,255,0.1); }
.cred-item:last-child { border-right: none; }
.cred-icon { width: 32px; height: 32px; opacity: 0.7; flex-shrink: 0; }
.cred-text { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4; }
.cred-text strong { display: block; color: var(--gold-light); font-weight: 500; }

/* ─── STATS ─── */
.stats-section { padding: 80px 0; background: var(--off-white); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 40px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--serif); font-size: clamp(42px, 4.5vw, 60px); font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--gold); }
.stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); }

/* ─── ABOUT ─── */
.about-section { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.about-image-wrap:hover .doctor-photo { transform: scale(1.03); }
.about-image-frame {
  position: absolute;
  top: 24px; left: 24px; right: -24px; bottom: -24px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 140px; height: 140px;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.about-badge-num { font-family: var(--serif); font-size: 42px; font-weight: 300; color: var(--gold-light); line-height: 1; }
.about-badge-text { font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; line-height: 1.4; }

.about-content { padding-left: 20px; }
.about-content h2 { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 48px); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 28px; }
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-light); margin-bottom: 22px; }

.credentials-list { list-style: none; margin: 32px 0; }
.credentials-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text-light); padding: 10px 0; border-bottom: 1px solid var(--border); letter-spacing: 0.02em; }
.credentials-list li:first-child { border-top: 1px solid var(--border); }
.credentials-list li::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); margin-top: 10px; flex-shrink: 0; }
.credentials-list li strong { color: var(--navy); font-weight: 500; display: block; font-size: 12.5px; letter-spacing: 0.04em; }

/* ─── PROCEDURES ─── */
.procedures-section { padding: 120px 0; background: var(--navy); }
.procedures-header { text-align: center; margin-bottom: 70px; }
.procedures-header h2 { font-family: var(--serif); font-size: clamp(36px, 4vw, 54px); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.procedures-header h2 em { font-style: italic; color: var(--gold-light); }
.procedures-header p { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; line-height: 1.75; font-weight: 300; }

.procedures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.procedure-card { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.procedure-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.procedure-card:hover .procedure-bg { transform: scale(1.06); }
.procedure-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.15) 0%, rgba(13,27,42,0.88) 100%);
  transition: background 0.3s;
}
.procedure-card:hover .procedure-overlay { background: linear-gradient(180deg, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0.95) 100%); }
.procedure-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; }
.procedure-number { font-family: var(--sans); font-size: 11px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 8px; }
.procedure-name { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.procedure-desc {
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; font-weight: 300;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.procedure-card:hover .procedure-desc { max-height: 80px; }
.procedure-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-top: 14px; text-decoration: none;
  opacity: 0; transition: opacity 0.3s 0.1s;
}
.procedure-card:hover .procedure-link { opacity: 1; }
.procedure-link svg { width: 14px; height: 14px; }

/* ─── PROCESS ─── */
.process-section { padding: 120px 0; background: var(--off-white); }
.process-header { text-align: center; margin-bottom: 70px; }
.process-header h2 { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 50px); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.process-header h2 em { font-style: italic; color: var(--gold); }
.process-header p { font-size: 15px; color: var(--text-light); max-width: 520px; margin: 0 auto; line-height: 1.75; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.35;
}
.process-step { text-align: center; padding: 0 28px; }
.step-number-wrap { display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; width: 72px; height: 72px; }
.step-number { width: 72px; height: 72px; border: 1px solid var(--gold); background: var(--off-white); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--gold); position: relative; z-index: 1; }
.step-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 14px; }
.step-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* ─── GALLERY ─── */
.gallery-section { padding: 120px 0; background: var(--white); }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 40px; }
.gallery-header-left h2 { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 50px); font-weight: 300; color: var(--navy); line-height: 1.2; }
.gallery-header-left h2 em { font-style: italic; color: var(--gold); }
.gallery-header p { font-size: 14px; color: var(--text-light); line-height: 1.75; max-width: 340px; text-align: right; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 10px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item--tall { grid-row: 1 / 3; }
.gallery-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-photo { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,27,42,0.6) 100%);
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: linear-gradient(180deg, rgba(13,27,42,0.1) 0%, rgba(13,27,42,0.7) 100%); }
.gallery-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(13,27,42,0.45);
  padding: 6px 12px;
  backdrop-filter: blur(4px);
}
.gallery-cta { text-align: center; margin-top: 52px; }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #1a2e42 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '"'; position: absolute; top: -60px; right: 8%;
  font-family: var(--serif); font-size: 420px; font-weight: 400;
  color: rgba(184,154,106,0.05); line-height: 1; pointer-events: none;
}
.testimonials-header { text-align: center; margin-bottom: 70px; }
.testimonials-header h2 { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 50px); font-weight: 300; color: var(--white); line-height: 1.2; }
.testimonials-header h2 em { font-style: italic; color: var(--gold-light); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,154,106,0.15);
  padding: 44px 36px;
  position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: var(--serif); font-size: 80px; font-weight: 300;
  color: var(--gold); opacity: 0.4;
  position: absolute; top: 12px; left: 28px; line-height: 1;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 22px; }
.star { color: var(--gold); font-size: 13px; }
.testimonial-text { font-family: var(--serif); font-size: 17px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, #8a6840 100%); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; color: var(--white); flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 500; color: var(--white); letter-spacing: 0.04em; }
.author-procedure { font-size: 11px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.testimonials-footer { text-align: center; margin-top: 56px; }
.review-platforms { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.platform-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.platform-name { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.platform-rating { font-family: var(--serif); font-size: 22px; color: var(--gold-light); }
.platform-rating span { font-size: 12px; color: rgba(255,255,255,0.4); font-family: var(--sans); }

/* ─── AWARDS ─── */
.awards-section { padding: 80px 0; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.awards-inner { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.award-item { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.55; transition: opacity 0.3s; cursor: default; }
.award-item:hover { opacity: 1; }
.award-icon { width: 56px; height: 56px; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.award-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.award-text { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); text-align: center; line-height: 1.5; }

/* ─── CTA / CONTACT FORM ─── */
.cta-section { padding: 120px 0; background: var(--white); text-align: center; }
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 24px; }
.cta-inner h2 em { font-style: italic; color: var(--gold); }
.cta-inner > p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 48px; font-weight: 300; }

/* Flash message */
.flash {
  padding: 16px 24px;
  margin-bottom: 32px;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.flash--success { background: #f0f7f0; border: 1px solid #a8d5a8; color: #2d662d; }
.flash--error { background: #fdf0f0; border: 1px solid #d5a8a8; color: #662d2d; }

/* Form */
.consultation-form { text-align: left; margin-bottom: 60px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { margin-bottom: 20px; }
.form-group label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,154,106,0.12);
}
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-footer { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.form-privacy { font-size: 12px; color: var(--text-light); max-width: 380px; line-height: 1.5; }

.cta-contact-options { display: flex; align-items: center; justify-content: center; gap: 50px; padding-top: 48px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.contact-option { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; }
.contact-option-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
.contact-option-value { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--navy); letter-spacing: 0.02em; }
.contact-option-value--sm { font-family: var(--sans); font-size: 14px; font-weight: 300; }
.contact-option:hover .contact-option-value { color: var(--gold); }
.contact-divider { width: 1px; height: 50px; background: var(--border); }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo-name { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--white); line-height: 1; }
.footer-logo-sub { font-size: 9.5px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 4px; margin-bottom: 20px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.3s; text-decoration: none; }
.social-link:hover { border-color: var(--gold); background: rgba(184,154,106,0.1); }
.social-link svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; }
.social-link:hover svg { stroke: var(--gold); }
.footer-col h4 { font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; letter-spacing: 0.03em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-line svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin-top: 2px; flex-shrink: 0; opacity: 0.7; }
.footer-contact-text { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-text a:hover { color: var(--gold-light); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 11.5px; color: rgba(255,255,255,0.3); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-disclaimer { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-disclaimer p { font-size: 10.5px; color: rgba(255,255,255,0.22); line-height: 1.65; text-align: center; max-width: 900px; margin: 0 auto; letter-spacing: 0.02em; }

/* ─── FADE-IN ANIMATION ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .mobile-menu-btn { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-left: 0; }
  .about-badge { right: 16px; bottom: -20px; width: 110px; height: 110px; }
  .about-badge-num { font-size: 32px; }
  .procedures-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item--tall { grid-row: auto; }
  .gallery-grid .gallery-item { height: 280px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .procedures-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid .gallery-item { height: 260px; }
  .cta-contact-options { gap: 30px; flex-direction: column; }
  .contact-divider { width: 50px; height: 1px; }
  .credentials-inner { flex-direction: column; }
  .cred-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; padding: 16px 0; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .gallery-header p { text-align: left; max-width: 100%; }
  .mobile-menu { padding: 28px 20px 36px; }
  .form-footer { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════════════════════════════════════════ */

/* ─── NAV ACTIVE STATE ─── */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero--tall { padding: 120px 0 100px; }
.page-hero--image {
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center top;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.7) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 680px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.6;
  max-width: 520px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { opacity: 0.4; }

/* ─── INNER CTA SECTION ─── */
.inner-cta { padding: 100px 0; background: var(--off-white); text-align: center; }
.inner-cta-inner { max-width: 660px; margin: 0 auto; }
.inner-cta h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.inner-cta h2 em { font-style: italic; color: var(--gold); }
.inner-cta p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 40px; font-weight: 300; }
.inner-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── SECTION HEADER CENTER ─── */
.section-header-center { text-align: center; margin-bottom: 60px; }
.section-header-center h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 50px); font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-header-center h2 em { font-style: italic; color: var(--gold); }
.section-header-center p { font-size: 15px; color: var(--text-light); max-width: 520px; margin: 0 auto; line-height: 1.75; font-weight: 300; }

/* ─── ABOUT FULL PAGE ─── */
.about-full-section { padding: 120px 0; background: var(--white); }
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-full-image { position: relative; }
.about-full-image .about-image { width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.about-full-content { padding-left: 20px; }
.about-full-content h2 { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 48px); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 28px; }
.about-full-content h2 em { font-style: italic; color: var(--gold); }
.about-full-content p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-light); margin-bottom: 20px; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ─── PHILOSOPHY ─── */
.philosophy-section { padding: 100px 0; background: var(--off-white); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.philosophy-card {
  background: var(--white);
  padding: 44px 36px;
  border-top: 3px solid var(--gold);
  position: relative;
}
.philosophy-number { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--gold); opacity: 0.2; line-height: 1; margin-bottom: 24px; }
.philosophy-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--navy); margin-bottom: 16px; }
.philosophy-card p { font-size: 14px; color: var(--text-light); line-height: 1.75; font-weight: 300; }

/* ─── TIMELINE ─── */
.timeline-section { padding: 100px 0; background: var(--navy); }
.timeline-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.timeline-header { position: sticky; top: 120px; }
.timeline-header h2 { font-family: var(--serif); font-size: clamp(30px, 3vw, 44px); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.timeline-header h2 em { font-style: italic; color: var(--gold-light); }
.timeline-header p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; font-weight: 300; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(184,154,106,0.2)); }
.timeline-item { position: relative; padding: 0 0 48px 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -5px; top: 8px; width: 10px; height: 10px; border: 1.5px solid var(--gold); background: var(--navy); border-radius: 50%; }
.timeline-period { font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.timeline-degree { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: 6px; }
.timeline-institution { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 300; }
.timeline-location { font-size: 11.5px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; margin-top: 3px; }

/* ─── RATINGS STRIP ─── */
.ratings-strip { padding: 36px 0; background: var(--off-white); border-top: 1px solid var(--border); }
.ratings-inner { display: flex; align-items: center; gap: 40px; justify-content: center; flex-wrap: wrap; }
.ratings-label { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); }
.ratings-platforms { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.rating-pill { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); padding: 10px 20px; }
.rating-platform { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.rating-score { font-family: var(--serif); font-size: 20px; color: var(--navy); }
.rating-score em { font-style: normal; font-size: 12px; font-family: var(--sans); color: var(--text-light); }

/* ─── PROCEDURES FULL PAGE ─── */
.procedures-full-section { padding: 80px 0 120px; }
.proc-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 40px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.proc-full-card:hover { box-shadow: 0 8px 40px rgba(13,27,42,0.1); }
.proc-full-card:nth-child(even) .proc-full-image { order: 2; }
.proc-full-card:nth-child(even) .proc-full-content { order: 1; }
.proc-full-image { aspect-ratio: 1; overflow: hidden; }
.proc-full-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.proc-full-card:hover .proc-full-image img { transform: scale(1.04); }
.proc-full-content { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.proc-full-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.proc-full-number { font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: 0.15em; }
.proc-full-category { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); background: var(--off-white); padding: 4px 10px; }
.proc-full-content h2 { font-family: var(--serif); font-size: clamp(28px, 2.8vw, 38px); font-weight: 300; color: var(--navy); line-height: 1.1; margin-bottom: 10px; }
.proc-full-tagline { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.proc-full-desc { font-size: 14.5px; color: var(--text-light); line-height: 1.8; font-weight: 300; margin-bottom: 24px; }
.proc-highlights { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.proc-highlights li { font-size: 13px; color: var(--text-light); padding-left: 18px; position: relative; }
.proc-highlights li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.proc-details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px; padding: 20px; background: var(--off-white); }
.proc-detail-item { display: flex; flex-direction: column; gap: 3px; }
.proc-detail-label { font-size: 9.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); }
.proc-detail-value { font-size: 13px; font-weight: 400; color: var(--navy); }

/* ─── TAB FILTER ─── */
.tab-bar-wrap { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 80px; z-index: 100; }
.tab-bar { display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tab-btn {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 18px 28px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }

/* ─── GALLERY FULL PAGE ─── */
.gallery-disclaimer-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 14px 0; }
.gallery-disclaimer-bar p { font-size: 12px; color: var(--text-light); text-align: center; line-height: 1.5; max-width: 800px; margin: 0 auto; }
.gallery-full-section { padding: 60px 0 100px; }
.gallery-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-full-item { overflow: hidden; position: relative; aspect-ratio: 3/4; cursor: pointer; }
.gallery-full-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s ease; }
.gallery-full-item:hover .gallery-full-photo { transform: scale(1.05); }
.gallery-full-item .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13,27,42,0.7) 100%); transition: background 0.3s; }
.gallery-full-item:hover .gallery-overlay { background: linear-gradient(180deg, rgba(13,27,42,0.1) 0%, rgba(13,27,42,0.75) 100%); }
.gallery-full-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.gallery-full-procedure { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.gallery-expand-icon { width: 16px; height: 16px; stroke: rgba(255,255,255,0.5); opacity: 0; transition: opacity 0.3s; }
.gallery-full-item:hover .gallery-expand-icon { opacity: 1; }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(10,16,24,0.96); cursor: pointer; }
.lightbox-inner { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-inner img { max-width: 90vw; max-height: 82vh; object-fit: contain; display: block; }
.lightbox-caption { font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 14px; }
.lightbox-counter { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 6px; }
.lightbox-close {
  position: fixed; top: 24px; right: 28px; z-index: 2;
  background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lightbox-close:hover { border-color: var(--gold); background: rgba(184,154,106,0.15); }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 2;
  background: none; border: 1px solid rgba(255,255,255,0.15); color: var(--white);
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); background: rgba(184,154,106,0.15); }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }

/* ─── PATIENT STORIES ─── */
.ratings-feature-section { padding: 80px 0; background: var(--navy); }
.ratings-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.rating-feature-card { padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.07); }
.rating-feature-card:last-child { border-right: none; }
.rating-feature-score { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--gold-light); line-height: 1; }
.rating-feature-suffix { font-size: 13px; color: rgba(255,255,255,0.5); margin: 4px 0 10px; }
.rating-feature-platform { font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.rating-feature-stars { font-size: 14px; color: var(--gold); margin-top: 8px; letter-spacing: 2px; }
.testimonials-full-section { padding: 100px 0; background: var(--off-white); }
.testimonials-full-section .testimonial-card {
  background: var(--white);
  border-color: var(--border);
}
.testimonials-full-section .testimonial-text {
  color: var(--text);
}
.testimonials-full-section .author-name {
  color: var(--navy);
}
.testimonials-full-section .testimonial-author {
  border-top-color: var(--border);
}
.testimonials-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.submit-story-section { padding: 100px 0; background: var(--white); }
.submit-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.submit-story-text h2 { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 48px); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.submit-story-text h2 em { font-style: italic; color: var(--gold); }
.submit-story-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; font-weight: 300; margin-bottom: 32px; }
.submit-story-links { display: flex; gap: 12px; flex-wrap: wrap; }
.submit-story-image { aspect-ratio: 4/5; overflow: hidden; }
.submit-story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* ─── CONTACT PAGE ─── */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-col h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.contact-form-col h2 em { font-style: italic; color: var(--gold); }
.contact-form-intro { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
.contact-info-card { background: var(--off-white); padding: 40px; border-top: 3px solid var(--gold); margin-bottom: 24px; }
.contact-info-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--navy); margin-bottom: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 36px; height: 36px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.contact-info-item strong { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-info-item span { font-size: 14px; color: var(--text); line-height: 1.5; }
.contact-info-item a { color: var(--text); text-decoration: none; }
.contact-info-item a:hover { color: var(--gold); }
.map-placeholder { background: var(--navy); padding: 40px; text-align: center; }
.map-placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.map-placeholder-inner p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.map-directions-link { font-size: 11.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.map-directions-link:hover { color: var(--gold-light); }

/* ─── FAQ ACCORDION ─── */
.faq-section { padding: 100px 0; background: var(--off-white); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-header h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.faq-header h2 em { font-style: italic; color: var(--gold); }
.faq-header p { font-size: 14px; color: var(--text-light); line-height: 1.75; }
.faq-header a { color: var(--gold); text-decoration: none; }
.faq-header a:hover { text-decoration: underline; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 14px; color: var(--text-light); line-height: 1.8; padding-bottom: 22px; font-weight: 300; }

/* ─── BOOK CONSULTATION ─── */
.booking-section { padding: 80px 0 120px; background: var(--white); }
.booking-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.booking-form-col h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.booking-form-col h2 em { font-style: italic; color: var(--gold); }
.booking-intro { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
.booking-info-card { background: var(--navy); padding: 36px; margin-bottom: 20px; }
.booking-info-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 28px; }
.booking-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.booking-step:last-child { border-bottom: none; padding-bottom: 0; }
.booking-step-num { font-family: var(--serif); font-size: 20px; color: var(--gold); min-width: 28px; line-height: 1.4; }
.booking-step-body strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); letter-spacing: 0.04em; margin-bottom: 4px; }
.booking-step-body p { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.6; font-weight: 300; }
.booking-contact-card { background: var(--off-white); padding: 28px; border-top: 3px solid var(--gold); margin-bottom: 16px; }
.booking-contact-card h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.booking-phone { display: block; font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--navy); text-decoration: none; margin-bottom: 8px; }
.booking-phone:hover { color: var(--gold); }
.booking-contact-card p { font-size: 12.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.booking-address { display: flex; align-items: flex-start; gap: 6px; font-size: 12px; color: var(--text-light); }
.booking-address svg { margin-top: 2px; flex-shrink: 0; stroke: var(--gold); }
.booking-financing-card { background: var(--off-white); padding: 28px; border-top: 3px solid var(--border); }
.booking-financing-card h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; }
.booking-financing-card p { font-size: 12.5px; color: var(--text-light); line-height: 1.65; }

/* ─── RESPONSIVE — INNER PAGES ─── */
@media (max-width: 1100px) {
  .proc-full-card { grid-template-columns: 1fr; }
  .proc-full-card:nth-child(even) .proc-full-image { order: 0; }
  .proc-full-card:nth-child(even) .proc-full-content { order: 0; }
  .proc-full-image { aspect-ratio: 16/7; }
  .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline-layout { grid-template-columns: 1fr; gap: 48px; }
  .timeline-header { position: static; }
}
@media (max-width: 900px) {
  .about-full-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-full-content { padding-left: 0; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .booking-layout { grid-template-columns: 1fr; }
  .testimonials-full-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .submit-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .ratings-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-feature-card:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .ratings-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-cta-actions { flex-direction: column; align-items: center; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .proc-full-content { padding: 32px 24px; }
  .proc-details-grid { grid-template-columns: 1fr 1fr; }
}
