/* Dr. Contras — premium editorial design system */

:root {
  /* D · Clinical editorial — warm light base, brand red as punctuation,
     dark ink register for page heroes / testimonial / closing CTA */
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --surface-alt: #EFECE5;
  --ink: #16181A;
  --ink-soft: #2C2E30;
  --muted: #6E7173;
  --hairline: #DEDAD1;
  --accent: #BE2A21;     /* logo red, deepened for text contrast */
  --accent-soft: #A02019;
  --accent-on-dark: #E2574D; /* red lifted for dark backgrounds */
  --ivory: #F7F5F0;          /* text on dark bands */
  --gold: #BE2A21;
  --gold-soft: #A8A296;  /* warm gray for footer headers */
  --rose: #C99A92;
  --clay: #7D6257;
  --danger: #8B3A2F;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 3px rgba(22,24,26,.08);
  --shadow: 0 18px 50px -20px rgba(22,24,26,.25), 0 4px 12px -6px rgba(22,24,26,.08);

  --max: 1240px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Typography */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.2; letter-spacing: 0; }
h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; margin: 0; }

p { margin: 0 0 1rem; color: var(--ink-soft); }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: inline-block;
}

.italic-serif { font-style: italic; font-family: var(--font-display); }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(60px, 9vw, 130px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .cols-3.keep-2 { grid-template-columns: 1fr 1fr; }
}

/* Header */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(250, 246, 238, .82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--hairline); }
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 30px; width: auto; display: block; }
.brand-light img { filter: brightness(0) invert(1); opacity: .94; }
@media (max-width: 480px) { .brand img { height: 26px; } }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .92rem; color: var(--ink-soft); position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
}

.nav-right { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: inline-flex; border: 1px solid var(--hairline);
  border-radius: 999px; padding: 3px; background: var(--surface);
}
.lang-toggle button {
  border: none; background: transparent; padding: 5px 12px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); border-radius: 999px;
  opacity: .55; transition: opacity .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.lang-toggle button:hover { opacity: 1; }
.lang-toggle button.active { background: var(--ink); color: var(--bg); opacity: 1; }

.mobile-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .mobile-toggle {
    display: inline-flex; background: transparent; border: 1px solid var(--hairline);
    width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center;
  }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 24px 28px 32px; border-bottom: 1px solid var(--hairline);
    gap: 18px; align-items: flex-start;
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-size: .9rem; font-weight: 500; letter-spacing: .01em;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost {
  color: var(--ink);
  border-color: var(--hairline);
  background: transparent;
}
.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-arrow::after {
  content: "→"; transition: transform .25s var(--ease);
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  padding: clamp(48px, 8vw, 110px) 0 clamp(60px, 10vw, 140px);
  position: relative;
}
.hero.container { padding-left: 28px; padding-right: 28px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 .accent { font-style: italic; color: var(--accent); }
.hero .lead { margin-top: 28px; }
.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hero-meta .stat-num {
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 0;
  display: block; color: var(--ink);
}
.hero-meta .stat-label { font-size: .78rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

.hero-image {
  position: relative; aspect-ratio: 5/6;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface-alt);
  box-shadow: var(--shadow);
}
.hero-image > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.doctor-image > img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); position: absolute; inset: 0; }
.gallery-item:hover > img { transform: scale(1.04); }
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,31,27,.32));
  pointer-events: none;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; left: -22px; bottom: 36px;
  background: var(--bg); padding: 18px 22px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px; z-index: 2;
  border: 1px solid var(--hairline);
}
.hero-badge .num { font-family: var(--font-display); font-size: 2rem; color: var(--accent); }
.hero-badge .lbl { font-size: .78rem; color: var(--muted); max-width: 130px; line-height: 1.3; }

/* Section header */
.sh { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; }
.sh-text { max-width: 640px; }
.sh h2 { margin-top: 14px; }
.sh .lead { margin-top: 18px; }
@media (max-width: 760px) { .sh { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* Service cards */
.service-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all .35s var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card .num {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 1rem; margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .96rem; }
.service-card .link {
  margin-top: 28px; color: var(--accent); font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px; font-weight: 500;
}
.service-card .link::after { content: "→"; transition: transform .25s var(--ease); }
.service-card:hover .link::after { transform: translateX(5px); }
.service-card .img-wrap {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-alt); margin-bottom: 28px;
}
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .img-wrap img { transform: scale(1.04); }

/* Approach / process */
.process { background: var(--surface-alt); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  padding: 32px 28px 32px 0;
  border-top: 1px solid var(--ink);
  position: relative;
}
.step .step-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: var(--accent); margin-bottom: 24px;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: .92rem; margin: 0; }

/* Quote / testimonial */
.quote-section { background: var(--accent); color: var(--bg); }
.quote-section .quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3; max-width: 28ch; color: var(--bg);
  margin: 0 auto; text-align: center;
}
.quote-section .quote::before, .quote-section .quote::after { color: var(--gold-soft); }
.quote-section .quote::before { content: "\201C"; }
.quote-section .quote::after { content: "\201D"; }
.quote-section .attr { text-align: center; margin-top: 28px; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }

/* Doctor / about */
.doctor-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .doctor-grid { grid-template-columns: 1fr; gap: 40px; } }
.doctor-image {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface-alt); position: relative;
}
.doctor-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(45,74,62,.2));
}
.doctor-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.doctor-meta .label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.doctor-meta .val { font-family: var(--font-display); font-size: 1.1rem; }

.credentials { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.credentials li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.credentials li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 10px; flex-shrink: 0; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gallery { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--radius); background: var(--surface-alt);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .ba {
  position: absolute; top: 14px; left: 14px;
  background: rgba(250,246,238,.94); color: var(--ink);
  padding: 6px 12px; border-radius: 999px;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
}
.gallery-item .meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(26,31,27,.75));
  color: var(--bg);
}
.gallery-item .meta .t { font-family: var(--font-display); font-size: 1.05rem; }
.gallery-item .meta .s { font-size: .8rem; opacity: .8; margin-top: 2px; }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 32px 0; background: var(--bg); }
.trust-strip .trust-inner { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.trust-strip .trust-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); line-height: 1.4; max-width: 16ch;
}
.trust-strip .trust-marks {
  display: flex; flex-wrap: wrap; gap: 40px 56px; align-items: center;
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em;
  color: var(--ink-soft); opacity: .72;
}
.trust-strip .trust-marks span { white-space: nowrap; }
@media (max-width: 760px) {
  .trust-strip .trust-inner { grid-template-columns: 1fr; gap: 20px; }
  .trust-strip .trust-marks { gap: 24px 32px; font-size: 1rem; }
}

/* Patient testimonial */
.testimonial { background: var(--accent); color: var(--bg); padding: clamp(60px, 9vw, 120px) 0; }
.testimonial .t-grid { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center; }
@media (max-width: 760px) { .testimonial .t-grid { grid-template-columns: 1fr; gap: 32px; } }
.testimonial .t-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(143,163,156,.5), transparent 60%),
    linear-gradient(180deg, rgba(20,71,61,.4), rgba(20,24,26,.4));
  position: relative;
}
.testimonial .t-photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial .t-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 24px;
}
.testimonial .t-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.45;
  max-width: 36ch; color: var(--bg); margin: 0 0 32px;
}
.testimonial .t-quote::before { content: "\201C"; color: var(--gold-soft); margin-right: 4px; }
.testimonial .t-quote::after  { content: "\201D"; color: var(--gold-soft); margin-left: 4px; }
.testimonial .t-meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding-top: 24px; border-top: 1px solid rgba(246,244,239,.18);
}
.testimonial .t-meta div { display: grid; gap: 4px; }
.testimonial .t-meta .k { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.testimonial .t-meta .v { font-family: var(--font-display); font-size: 1.05rem; color: var(--bg); }

/* Before / after case grid (square composites, no crop) */
.ba-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .ba-cases { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ba-cases { grid-template-columns: 1fr; } }
.ba-cases figure { margin: 0; }
.ba-cases img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--hairline);
  background: var(--surface-alt);
}
.ba-cases figcaption {
  margin-top: 12px; font-size: .85rem; color: var(--muted);
  font-family: var(--font-body); letter-spacing: .01em;
}

/* Before / after feature block */
.ba-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; margin-bottom: 64px; }
@media (max-width: 900px) { .ba-feature { grid-template-columns: 1fr; gap: 32px; } }

/* Before / after slider */
.ba-slider {
  --reveal: 50%;
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; border-radius: var(--radius);
  background: var(--surface-alt);
  user-select: none; touch-action: pan-y;
  cursor: ew-resize;
}
.ba-slider .ba-layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-position: center; background-size: cover;
  background-repeat: no-repeat;
}
.ba-slider .ba-layer.after {
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}
.ba-slider .ba-tag {
  position: absolute; top: 14px;
  padding: 6px 12px; border-radius: 999px;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(20,24,26,.78); color: var(--bg);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-slider .ba-tag.before { left: 14px; }
.ba-slider .ba-tag.after  { right: 14px; background: rgba(246,244,239,.92); color: var(--ink); }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--reveal); width: 2px;
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(20,24,26,.08), 0 4px 14px rgba(20,24,26,.25);
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-slider .ba-handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 6px 18px rgba(20,24,26,.22), 0 0 0 1px rgba(20,24,26,.08);
  transform: translate(-50%, -50%);
}
.ba-slider .ba-handle::before {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%;
  font-size: .85rem; letter-spacing: .1em; color: var(--ink);
  transform: translate(-50%, -50%); z-index: 2;
  font-family: var(--font-body); font-weight: 500;
}
.ba-slider input[type="range"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-slider input[type="range"]:focus-visible + .ba-handle::after {
  box-shadow: 0 0 0 3px var(--accent), 0 6px 18px rgba(20,24,26,.22);
}

/* FAQ */
.faq-item {
  border-top: 1px solid var(--hairline);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q h4 { font-family: var(--font-display); font-size: clamp(1.1rem, 1.6vw, 1.4rem); font-weight: 400; }
.faq-q .toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  font-size: 1.1rem; flex-shrink: 0;
  transition: all .3s var(--ease);
}
details[open] .toggle { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: rotate(45deg); }
.faq-a { padding-top: 18px; max-width: 70ch; }

/* Contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info { display: grid; gap: 28px; align-content: start; }
.info-block .label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.info-block .val { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.3; }
.info-block .val a:hover { color: var(--accent); }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: transparent; border: none; border-bottom: 1px solid var(--hairline);
  padding: 10px 0; font: inherit; color: var(--ink);
  font-size: 1rem;
  transition: border-color .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* Footer */
.footer {
  background: var(--ink); color: var(--bg); padding: 80px 0 32px;
  margin-top: 60px;
}
.footer a:hover { color: var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.footer h5 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul li { font-size: .92rem; color: rgba(250,246,238,.78); }
.footer-brand p { color: rgba(250,246,238,.7); margin-top: 18px; max-width: 32ch; font-size: .92rem; }
.footer .brand img { height: 34px; }
.footer-bottom {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(250,246,238,.12);
  display: flex; justify-content: space-between; font-size: .82rem; color: rgba(250,246,238,.6);
  flex-wrap: wrap; gap: 16px;
}

/* Page hero */
.page-hero { padding: clamp(60px, 9vw, 130px) 0 clamp(40px, 6vw, 80px); }
.page-hero .crumb {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: .78rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 28px;
}
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin-top: 28px; max-width: 56ch; }

/* Detail content */
.detail { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; gap: 40px; } }
.detail aside { position: sticky; top: 110px; align-self: start; }
.detail aside .card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: 32px;
}
.detail aside h4 { margin-bottom: 18px; font-size: 1.05rem; }
.detail aside ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; font-size: .92rem; }
.detail aside ul li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.detail aside ul li:last-child { border-bottom: none; padding-bottom: 0; }
.detail aside .label { color: var(--muted); font-size: .82rem; }

.detail .content h2 { margin-bottom: 18px; }
.detail .content h3 { margin: 48px 0 14px; }
.detail .content p { font-size: 1.02rem; line-height: 1.7; max-width: 62ch; }
.detail .content figure { margin: 40px 0; }
.detail .content figure img { border-radius: var(--radius); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.detail .content figcaption { color: var(--muted); font-size: .85rem; margin-top: 12px; font-style: italic; font-family: var(--font-display); }

/* Inline pill list */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 8px 16px; font-size: .85rem;
  color: var(--ink-soft);
}

/* Util */
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.divider { height: 1px; background: var(--hairline); border: none; margin: 60px 0; }
[data-en], [data-ro] { display: inline; }
html[data-lang="ro"] [data-en] { display: none !important; }
html[data-lang="en"] [data-ro] { display: none !important; }

/* CTA strip */
.cta-strip {
  padding: clamp(60px, 8vw, 110px) 0;
  background: linear-gradient(135deg, var(--surface-alt), var(--bg));
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cta-strip .inner {
  display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center;
}
@media (max-width: 800px) { .cta-strip .inner { grid-template-columns: 1fr; } }
.cta-strip h2 { max-width: 18ch; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: all .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Soft placeholder images (gradients) */
.ph {
  background:
    radial-gradient(circle at 30% 20%, rgba(168,137,90,.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45,74,62,.45), transparent 50%),
    linear-gradient(135deg, #C9B591, #6B5B47);
}
.ph-2 {
  background:
    radial-gradient(circle at 70% 30%, rgba(201,181,145,.6), transparent 55%),
    linear-gradient(135deg, #2D4A3E, #1A1F1B);
}
.ph-3 {
  background:
    radial-gradient(circle at 30% 70%, rgba(168,137,90,.5), transparent 50%),
    linear-gradient(135deg, #F2ECDF, #C9B591);
}
.ph-portrait {
  background:
    radial-gradient(circle at 50% 30%, rgba(201,181,145,.7), transparent 60%),
    linear-gradient(180deg, #6B5B47, #2D332E);
}

/* Boutique redesign layer */
.hero-boutique {
  padding-top: clamp(42px, 7vw, 92px);
  padding-bottom: clamp(48px, 8vw, 110px);
}
.hero-boutique .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); }
.hero-boutique h1 { max-width: 11ch; }
.hero-boutique .lead { max-width: 52ch; }
.hero-copy { display: grid; align-content: center; }
.hero-note {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hero-note div { padding: 18px 18px 18px 0; }
.hero-note div + div { border-left: 1px solid var(--hairline); padding-left: 18px; }
.hero-note .k {
  display: block;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.hero-note .v {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink);
}
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-stack { position: relative; display: grid; gap: 14px; }
.hero-image-stack .hero-image { aspect-ratio: 1/1.08; }
.hero-image-stack .hero-image > img {
  object-position: center 34%;
  transform: scale(1.45);
  transform-origin: center top;
}
.hero-mini-card {
  position: absolute;
  left: -28px;
  bottom: 26px;
  width: min(300px, calc(100% - 28px));
  background: rgba(255,255,255,.92);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-mini-card .label,
.proof-card .label,
.contact-option .label {
  display: block;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero-mini-card strong { display: block; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.15; font-weight: 400; }
.hero-mini-card p { font-size: .88rem; margin: 8px 0 0; }

.proof-band {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
}
.proof-card {
  background: var(--surface);
  padding: clamp(22px, 3vw, 34px);
  min-height: 156px;
}
.proof-card h3 { font-size: clamp(1.15rem, 1.8vw, 1.55rem); margin-bottom: 10px; }
.proof-card p { font-size: .92rem; margin: 0; }
.proof-card.intro { background: var(--accent); color: var(--bg); }
.proof-card.intro h3,
.proof-card.intro p { color: var(--bg); }
.proof-card.intro .label { color: var(--gold-soft); }

.service-card.featured { background: var(--ink); color: var(--bg); }
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .num { color: var(--bg); }
.service-card.featured .link { color: var(--gold-soft); }
.service-card .micro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.service-card .micro-list span {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: .78rem;
}
.service-card.featured .micro-list span {
  border-color: rgba(247,244,239,.22);
  color: rgba(247,244,239,.76);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.journey-step {
  background: var(--bg);
  padding: 28px;
  min-height: 210px;
}
.journey-step .num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 18px;
}
.journey-step p { font-size: .92rem; margin: 10px 0 0; }

.concierge-strip {
  padding: clamp(54px, 8vw, 96px) 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.concierge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
  gap: 48px;
  align-items: center;
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contact-option {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: var(--bg);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-option:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-option strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  display: block;
  line-height: 1.2;
}
.contact-option span:last-child { color: var(--muted); font-size: .86rem; margin-top: 16px; }
.contact-option.primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.contact-option.primary .label,
.contact-option.primary span:last-child { color: rgba(247,244,239,.76); }

.case-study-note {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}
.case-study-note .text-box {
  padding: clamp(26px, 4vw, 46px);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
}
.gallery-item[hidden] { display: none; }

.remote-panel {
  margin-top: 36px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
}
.remote-panel h3 { margin-bottom: 10px; }
.remote-panel .hero-actions { margin-top: 18px; }

@media (max-width: 980px) {
  .hero-boutique .hero-grid,
  .concierge-grid,
  .case-study-note { grid-template-columns: 1fr; }
  .hero-mini-card { position: static; width: auto; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .contact-options { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav-inner { padding: 16px 18px; }
  .nav-right { gap: 10px; }
  .nav-right > .btn { display: none; }
  .hero.container { padding-left: 18px; padding-right: 18px; }
  .hero-note,
  .proof-grid,
  .journey-grid { grid-template-columns: 1fr; }
  .hero-note div + div { border-left: none; border-top: 1px solid var(--hairline); padding-left: 0; }
  .hero-note div { padding-right: 0; }
  .service-card { padding: 28px; }
}

/* ============================================================
   D · Clinical editorial layer (site-wide)
   Chosen direction from the redesign prototype: exposed grids
   and numbered sections, brand red as punctuation, dark ink
   register reserved for page heroes, the testimonial and the
   closing CTA. Fraunces survives in display headlines only.
   ============================================================ */

/* --- type: Fraunces for display (h1/h2) only, Inter below --- */
h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variation-settings: normal;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5.4rem); }
.eyebrow { color: var(--muted); letter-spacing: .22em; }
.eyebrow::before { display: none; }

/* numbered sections — red counters */
body { counter-reset: sec; }
.section { counter-increment: sec; }
.section .sh .eyebrow::before {
  content: counter(sec, decimal-leading-zero) " — ";
  display: inline;
  width: auto; height: auto; background: none;
  color: var(--accent);
  font-weight: 600;
}

/* --- nav: red as active state only --- */
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.active::after { background: var(--accent); }
.btn-primary:hover { background: var(--accent); }
.lang-toggle button.active { background: var(--ink); color: var(--bg); }

/* --- shared dark-band vocabulary --- */
.page-hero {
  max-width: none; margin: 0;
  background: var(--ink);
  padding: clamp(48px, 7vw, 100px) max(28px, calc((100% - var(--max)) / 2)) clamp(48px, 7vw, 90px);
}
.page-hero .crumb { color: rgba(247,245,240,.5); }
.page-hero .crumb a:hover { color: var(--accent-on-dark); }
.page-hero .eyebrow { color: rgba(247,245,240,.55); }
.page-hero h1 { color: var(--ivory); }
.page-hero .lead { color: rgba(247,245,240,.78); }
.page-hero .text-accent { color: var(--accent-on-dark); }

/* --- homepage hero: full-width dark band --- */
.hero-boutique {
  max-width: none;
  background: var(--ink);
  padding-left: 28px; padding-right: 28px;
  padding-bottom: clamp(56px, 8vw, 110px);
}
.hero-boutique .hero-grid { max-width: var(--max); margin: 0 auto; }
.hero-boutique .eyebrow { color: rgba(247,245,240,.55); }
.hero-boutique h1 { color: var(--ivory); }
.hero h1 .accent { color: var(--accent-on-dark); }
.hero-boutique .lead { color: rgba(247,245,240,.78); }
.hero-note { border-top-color: rgba(247,245,240,.16); border-bottom-color: rgba(247,245,240,.16); }
.hero-note div + div { border-left-color: rgba(247,245,240,.16); }
.hero-note .k { color: var(--accent-on-dark); }
.hero-note .v { color: var(--ivory); }
.hero-boutique .btn-primary { background: var(--ivory); color: var(--ink); }
.hero-boutique .btn-primary:hover { background: var(--accent-on-dark); color: #fff; }
.hero-boutique .btn-ghost { color: var(--ivory); border: 1px solid rgba(247,245,240,.32); }
.hero-boutique .btn-ghost:hover { border-color: var(--ivory); color: var(--ivory); }
.hero-image { box-shadow: none; border: 1px solid rgba(247,245,240,.14); }
/* cover.png is a 1702x630 promo banner with burned-in text along the
   bottom — frame the doctor and zoom the text band out of the crop */
.hero-image-stack .hero-image { aspect-ratio: 4 / 3; }
.hero-image-stack .hero-image > img {
  object-position: 38% 0;
  transform: scale(1.4);
  transform-origin: 50% 0;
}

/* --- proof band: exposed 1px ink grid --- */
.proof-band { border: none; background: var(--bg); }
.proof-grid { background: var(--ink); padding: 0; gap: 1px; }
.proof-card { background: var(--bg); }
.proof-card .label { color: var(--accent); font-weight: 600; }
.proof-card.intro { background: var(--ink); }
.proof-card.intro h3, .proof-card.intro p { color: var(--ivory); }
.proof-card.intro .label { color: var(--accent-on-dark); }

/* --- services: editorial rows on the homepage --- */
#servicii .grid.cols-2 { grid-template-columns: 1fr; gap: 0; }
#servicii .service-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-rows: auto auto auto auto 1fr;
  column-gap: 56px;
  border: none; border-top: 1px solid var(--ink); border-radius: 0;
  background: transparent;
  padding: 48px 0;
}
#servicii .service-card:hover { transform: none; box-shadow: none; }
#servicii .service-card .img-wrap { grid-column: 1; grid-row: 1 / span 5; margin: 0; }
#servicii .service-card .num, #servicii .service-card h3, #servicii .service-card p,
#servicii .service-card .micro-list, #servicii .service-card .link { grid-column: 2; }
.service-card .num {
  font-style: normal; font-family: var(--font-body);
  font-size: .72rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--accent); font-weight: 600;
}
.service-card .link { color: var(--accent); margin-top: 20px; }
.service-card.featured { background: transparent; color: var(--ink); }
.service-card.featured h3 { color: var(--ink); }
.service-card.featured p { color: var(--ink-soft); }
.service-card.featured .num, .service-card.featured .link { color: var(--accent); }
.service-card .micro-list span,
.service-card.featured .micro-list span {
  border-color: var(--hairline); color: var(--muted);
}
@media (max-width: 760px) {
  #servicii .service-card { grid-template-columns: 1fr; grid-template-rows: auto; }
  #servicii .service-card .img-wrap { grid-row: auto; margin-bottom: 24px; }
  #servicii .service-card .num, #servicii .service-card h3, #servicii .service-card p,
  #servicii .service-card .micro-list, #servicii .service-card .link { grid-column: 1; }
}

/* --- process / credentials --- */
.step .step-num { color: var(--accent); }
.credentials li::before { background: var(--accent); }

/* --- testimonial: the second dark beat --- */
.testimonial { background: var(--ink); }
.testimonial .t-label { color: var(--accent-on-dark); }
.testimonial .t-quote { color: var(--ivory); }
.testimonial .t-quote::before, .testimonial .t-quote::after { color: var(--accent-on-dark); }
.testimonial .t-meta { border-top-color: rgba(247,245,240,.18); }
.testimonial .t-meta .k { color: var(--accent-on-dark); }
.testimonial .t-meta .v { color: var(--ivory); }

/* --- gallery: hairline grid, photos stay in color --- */
.gallery { gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.gallery-item { border-radius: 0; }
.gallery-item .ba { border-radius: 0; }

/* --- detail pages: red spec keys, quiet cards --- */
.detail aside .label { color: var(--accent); font-weight: 600; font-size: .78rem; letter-spacing: .04em; }

/* --- concierge / contact options --- */
.contact-option:hover { border-color: var(--accent); }
.contact-option.primary { background: var(--ink); border-color: var(--ink); }
.contact-option.primary .label { color: var(--accent-on-dark); }

/* --- closing CTA: dark band --- */
.cta-strip { background: var(--ink); border: none; }
.cta-strip h2 { color: var(--ivory); }
.cta-strip .italic-serif, .cta-strip .text-accent { color: var(--accent-on-dark); }
.cta-strip .btn-primary { background: var(--ivory); color: var(--ink); }
.cta-strip .btn-primary:hover { background: var(--accent-on-dark); color: #fff; }

/* --- footer --- */
.footer { background: #101214; }
.footer a:hover { color: var(--accent-on-dark); }
