/* ===== Gotham (local) ===== */
@font-face {
  font-family: 'Gotham';
  src: url('../assets/fonts/GothamBook.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../assets/fonts/GothamMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../assets/fonts/Gotham Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../assets/fonts/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===== Facial Plastic Solutions — Editorial Warm Medical ===== */

:root {
  /* Palette — teal from logo + gold secondary */
  --bg: #F7FBFC;                         /* white with cool tint */
  --bg-soft: #EEF6F8;                    /* light teal tint */
  --bg-deep: #D4E8ED;                    /* deeper teal tint */
  --ink: #0F3D4A;                        /* teal-dark text */
  --ink-soft: #4A7580;                   /* teal medium text */
  --ink-mute: #6A9BA8;                   /* teal muted */
  --line: #D4E8ED;                       /* teal border */
  --line-soft: #E4F0F3;                  /* soft teal border */

  --primary: #0C7C9A;                    /* teal — from logo center */
  --primary-ink: #F7FBFC;                /* light text on primary */
  --primary-soft: #2EA8C7;               /* cyan medium — logo mid */
  --accent: #5BC5E0;                     /* cyan light — logo outer */
  --gold: oklch(0.82 0.10 85);           /* warm gold — secondary accent */

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Gotham", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(40,30,20,.05), 0 2px 8px rgba(40,30,20,.04);
  --shadow: 0 2px 6px rgba(40,30,20,.06), 0 20px 48px -20px rgba(40,30,20,.18);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Typography ===== */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; margin: 0; text-wrap: balance; }
p { text-wrap: pretty; }

.h-display { font-size: clamp(44px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.025em; font-weight: 300; }
.h-1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.04; }
.h-2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.12; }
.h-3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.25; }

/* ===== Layout ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(80px, 10vw, 160px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

.divider-rule {
  display: flex; align-items: center; gap: 16px;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.divider-rule::before, .divider-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.divider-rule.left::before { display: none; }
.divider-rule.left { justify-content: flex-start; }
.divider-rule.left::after { max-width: 80px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--primary-ink);
}
.btn-primary:hover { filter: brightness(1.15); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink-soft); }
.btn-link {
  padding: 8px 0; border-bottom: 1px solid var(--ink); border-radius: 0;
  color: var(--ink);
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ===== Top nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-mark-nav {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-horizontal {
  height: 48px;
  width: auto;
  max-width: 100%;
  display: block;
}
.logo-img-footer {
  height: 64px;
  filter: brightness(0) invert(1);
}
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { line-height: 1; }
.logo-text .l1 { font-size: 17px; letter-spacing: 0.01em; }
.logo-text .l2 {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--primary);
}
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex; align-items: center;
  padding: 3px;
  background: oklch(0.94 0.008 70);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  position: relative;
}
.lang-switch button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-mute);
  transition: all .25s ease;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.on {
  background: var(--bg);
  color: var(--primary);
  box-shadow: 0 1px 3px oklch(0 0 0 / 0.08);
}
.flag { font-size: 14px; line-height: 1; }

.nav-mobile-toggle {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 999px;
  align-items: center; justify-content: center;
}
.nav-mobile-toggle svg { width: 18px; height: 18px; }

/* ===== Hero ===== */
.hero { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(64px, 8vw, 120px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-text .eyebrow { margin-bottom: 24px; }
.hero-text h1 { margin-bottom: 28px; }
.hero-text h1 em {
  font-style: italic; color: var(--primary);
  font-family: var(--serif);
}
.hero-lede {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-meta-item .k { font-family: var(--serif); font-size: 28px; color: var(--gold); }
.hero-meta-item .v { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

.hero-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: visible;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}
.hero-photo > img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-photo-badge {
  position: absolute; left: 20px; top: 20px;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.hero-photo-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.68 0.16 145);
}
.hero-photo-caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  padding: 14px 18px;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex; gap: 14px; align-items: center;
}
.hero-photo-caption .who { font-family: var(--serif); font-size: 17px; line-height: 1.2; }
.hero-photo-caption .role { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }

/* ===== Placeholder images ===== */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      oklch(0.90 0.018 230) 0 1px,
      transparent 1px 14px),
    linear-gradient(180deg, oklch(0.94 0.015 228), oklch(0.88 0.020 232));
  color: var(--ink-soft);
  display: grid; place-items: center;
}
.ph.ph-dark {
  background:
    repeating-linear-gradient(135deg,
      oklch(0.30 0.06 258) 0 1px,
      transparent 1px 14px),
    linear-gradient(180deg, oklch(0.35 0.08 260), oklch(0.28 0.06 258));
  color: oklch(0.85 0.02 230);
}
.ph img.logo-img {
  width: 60%; max-width: 260px; height: auto;
  opacity: 0.18; filter: grayscale(1);
}
.ph-label {
  position: absolute;
  inset: auto 16px 16px 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  padding: 8px 10px; border-radius: 6px;
  border: 1px dashed var(--line);
  text-align: left;
}
.ph-center {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-radius: 6px;
  border: 1px dashed var(--line);
}

/* ===== Procedures ===== */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head p { color: var(--ink-soft); max-width: 46ch; font-size: 15px; }

.proc-tabs {
  display: inline-flex;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  margin-bottom: 40px;
}
.proc-tabs button {
  padding: 10px 20px; font-size: 13px;
  border-radius: 999px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  transition: all .2s;
}
.proc-tabs button.on { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-sm); }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proc-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.proc-card:hover { transform: translateY(-2px); box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 16px 40px rgba(0,0,0,.1); }
.proc-card .img { aspect-ratio: 4/3; position: relative; overflow: hidden; background: oklch(0.93 0.012 72); }
.proc-card .img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.proc-card:hover .img img { transform: scale(1.04); }
.proc-card.proc-cta { background: var(--primary); border-color: var(--primary); color: var(--primary-ink); }
.proc-card.proc-cta .body { padding: 32px; justify-content: space-between; min-height: 100%; }
.proc-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.proc-card .num { font-family: var(--mono); color: var(--ink-mute); }
.proc-card h3 { font-size: 26px; line-height: 1.15; }
.proc-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.proc-card .foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-mute);
}
.proc-card .foot a { color: var(--ink); font-weight: 500; }
.proc-card .foot a:hover { color: var(--accent); }

/* ===== Credentials ===== */
.credentials {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cred-inner { display: grid; grid-template-columns: 1fr 2.4fr; gap: 48px; align-items: center; }
.cred-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}
.cred-logo {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  text-align: center;
  min-height: 180px;
}
.cred-logo .cred-img {
  display: block;
  object-fit: contain;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.7;
  transition: all .3s;
  /* Per-logo normalization via data-shape */
}
.cred-logo[data-shape="mark"] .cred-img { height: 68px; width: auto; max-width: 100%; }
.cred-logo[data-shape="wide"] .cred-img { height: 40px; width: auto; max-width: 180px; }
.cred-logo[data-shape="tall"] .cred-img { height: 56px; width: auto; max-width: 160px; }
.cred-logo:hover .cred-img { filter: none; opacity: 1; }
.cred-logo .name { font-size: 12px; color: var(--ink-soft); line-height: 1.35; max-width: 16ch; }

/* ===== Locations ===== */
.locs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.loc-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: all .3s;
}
.loc-card:hover { box-shadow: var(--shadow); }
.loc-map { aspect-ratio: 4/3; position: relative; background: oklch(0.92 0.010 70); min-height: 300px; }
.loc-map svg { width: 100%; height: 100%; display: block; }
.loc-map iframe { width: 100%; height: 100%; display: block; border: 0; }
.loc-body { padding: 28px; }
.loc-flag { font-size: 20px; }
.loc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.loc-head .city { display: flex; align-items: center; gap: 12px; }
.loc-head h3 { font-size: 28px; }
.loc-rows { display: grid; gap: 14px; font-size: 14px; color: var(--ink-soft); }
.loc-rows .row { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; }
.loc-rows .row svg { width: 16px; height: 16px; color: var(--ink-mute); margin-top: 2px; }
.loc-rows .row strong { color: var(--ink); font-weight: 500; }
.loc-cta { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Results gallery ===== */
.results-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.results-filter button {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 13px; letter-spacing: 0.02em;
  transition: all .2s;
}
.results-filter button:hover { border-color: var(--primary); color: var(--ink); }
.results-filter button.on { background: var(--primary); color: var(--primary-ink); border-color: var(--primary); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.result:hover { transform: translateY(-2px); box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 16px 40px rgba(0,0,0,.1); }
.result img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.result figcaption {
  padding: 14px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--sans);
}
@media (max-width: 960px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .results-grid { grid-template-columns: 1fr; } }

/* ===== Testimonials legacy (no longer used but kept for layout) ===== */
.testimonials { background: var(--ink); color: var(--bg); }
.testimonials .eyebrow { color: oklch(0.75 0.015 250); }
.testimonials h2 { color: var(--bg); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.t-card {
  background: oklch(0.28 0.025 250);
  border: 1px solid oklch(0.34 0.02 250);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.t-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.t-card .quote { font-family: var(--serif); font-size: 20px; line-height: 1.4; color: var(--bg); flex: 1; }
.t-card .who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid oklch(0.34 0.02 250); }
.t-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: oklch(0.4 0.018 55); display: grid; place-items: center; font-family: var(--serif); color: var(--bg); font-size: 16px; }
.t-card .who .n { font-size: 14px; color: var(--bg); }
.t-card .who .m { font-size: 11px; color: oklch(0.65 0.015 250); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

/* ===== CTA band ===== */
.cta-band {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(135deg, #0C7C9A 0%, #0A6278 50%, #0C3A47 100%);
  color: var(--primary-ink);
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.cta-inner p { color: rgba(255,255,255,.75); max-width: 40ch; font-size: 15px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: start; }
.cta-band .btn-primary { background: var(--bg); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--gold); }
.cta-band .btn-ghost { border-color: #2EA8C7; color: var(--primary-ink); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ===== Footer ===== */
footer { background: #0C3A47; color: #7AB4C4; padding: 80px 0 28px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
footer h4 { color: var(--bg); font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; font-family: var(--sans); font-weight: 500; margin-bottom: 18px; }
.foot-links { display: grid; gap: 10px; }
.foot-links a:hover { color: var(--gold); }
.foot-contact { display: grid; gap: 14px; }
.foot-contact .ctry { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #5A8E9C; margin-bottom: 4px; }
.foot-contact strong { color: var(--bg); font-weight: 500; display: block; margin-bottom: 2px; }
.foot-brand .logo-mark { background: transparent; }
.foot-brand .logo-mark img { filter: brightness(0) invert(1); opacity: 0.95; }
.foot-brand p { color: #6DAAB8; margin: 18px 0 24px; max-width: 32ch; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #1A5F70; display: grid; place-items: center; }
.foot-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid #1A5F70;
  font-size: 12px; color: #5A8E9C;
  flex-wrap: wrap; gap: 16px;
}
.pay-cards { display: flex; gap: 8px; }
.pay-card {
  padding: 5px 10px; border: 1px solid #1A5F70;
  border-radius: 4px; font-size: 10px; letter-spacing: 0.1em;
  font-family: var(--mono);
}

/* ===== WhatsApp fab ===== */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: oklch(0.68 0.16 145); color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(25,135,84,.4), 0 2px 8px rgba(0,0,0,.1);
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; }


/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 4/5; max-width: 520px; margin: 0 auto; width: 100%; }
  .section-head { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-inner { grid-template-columns: 1fr; gap: 32px; }
  .cred-logos { border-left: none; }
  .locs-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-inner { height: 60px; gap: 12px; }
  .logo-mark-nav { height: 36px; }
  .nav-right .btn { padding: 10px 16px; font-size: 13px; }
  .lang-switch { font-size: 10px; }
  .lang-switch button { padding: 5px 10px; }
}
@media (max-width: 560px) {
  .proc-grid { grid-template-columns: 1fr; }
  .cred-logos { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: 24px; }
  .lang-switch button span.label { font-size: 12px; }
}


/* =========================================================
   REDESIGNED SECTIONS — single doctor edition
   ========================================================= */

/* ===== Doctor (single, no photo) ===== */
.doctor-single-sec { padding-top: 120px; padding-bottom: 120px; }
.doctor-single-nophoto {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.doctor-single-nophoto h2 { margin: 0 0 20px; }
.doctor-single-nophoto .doctor-role {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.doctor-single-nophoto p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
  text-wrap: pretty;
  max-width: 62ch;
}
.doctor-single-nophoto .doctor-creds {
  list-style: none; padding: 0; margin: 32px 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  font-size: 14px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 560px;
}
.doctor-single-nophoto .doctor-creds li {
  position: relative;
  padding-left: 14px;
}
.doctor-single-nophoto .doctor-creds li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.doctor-single-nophoto .doctor-cta { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .doctor-single-sec { padding-top: 80px; padding-bottom: 80px; }
  .doctor-single-nophoto .doctor-creds { grid-template-columns: 1fr; }
}

/* ===== Single Location ===== */
.locs-single { display: block; }
.locs-single .loc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .locs-single .loc-card { grid-template-columns: 1fr; }
}

/* ===== Testimonials — Bubble Cards Carousel ===== */
.tst-sec {
  background: var(--bg-soft);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
.tst-sec::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, oklch(0.96 0.02 80) 0%, transparent 55%),
    radial-gradient(ellipse at 95% 100%, oklch(0.93 0.025 82) 0%, transparent 50%);
  pointer-events: none;
}
.tst-sec > .container { position: relative; z-index: 1; }

.tst-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 72px;
}
.tst-head .eyebrow { margin-bottom: 18px; }
.tst-head h2 { margin: 0 0 20px; max-width: 16ch; }
.tst-head h2 em { color: var(--primary); font-style: italic; font-weight: 500; }
.tst-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
}

.tst-nav { display: flex; gap: 14px; align-self: end; padding-bottom: 6px; }
.tst-btn {
  width: 56px; height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.tst-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
  transform: translateY(-2px);
}
.tst-btn svg { width: 18px; height: 18px; }

.tst-stage {
  position: relative;
  overflow: hidden;
}
.tst-track {
  display: flex;
  gap: 32px;
  transition: transform .65s cubic-bezier(.65,0,.35,1);
  will-change: transform;
  padding: 24px 0 48px;
}
.tst-card {
  flex: 0 0 calc((100% - 64px) / 3);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.tst-card .tst-bubble { flex: 1; }

/* speech bubble */
.tst-bubble {
  background: var(--bg);
  border: none;
  border-radius: 18px;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 12px 32px rgba(0,0,0,.08);
  min-height: 200px;
  display: flex;
  align-items: flex-start;
}
.tst-bubble p {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
/* tail — two triangles to create a border-matching speech tail */
.tst-bubble::before,
.tst-bubble::after {
  content: "";
  position: absolute;
  left: 42px;
  width: 0; height: 0;
  border-style: solid;
}
.tst-bubble::before {
  bottom: -14px;
  border-width: 14px 14px 0 0;
  border-color: var(--line) transparent transparent transparent;
}
.tst-bubble::after {
  bottom: -12px;
  border-width: 12px 12px 0 0;
  border-color: var(--bg) transparent transparent transparent;
}

.tst-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 12px;
}
.tst-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(20,30,60,.08);
  overflow: hidden;
}
.tst-avatar img {
  width: 70%; height: 70%;
  object-fit: contain;
}
.tst-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.tst-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.tst-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tst-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: oklch(0.82 0.012 80);
  transition: background .2s ease, transform .2s ease;
  padding: 0;
}
.tst-dots button.on {
  background: var(--primary);
  transform: scale(1.3);
}
.tst-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.tst-count [data-tst-current] { color: var(--primary); font-weight: 500; }
.tst-count .sep { margin: 0 8px; opacity: 0.5; }

@media (max-width: 960px) {
  .tst-head { grid-template-columns: 1fr; }
  .tst-nav { justify-self: start; }
  .tst-card { flex: 0 0 calc((100% - 32px) / 2); }
}
@media (max-width: 640px) {
  .tst-sec { padding: 80px 0 90px; }
  .tst-head { margin-bottom: 48px; }
  .tst-track { gap: 20px; padding: 16px 0 32px; }
  .tst-card { flex: 0 0 100%; }
  .tst-bubble { padding: 24px 22px; min-height: 0; }
  .tst-bubble p { font-size: 18px; }
  .tst-btn { width: 48px; height: 48px; }
  .tst-name { font-size: 20px; }
}

/* ===== Turismo — Editorial ===== */
.turismo-sec-new { position: relative; }
.turismo-intro {
  padding: 140px 0 80px;
  background: var(--bg);
}
.turismo-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.turismo-title {
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.turismo-intro-lede p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 40ch;
  text-wrap: pretty;
}
.turismo-metrics {
  display: grid;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.turismo-metrics .metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
}
.turismo-metrics .mk {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
  font-weight: 500;
}
.turismo-metrics .mv {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 28ch;
}

.turismo-journey {
  background: var(--bg-soft);
  padding: 100px 0 120px;
  position: relative;
}
.journey-head {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.journey-head h3 { margin: 0; text-wrap: balance; }

.journey-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  counter-reset: journey;
}
.journey-step {
  display: grid;
  grid-template-columns: 96px 1px 1fr;
  gap: 32px;
  padding: 32px 0;
  align-items: start;
  position: relative;
}
.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 95px; /* vertical rule continues */
  top: 68px;
  bottom: -4px;
  width: 1px;
  background: var(--line);
}
.journey-step .js-n {
  font-size: 42px;
  line-height: 1;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: right;
  position: relative;
}
.journey-step .js-n::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--accent);
}
.journey-step .js-rule {
  width: 1px;
  background: var(--line);
  height: 100%;
  margin-left: -1px;
}
.journey-step .js-body h4 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 6px 0 8px;
  color: var(--ink);
}
.journey-step .js-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}

@media (max-width: 800px) {
  .turismo-intro { padding: 80px 0 48px; }
  .turismo-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .turismo-journey { padding: 64px 0 80px; }
  .journey-head { margin-bottom: 48px; }
  .journey-step {
    grid-template-columns: 56px 1px 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .journey-step:not(:last-child)::after { left: 55px; top: 56px; }
  .journey-step .js-n { font-size: 28px; }
  .journey-step .js-n::after { top: 8px; width: 6px; height: 6px; }
}

/* ===== Contact — Editorial single form ===== */
.contact-sec { padding: 120px 0; }
.contact-sec .section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: 1000px;
  margin: 0 auto 72px;
}
.contact-sec .section-head p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 44ch;
  margin: 0;
}
.contact-single {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-head h3 { margin: 0; font-size: 28px; }
.contact-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
}

.contact-form { display: grid; gap: 20px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label { display: grid; gap: 8px; }
.contact-form label span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 0 12px;
  transition: border-color .2s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-bottom-color: var(--primary);
}
.contact-form textarea { min-height: 96px; border: 1px solid var(--line); padding: 12px 14px; border-radius: var(--radius); }
.contact-form textarea:focus { border-color: var(--primary); }
.contact-form select { cursor: pointer; appearance: none; 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='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.contact-info-aside {
  display: grid;
  gap: 28px;
  padding: 8px 0;
}
.info-block .info-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 8px;
}
.info-block .info-value {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.info-block + .info-block {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.info-doctoralia {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 4px;
}
.info-doctoralia:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 900px) {
  .contact-sec { padding: 80px 0; }
  .contact-sec .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .contact-single { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { padding: 32px 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ===== Footer 3-col ===== */
.foot-grid-3 { grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 700px) {
  .foot-grid-3 { grid-template-columns: 1fr; }
}

/* ===== Mobile nav panel ===== */
.nav-mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--bg);
  z-index: 200;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 36px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.1);
}
.nav-mobile-panel.open { transform: translateX(0); }
.nav-mobile-header {
  display: flex; justify-content: space-between; align-items: center;
}
.nav-mobile-close {
  width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  background: none; cursor: pointer;
}
.nav-mobile-close svg { width: 18px; height: 18px; }
.nav-mobile-links {
  display: flex; flex-direction: column; gap: 8px;
}
.nav-mobile-links a {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s;
}
.nav-mobile-links a:hover { color: var(--primary); }
.nav-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Scroll reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ===== Sticky CTA mobile ===== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-phone {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 960px) {
  .sticky-cta { display: flex; }
  .wa-fab { bottom: 76px; }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 15, 30, .92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  background: rgba(0,0,0,.3); color: white;
  display: grid; place-items: center;
  cursor: pointer; z-index: 301;
  transition: border-color .2s;
}
.lightbox-close:hover { border-color: rgba(255,255,255,.5); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-caption {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
