/* ============================================================
   SANDRO FLOREZ — Luxury design system
   Serif editorial (Cormorant Garamond) + spaced sans labels,
   deep navy / champagne gold / ivory, hairline details.
   ============================================================ */

:root {
  --gold: #b2a085;
  --gold-deep: #96835f;
  --gold-pale: #e9e1d2;
  --gold-line: rgba(178, 160, 133, 0.4);
  --navy: #0c1a29;
  --navy-soft: #14273c;
  --ink: #2b2b2b;
  --muted: #6d675e;
  --ivory: #faf8f3;
  --white: #ffffff;
  --serif: 'Marcellus', 'Times New Roman', serif;
  --sans: 'Jost', 'Montserrat', Helvetica, Arial, sans-serif;
  --shadow-soft: 0 24px 60px rgba(12, 26, 41, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; font-synthesis: none; }

html, body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
}

::selection { background: var(--gold); color: #fff; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
}
h1 strong, h2 strong, h3 strong {
  font-weight: 400;
  color: var(--gold-deep);
}
h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--gold-deep);
}
h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}

a { color: var(--gold-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }

.text-muted { color: var(--muted) !important; }

/* ---- Eyebrow label: the small-caps gold line above headings ---- */
.hero-subtitle,
.eyebrow {
  font-family: var(--sans);
  color: var(--gold-deep);
  font-weight: 500;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-subtitle::before,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

/* ============================== TOP BAR ============================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(178,160,133,0.18);
}
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.topbar-right a {
  display: inline-flex;
  width: 30px; height: 30px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  margin-left: 8px;
  transition: all .3s var(--ease);
}
.topbar-right a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* Language selector */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.lang-switch a {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  border: 1px solid transparent;
  border-radius: 0;
}
.lang-switch a + a { border-left: 1px solid rgba(178,160,133,0.3); }
.lang-switch a:hover { color: var(--gold); }
.lang-switch a.active { color: var(--gold); }
.site-nav .lang-switch a { color: var(--muted); }
.site-nav .lang-switch a.active,
.site-nav .lang-switch a:hover { color: var(--gold-deep); }

/* ============================== NAV ============================== */
.site-nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12,26,41,0.06);
  padding: 18px 0;
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-nav.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 40px rgba(12,26,41,0.08);
}
.site-nav .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 10px 11px !important;
  white-space: nowrap;
  position: relative;
}
.site-nav .logo-light { display: none; }
.site-nav .nav-cta {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--navy);
  background: transparent;
  padding: 11px 24px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0;
  transition: all .3s var(--ease);
}
.site-nav .nav-cta:hover {
  background: var(--gold);
  color: #fff;
}
@media (min-width: 992px) and (max-width: 1249.98px) {
  .site-nav .nav-link { font-size: 10px; padding: 10px 8px !important; letter-spacing: 0.1em; }
  .site-nav .nav-cta { padding: 10px 16px; font-size: 10px; letter-spacing: 0.14em; }
  .site-nav .navbar-brand img { width: 138px; height: 46px; }
}
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--gold-deep) !important; }

.site-nav .dropdown-menu {
  border: 1px solid rgba(178,160,133,0.25);
  border-top: 2px solid var(--gold);
  border-radius: 0;
  box-shadow: 0 24px 50px rgba(12,26,41,0.12);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 10px 0;
  margin-top: 0;
}
.site-nav .dropdown-item {
  padding: 11px 24px;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 500;
  transition: all .25s var(--ease);
}
.site-nav .dropdown-item:hover {
  background: var(--ivory);
  color: var(--gold-deep);
  padding-left: 30px;
}
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ---- Overlay nav: transparent over the home hero, solid on scroll ---- */
body.nav-overlay .topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1031;
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.12);
}
body.nav-overlay .site-nav {
  position: fixed;
  top: 46px; left: 0; right: 0;
  z-index: 1030;
  transition: top .3s var(--ease), background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
body.nav-overlay .site-nav.is-scrolled { top: 0; }
body.nav-overlay .site-nav:not(.is-scrolled) {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: none;
}
body.nav-overlay .site-nav:not(.is-scrolled) .nav-link { color: #fff !important; }
body.nav-overlay .site-nav:not(.is-scrolled) .nav-link:hover,
body.nav-overlay .site-nav:not(.is-scrolled) .nav-link.active { color: var(--gold) !important; }
body.nav-overlay .site-nav:not(.is-scrolled) .logo-dark { display: none; }
body.nav-overlay .site-nav:not(.is-scrolled) .logo-light { display: inline-block; }
body.nav-overlay .site-nav:not(.is-scrolled) .nav-cta { color: #fff; }
body.nav-overlay .site-nav:not(.is-scrolled) .nav-cta:hover { background: var(--gold); color: var(--navy); }
body.nav-overlay .hero-cinema { padding-top: 220px; }
@media (max-width: 991.98px) {
  body.nav-overlay .site-nav { position: sticky; top: 0; }
  body.nav-overlay .site-nav:not(.is-scrolled) {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(12,26,41,0.06);
  }
  body.nav-overlay .site-nav:not(.is-scrolled) .nav-link { color: var(--navy) !important; }
  body.nav-overlay .site-nav:not(.is-scrolled) .logo-dark { display: inline-block; }
  body.nav-overlay .site-nav:not(.is-scrolled) .logo-light { display: none; }
  body.nav-overlay .site-nav:not(.is-scrolled) .nav-cta { color: var(--navy); }
  body.nav-overlay .hero-cinema { padding-top: 90px; }
  .site-nav .nav-cta { margin: 12px 0 6px; }
}

/* ============================== HERO (cinematic) ============================== */
.hero-cinema {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 120px 0 100px;
}
.hero-cinema video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-cinema-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(12,26,41,0.94) 0%,
    rgba(12,26,41,0.78) 45%,
    rgba(12,26,41,0.45) 100%);
}
.hero-cinema-content { position: relative; z-index: 2; }
.hero-cinema .hero-subtitle { color: var(--gold); }
.hero-cinema .hero-subtitle::before { background: var(--gold); }
.hero-title {
  margin-bottom: 0.55em;
}
.hero-name {
  display: block;
  color: #fff;
  font-size: clamp(2.5rem, 4.4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.08;
}
.hero-role {
  display: block;
  font-family: var(--sans);
  color: var(--gold);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 18px;
}
.hero-lead {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 2.4rem;
}
/* The doctor, cut out and monumental — anchored to the hero base */
.hero-doctor {
  position: absolute;
  right: 5vw;
  bottom: 0;
  height: 86%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.hero-doctor::before {
  /* gold aura behind the figure */
  content: "";
  position: absolute;
  inset: -12% -30%;
  background: radial-gradient(ellipse 55% 55% at 50% 45%, rgba(178,160,133,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.hero-doctor img {
  position: relative;
  height: 100%;
  width: auto;
  -webkit-mask-image: linear-gradient(180deg, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 90%, transparent 100%);
  /* subtle: a large blur gets clipped at the image box by the mask and reads as a dark square */
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.22));
}
@media (max-width: 991px) {
  .hero-doctor { display: none; }
}

/* ============================== BUTTONS ============================== */
.btn-brand,
.btn-outline-brand {
  border-radius: 0;
  padding: 16px 42px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  position: relative;
  transition: all .35s var(--ease);
}
.btn-brand {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
}
.btn-brand:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
  letter-spacing: 0.34em;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 1px solid #25d366;
  border-radius: 0;
  padding: 16px 42px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
  letter-spacing: 0.34em;
}
.btn-outline-brand {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gold);
}
.btn-outline-brand:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  letter-spacing: 0.34em;
}
.btn-gold {
  border-radius: 0;
  padding: 16px 42px;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  transition: all .35s var(--ease);
}
.btn-gold:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  letter-spacing: 0.34em;
}
.btn-ghost {
  border-radius: 0;
  padding: 16px 42px;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  transition: all .35s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  letter-spacing: 0.34em;
}
.cta-band .btn-brand {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.cta-band .btn-brand:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================== CTA BAND ============================== */
.cta-band {
  background:
    radial-gradient(ellipse 50% 100% at 50% 0%, rgba(178,160,133,0.12) 0%, transparent 70%),
    var(--navy);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 34px;
  background: var(--gold);
}
.cta-band::before { top: 0; }
.cta-band::after { bottom: 0; }
.cta-band h2 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  margin-bottom: 2rem;
}
.cta-band h2 strong { color: var(--gold); font-weight: 400; }

/* ============================== SECTIONS ============================== */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
}
.section-title h2 strong { font-weight: 400; color: var(--gold-deep); }
.section-title .lead-line {
  width: 1px;
  height: 44px;
  background: var(--gold);
  margin: 22px auto 18px;
}
.section-title p { color: var(--muted); max-width: 60ch; margin: 0 auto; }

/* ============================== SERVICE TILES ============================== */
.svc-tile {
  background: #fff;
  border: 1px solid rgba(12,26,41,0.07);
  height: 100%;
  transition: box-shadow .5s var(--ease), transform .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden;
}
.svc-tile:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-soft);
}
.svc-tile .img-wrap { overflow: hidden; }
/* Cards keep a fixed aspect ratio at ANY viewport width so photos never
   collapse into a thin strip that crops away the subject */
.svc-tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 1.2s var(--ease);
}
/* Home featured cards: portrait 3:4, faces anchored to the top */
.svc-tile .img-wrap img {
  aspect-ratio: 3 / 4;
  object-position: top center;
}
.svc-tile:hover img { transform: scale(1.06); }
.svc-tile .body { padding: 30px 28px 34px; }
.svc-tile h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: .6rem;
  position: relative;
  padding-bottom: 14px;
}
.svc-tile h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 1px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.svc-tile:hover h4::after { width: 64px; }
.svc-tile p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============================== PAGE BANNER ============================== */
.page-banner {
  background:
    linear-gradient(180deg, rgba(12,26,41,0.82) 0%, rgba(12,26,41,0.9) 100%),
    url('../images/banner-clinic.webp') center 35% / cover no-repeat,
    var(--navy);
  color: #fff;
  text-align: center;
  padding: 110px 0 92px;
  position: relative;
}
.page-banner::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 1px; height: 30px;
  background: var(--gold);
}
.page-banner h1 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}
.page-banner .breadcrumbs {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-banner .breadcrumbs a { color: rgba(255,255,255,0.55); }
.page-banner .breadcrumbs a:hover { color: var(--gold); }
.tracked { letter-spacing: 0.3em; text-transform: uppercase; }

/* ============================== VIDEO BAND ============================== */
.video-band {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.video-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,26,41,0.55) 0%, rgba(12,26,41,0.75) 100%);
}
.video-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 110px 0;
}
.video-band-content .eyebrow { display: inline-flex; }
.video-band-content .eyebrow::after {
  content: "";
  width: 42px; height: 1px;
  background: var(--gold);
  flex: none;
}
.video-band-content h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.video-band-content h2 em { color: var(--gold); font-style: normal; }
.video-band-content .band-copy {
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  margin-bottom: 2.2rem;
}
.video-band .btn-brand {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.video-band .btn-brand:hover { background: var(--gold); color: var(--navy); }

/* ============================== CONTACT ============================== */
.contact-section {
  padding: 110px 0;
  background: var(--ivory);
}
.contact-card {
  background: #fff;
  padding: 52px 46px;
  border: 1px solid rgba(12,26,41,0.06);
  border-top: 2px solid var(--gold);
  height: 100%;
  box-shadow: 0 14px 40px rgba(12,26,41,0.05);
}
.contact-card h3 {
  font-family: var(--sans);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}
.contact-card p { margin-bottom: 0.9rem; color: var(--muted); font-size: 14.5px; }
.contact-card i { color: var(--gold); width: 26px; }

/* ============================== FORMS ============================== */
.form-control, .form-select {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(12,26,41,0.18);
  background: transparent;
  padding: 13px 2px;
  font-size: 14.5px;
  font-weight: 300;
  transition: border-color .3s var(--ease);
}
.form-control::placeholder { color: #a9a49b; letter-spacing: 0.03em; }
.form-control:focus, .form-select:focus {
  border-color: var(--gold-deep);
  box-shadow: none;
  background: transparent;
}

/* ============================== BIO / PRINCIPLES ============================== */
.bio-card {
  background: #fff;
  padding: 40px;
  border: 1px solid rgba(12,26,41,0.06);
  border-left: 2px solid var(--gold);
  height: 100%;
}
.bio-card h3 { font-weight: 400; }
.bio-card .role {
  color: var(--gold-deep);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.principle {
  text-align: center;
  padding: 36px 26px;
  border: 1px solid transparent;
  transition: border-color .5s var(--ease), background .5s var(--ease);
  height: 100%;
}
.principle:hover {
  border-color: var(--gold-line);
  background: #fff;
}
.principle .icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all .5s var(--ease);
}
.principle:hover .icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}
.principle h5 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  border-top: 3px solid var(--gold);
}
.site-footer .container { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
.footer-title {
  color: var(--gold);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  margin-bottom: 1.4rem;
}
.site-footer p { color: rgba(255,255,255,0.66); font-size: 14px; font-weight: 300; }
.site-footer a { color: rgba(255,255,255,0.82) !important; }
.site-footer a:hover { color: var(--gold) !important; }
.footer-social a {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(178,160,133,0.35);
  border-radius: 50%;
  color: #fff !important;
  font-size: 1.05rem;
  margin-right: 12px;
  transition: all .35s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}
.footer-bottom {
  background: rgba(0,0,0,0.28);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================== WHATSAPP FLOAT ============================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: #fff;
  width: 58px; height: 58px;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 34px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: all .35s var(--ease);
}
.whatsapp-float:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5);
}

/* ============================== TESTIMONIALS ============================== */
.testimonials-section { background: var(--gold-pale); }
.testimonials-section .rating-line {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  margin-top: 10px;
}
.testimonials-section .stars {
  color: var(--gold-deep);
  letter-spacing: 3px;
  margin-right: 6px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gold-line);
  padding: 28px;
  height: 100%;
  margin: 0;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--navy);
  margin: 0 0 18px;
}
.testimonial-card blockquote::before { content: "\201C"; color: var(--gold); font-size: 28px; line-height: 0; margin-right: 4px; }
.testimonial-card figcaption {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.testimonial-card figcaption span { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ============================== FAQ ACCORDION ============================== */
.sf-accordion .accordion-item {
  border: 1px solid var(--gold-line);
  border-radius: 0;
  background: #fff;
  margin-bottom: 12px;
}
.sf-accordion .accordion-button {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  background: #fff;
  padding: 20px 24px;
  box-shadow: none;
}
.sf-accordion .accordion-button:not(.collapsed) {
  background: var(--gold-pale);
  color: var(--navy);
}
.sf-accordion .accordion-button:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(178,160,133,0.25);
}
.sf-accordion .accordion-body {
  font-size: 15px;
  color: var(--ink);
  padding: 20px 24px;
  border-top: 1px solid var(--gold-line);
}

/* ============================== PROCEDURE MODALS ============================== */
.tile-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: letter-spacing .3s var(--ease);
}
.tile-more::after { content: "\00a0+"; }
.svc-tile[data-bs-toggle] { cursor: pointer; }
.svc-tile[data-bs-toggle]:hover .tile-more { letter-spacing: 0.3em; }

.sf-modal .modal-content {
  border: none;
  border-radius: 0;
  border-top: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(12, 26, 41, 0.45);
}
.sf-modal .btn-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  opacity: .92;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.sf-modal .btn-close:hover { opacity: 1; }
.sf-modal-img { position: relative; }
.sf-modal-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sf-modal-body { padding: 46px 44px; background: #fff; }
.sf-modal-body .eyebrow { margin-bottom: 0.9rem; }
.sf-modal-body h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
}
.sf-modal-text { color: var(--muted); font-size: 14.5px; margin-bottom: 6px; }
.sf-modal-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 20px 0 8px;
}
.sf-modal-list { list-style: none; padding: 0; margin: 0 0 26px; }
.sf-modal-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid rgba(12,26,41,0.06);
}
.sf-modal-list li:last-child { border-bottom: none; }
.sf-modal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 13px; height: 1px;
  background: var(--gold);
}
.modal.fade .modal-dialog {
  transform: translateY(22px) scale(0.98);
  transition: transform .4s var(--ease);
}
.modal.show .modal-dialog { transform: none; }
.modal-backdrop { background: var(--navy); }
.modal-backdrop.show { opacity: 0.72; }
@media (max-width: 767px) {
  .sf-modal-body { padding: 36px 26px; }
}

/* ============================== BLOG ============================== */
.blog-card .img-wrap img { aspect-ratio: 16 / 10; object-position: center; }
.blog-date {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.post-banner { padding: 120px 0 90px; }
.post-banner-date {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.post-banner-title {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem) !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  max-width: 20ch;
  margin: 0 auto !important;
}
.post-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 2.4rem;
  box-shadow: var(--shadow-soft);
}
.post-content p { color: var(--muted); font-size: 15.5px; margin-bottom: 1.2rem; }
.post-content strong { color: var(--ink); font-weight: 500; }
.post-content em { color: var(--gold-deep); font-style: italic; }
.post-content h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 2.2rem 0 0.9rem;
  padding-bottom: 12px;
  position: relative;
}
.post-content h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 1px;
  background: var(--gold);
}
.post-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(12,26,41,0.08);
}

/* ============================== SCROLL REVEAL ============================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 991px) {
  .hero-cinema { min-height: 78vh; padding: 90px 0 70px; }
  .site-nav .navbar-nav { padding: 18px 0; }
  .site-nav .nav-link { padding: 12px 0 !important; }
  .site-nav .nav-link::after { display: none; }
  .contact-card { padding: 38px 28px; }
}

/* ============================== SURGERY TABS ============================== */
.sf-tabs { border-bottom: 1px solid var(--gold-line); gap: 8px; }
.sf-tabs .nav-link {
  border: 0; border-bottom: 2px solid transparent; border-radius: 0;
  background: transparent; color: var(--ink, var(--navy));
  font-family: var(--sans); font-weight: 500; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase; padding: 14px 32px;
  margin-bottom: -1px; transition: color .3s var(--ease), border-color .3s var(--ease);
}
.sf-tabs .nav-link:hover { color: var(--gold-deep); }
.sf-tabs .nav-link.active { color: var(--navy); border-bottom-color: var(--gold); background: transparent; }

/* ============================== AFFILIATION LOGOS ============================== */
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px 56px; }
.logo-row img { height: 64px; width: auto; max-width: 220px; object-fit: contain; }
@media (max-width: 575.98px) { .logo-row { gap: 20px 32px; } .logo-row img { height: 48px; max-width: 150px; } }

/* ============================== reCAPTCHA ============================== */
.grecaptcha-badge { visibility: hidden; }
.recaptcha-notice { font-family: var(--sans); font-size: 11px; color: #8a8a8a; margin: 12px 0 0; line-height: 1.5; }
.recaptcha-notice a { color: #8a8a8a; text-decoration: underline; }
