:root {
  --bg: #FAFAF8;
  --bg-warm: #F3EFE7;
  --bg-tan: #EFE6D2;
  --bg-tan-soft: #F5EEDC;
  --ink: #1C1C1A;
  --ink-soft: #4A4A45;
  --ink-mute: #8A867E;
  --line: #E7E3D9;
  --line-warm: #DCD3BD;
  --teal: #0D9E75;
  --teal-deep: #0B8A66;
  --teal-tint: #E8F4EF;
  --amber: #F5A623;
  --amber-deep: #E59311;
  --shadow-sm: 0 1px 2px rgba(60, 45, 20, 0.04), 0 2px 8px rgba(60, 45, 20, 0.04);
  --shadow-md: 0 2px 6px rgba(60, 45, 20, 0.05), 0 12px 28px rgba(60, 45, 20, 0.08);
  --shadow-lg: 0 4px 12px rgba(60, 45, 20, 0.06), 0 24px 56px rgba(60, 45, 20, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  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-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.serif { font-family: "DM Serif Display", "Times New Roman", serif; font-weight: 400; letter-spacing: -0.01em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform .3s ease;
}
.logo:hover img { transform: scale(1.04) rotate(-1deg); }
.nav-links {
  display: flex;
  gap: 34px;
  justify-self: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .15s ease, background-color .2s, box-shadow .2s, color .2s, border-color .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 16px rgba(13, 158, 117, 0.25);
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-amber {
  background: var(--amber);
  color: #1C1C1A;
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 6px 16px rgba(245, 166, 35, 0.3);
}
.btn-amber:hover { background: var(--amber-deep); transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 11px 21px;
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-lg { font-size: 16px; padding: 16px 28px; }

.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  padding: 132px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,158,117,0.06), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--teal);
}
h1.hero-title {
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}
h1.hero-title em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.55;
  margin: 0 0 36px;
}
.hero-sub b { font-weight: 600; color: var(--ink); }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-pills b { font-weight: 600; color: var(--ink); }
.trust-pills .sep { color: var(--line); }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  min-width: 0;
}
.hero-image-frame {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  left: -28px; bottom: 36px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 290px;
  animation: floatA 5.5s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 30px rgba(60, 45, 20, 0.16);
  animation-play-state: paused;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-8px) rotate(-0.4deg); }
}
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card-text { font-size: 14px; line-height: 1.4; color: var(--ink-soft); }
.hero-card-text b { display: block; color: var(--ink); font-weight: 600; font-size: 15px; margin-bottom: 2px; }

.hero-rating {
  position: absolute;
  right: -20px; top: 50px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: floatB 6s ease-in-out infinite;
  animation-delay: -1.5s;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-rating:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 30px rgba(60, 45, 20, 0.16);
  animation-play-state: paused;
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-10px) rotate(0.6deg); }
}
.hero-rating-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.hero-rating b { display: block; font-family: "DM Serif Display", serif; font-size: 28px; line-height: 1; margin-top: 4px; }
.hero-rating small { color: var(--ink-mute); font-size: 12px; }

/* ============ SECTION SHARED ============ */
section { padding: 110px 0; }
.sec-head {
  text-align: center;
  margin-bottom: 64px;
}
.sec-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 16px 0 14px;
  letter-spacing: -0.02em;
}
.sec-head p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.sec-eyebrow::before, .sec-eyebrow::after {
  content: "";
  width: 24px; height: 1.5px;
  background: var(--teal);
  opacity: .5;
}

/* ============ CONDITIONS ============ */
.conditions { background: var(--bg-tan-soft); }
.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cond-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 26px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s, background-color .35s;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(60,45,20,0.03);
}
.cond-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cond-plus {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-tan-soft);
  color: var(--ink);
  display: grid; place-items: center;
  margin-bottom: 30px;
  transition: background-color .3s, color .3s, transform .35s ease;
}
.cond-plus svg { transition: transform .35s ease; }
.cond-card:hover .cond-plus { background: var(--teal); color: #fff; }
.cond-card:hover .cond-plus svg { transform: rotate(90deg); }
.cond-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.cond-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.55;
}
.cond-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.cond-card:hover .cond-link { gap: 12px; }

/* ============ SOCIAL PROOF ============ */
.social {
  background: var(--bg-warm);
  overflow: hidden;
}
.rating-big {
  text-align: center;
  margin-bottom: 56px;
}
.rating-big-num {
  font-family: "DM Serif Display", serif;
  font-size: 86px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.rating-big-stars {
  color: var(--amber);
  font-size: 28px;
  letter-spacing: 4px;
  margin: 12px 0 8px;
}
.rating-big-meta {
  color: var(--ink-soft);
  font-size: 15px;
}
.rating-big-meta b { font-weight: 600; color: var(--ink); }

.reviews-marquee {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  margin: 0 -28px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.review-row {
  display: flex;
  overflow: hidden;
}
.review-track {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
  padding-right: 18px;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.review-row:hover .review-track { animation-play-state: paused; }
.review-row.dir-left .review-track  { animation-name: scrollLeft;  }
.review-row.dir-right .review-track { animation-name: scrollRight; }
.review-row.fast .review-track { animation-duration: 50s; }
.review-row.slow .review-track { animation-duration: 75s; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 360px;
  flex-shrink: 0;
  transition: transform .25s, box-shadow .25s;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 15px;
}
.review-author b { font-weight: 600; font-size: 15px; display: block; }
.review-author small { color: var(--ink-mute); font-size: 13px; }
.review-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.review p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.review-badge {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-mute);
}
.google-g {
  width: 14px; height: 14px;
  display: inline-block;
  background: conic-gradient(from -45deg, #4285F4 0 25%, #34A853 0 50%, #FBBC04 0 75%, #EA4335 0 100%);
  border-radius: 50%;
  position: relative;
}
.google-g::after { content: ""; position: absolute; inset: 3px; background: #fff; border-radius: 50%; }

/* ============ STATS ============ */
.stats {
  background: var(--teal);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.stat {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: rgba(255,255,255,0.18);
}
.stat-num {
  font-family: "DM Serif Display", serif;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 15px;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.doc {
  background: #fff;
  border-radius: 20px;
  padding: 36px 26px 30px;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s, border-color .35s;
}
.doc::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 90px;
  background: linear-gradient(180deg, var(--teal-tint), transparent);
  pointer-events: none;
  transition: height .4s ease, background .35s ease;
}
.doc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.doc:hover::before { height: 130px; }
.doc-monogram {
  position: relative;
  width: 96px; height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--teal);
  display: grid; place-items: center;
  font-family: "DM Serif Display", serif;
  font-size: 38px;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
  transition: transform .35s ease, box-shadow .35s;
}
.doc:hover .doc-monogram {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(13, 158, 117, 0.18);
}
.doc-monogram::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--teal);
  opacity: 0.35;
}
.doc h3 {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  position: relative;
}
.doc-title {
  color: var(--teal);
  font-size: 13.5px;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  position: relative;
}
.doc-rule {
  width: 32px;
  height: 1px;
  background: var(--line-warm);
  margin: 0 auto 14px;
  position: relative;
}
.doc-uni {
  color: var(--ink-mute);
  font-size: 13px;
  margin: 0 0 18px;
  line-height: 1.5;
  position: relative;
}
.doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  position: relative;
}
.doc-tags span {
  background: var(--bg-tan-soft);
  color: var(--ink-soft);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  transition: background .25s, color .25s;
}
.doc:hover .doc-tags span { background: var(--teal-tint); color: var(--teal-deep); }

/* ============ PROCEDURES ============ */
.procedures { background: var(--bg-warm); }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proc {
  background: #fff;
  border-radius: 18px;
  padding: 32px 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.proc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.proc-num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: "DM Serif Display", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--line-warm);
  letter-spacing: -0.04em;
  transition: color .35s ease, transform .35s ease;
}
.proc:hover .proc-num { color: var(--teal); transform: translateY(-2px); }
.proc-tech {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.proc h3 {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  padding-right: 50px;
}
.proc p {
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.55;
  font-size: 14.5px;
}
.proc-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-warm);
  margin-bottom: 16px;
  font-size: 12.5px;
  color: var(--ink-mute);
}
.proc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.proc-meta b { color: var(--ink-soft); font-weight: 600; }
.proc-meta-dot {
  width: 3px; height: 3px;
  background: var(--line-warm);
  border-radius: 50%;
}
.proc-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--teal);
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.proc:hover .proc-link { gap: 12px; }

/* ============ FAQ ============ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .2s;
}
.faq-q:hover { color: var(--teal); }
.faq-toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  position: relative;
  transition: background .25s, color .25s, border-color .25s, transform .3s;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: opacity .3s;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }
.faq-item.open .faq-toggle {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.faq-item.open .faq-toggle::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
}

/* ============ BOOKING ============ */
.booking {
  background: var(--bg-warm);
  position: relative;
}
.book-grid-outer {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.book-left .sec-eyebrow {
  color: #B47843;
  margin-bottom: 26px;
}
.book-left .sec-eyebrow::before { background: #B47843; opacity: .7; }
.book-left .sec-eyebrow::after { display: none; }
.book-left h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}
.book-left > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 36px;
}
.book-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0; margin: 0;
}
.book-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.book-bullets b { color: var(--ink); font-weight: 600; }
.book-bullet-icon {
  width: 22px; height: 22px;
  color: #B47843;
  flex-shrink: 0;
  margin-top: 1px;
}
.book-card {
  background: #fff;
  border-radius: 22px;
  padding: 44px 44px 40px;
  box-shadow: 0 4px 12px rgba(60, 45, 20, 0.06), 0 24px 48px rgba(60, 45, 20, 0.10);
  transition: transform .3s ease, box-shadow .3s ease;
}
.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(60, 45, 20, 0.08), 0 30px 60px rgba(60, 45, 20, 0.14);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.book-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-warm);
  background: var(--bg-tan-soft);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: #A8A294; }
.field textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #B47843;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(180, 120, 67, 0.12);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C1C1A' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.book-submit {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  padding: 20px;
  font-size: 17px;
  background: #B47843;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 20px rgba(180, 120, 67, 0.32);
}
.book-submit:hover { background: #9A6536; transform: translateY(-1px); }
.book-fineprint {
  text-align: center;
  margin: 18px 0 0;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.book-fineprint a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }

/* ============ WHATSAPP ============ */
.wa {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 40;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  display: grid; place-items: center;
  color: #fff;
  transition: transform .2s, box-shadow .2s;
}
.wa:hover { transform: scale(1.06); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
.wa svg { width: 32px; height: 32px; }
.wa-tip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.wa:hover .wa-tip { opacity: 1; transform: translateY(-50%) translateX(-4px); }

/* ============ FOOTER ============ */
footer {
  background: var(--bg);
  color: var(--ink-soft);
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.foot-brand .logo { color: var(--ink); }
.foot-tag {
  color: var(--ink-soft);
  margin: 18px 0 0;
  line-height: 1.6;
  max-width: 320px;
  font-size: 15px;
}
.foot-col h4 {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.foot-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.foot-col a {
  color: var(--ink-soft);
  transition: color .2s, transform .2s;
  display: inline-block;
}
.foot-col a:hover { color: var(--teal); transform: translateX(3px); }
.foot-loc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.foot-loc b { color: var(--ink); font-weight: 600; font-size: 14px; }
.foot-loc small { color: var(--ink-mute); font-size: 13px; }
.foot-loc:hover b { color: var(--teal); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-mute);
}
.foot-bottom .heart { color: #E26B6B; }
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.foot-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--ink-soft);
  display: grid; place-items: center;
  transition: background .25s, color .25s, transform .25s;
}
.foot-social a:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}
.foot-social svg { width: 16px; height: 16px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,158,117,0.07), transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.03;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.page-hero p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

/* ============ LOCATION CARDS (contact) ============ */
.locations-section { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--teal);
  opacity: 0;
  transition: opacity .3s;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.location-card:hover::before { opacity: 1; }
.location-card.highlight {
  border-color: var(--teal);
}
.location-card.highlight::before { opacity: 1; }
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-tint);
  color: var(--teal-deep);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.location-name {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.location-row svg {
  width: 18px; height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-row a {
  color: var(--teal);
  font-weight: 600;
  transition: color .2s;
}
.location-row a:hover { color: var(--teal-deep); }

/* ============ TIMELINE (despre noi) ============ */
.timeline-section { background: var(--bg); overflow: hidden; }
.timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--teal-tint));
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0 28px;
  margin-bottom: 64px;
  align-items: start;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  transition: transform .3s, box-shadow .3s;
}
.tl-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tl-item.right .tl-content { grid-column: 3; }
.tl-item.left .tl-content { grid-column: 1; grid-row: 1; }
.tl-item.right .tl-placeholder { grid-column: 1; grid-row: 1; }
.tl-placeholder { display: block; }
.tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid; place-items: center;
  font-family: "DM Serif Display", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(13,158,117,0.3);
  grid-column: 2;
  justify-self: center;
  align-self: center;
  position: relative;
  z-index: 1;
}
.tl-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 8px;
}
.tl-content h3 {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.tl-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.tl-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
  background: var(--bg-tan-soft);
}
.tl-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============ MVV (misiune / viziune / valori) ============ */
.mvv-section { background: var(--bg-tan-soft); }
.mvv-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.mvv-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 36px;
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--teal);
}
.mvv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 16px;
}
.mvv-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.mvv-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.mvv-values {
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  padding: 40px 40px 36px;
  position: relative;
  overflow: hidden;
}
.mvv-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}
.mvv-values .mvv-label { color: rgba(255,255,255,0.7); }
.mvv-values h3 {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.mvv-value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.mvv-value-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.mvv-value-item p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ============ PRICE TABLE ============ */
.preturi-section { background: var(--bg); }
.preturi-section + .preturi-section { background: var(--bg-warm); }
.price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--teal);
}
.price-header h3 {
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.cas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-tint);
  color: var(--teal-deep);
  border: 1px solid rgba(13,158,117,0.2);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--bg-tan-soft);
  border-bottom: 1px solid var(--line);
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--ink-soft);
  vertical-align: top;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  font-size: 16px;
}
.price-table td small {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 400;
  margin-top: 2px;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: var(--bg-tan-soft); }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}
.price-card:last-child { margin-bottom: 0; }
.price-note {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--ink-mute);
  text-align: center;
  padding-top: 20px;
  border-top: 1px dashed var(--line-warm);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-image-wrap { aspect-ratio: 16/11; max-width: 600px; margin: 0 auto; }
  .hero-rating { right: 0; }
  .hero-card { left: 16px; }
  .book-grid-outer { grid-template-columns: 1fr; gap: 48px; }
  .book-left h2 { max-width: 100%; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-top { grid-template-columns: 1fr; }
  .timeline::before { left: 28px; }
  .tl-item { grid-template-columns: 56px 1fr; gap: 0 20px; }
  .tl-item.left .tl-content,
  .tl-item.right .tl-content { grid-column: 2; grid-row: 1; }
  .tl-item.right .tl-placeholder,
  .tl-item.left .tl-placeholder { display: none; }
  .tl-dot { grid-column: 1; }
}
@media (max-width: 720px) {
  section { padding: 72px 0; }
  .hero { padding: 110px 0 64px; }
  .container { padding: 0 20px; }
  .nav-links, .nav-phone { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-right { gap: 8px; }
  .logo img { height: 36px; }
  .cond-grid { grid-template-columns: 1fr; gap: 12px; }
  .cond-card { padding: 24px 22px; min-height: 0; }
  .reviews-marquee { margin: 0 -20px; }
  .review { width: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 12px; }
  .stat + .stat::before { display: none; }
  .team-grid { grid-template-columns: 1fr; gap: 16px; }
  .proc-grid { grid-template-columns: 1fr; }
  .book-card { padding: 28px 22px; }
  .book-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .sec-head { margin-bottom: 44px; }
  .rating-big-num { font-size: 64px; }
  h1.hero-title { font-size: 40px; }
  .hero-rating { top: 16px; padding: 10px 14px; }
  .hero-rating b { font-size: 22px; }
  .location-grid { grid-template-columns: 1fr; }
  .mvv-value-list { grid-template-columns: 1fr; }
  .mvv-card, .mvv-values { padding: 28px 24px; }
  .page-hero { padding: 110px 0 56px; }
  .page-hero h1 { font-size: 36px; }
}

/* ============ PROCEDURES — LISTING ============ */
.proc-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proc-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 28px 24px;
  border: 1.5px solid var(--line-warm);
  border-radius: var(--radius);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.proc-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.proc-card-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.proc-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.proc-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  flex: 1;
  margin: 0;
}
.proc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 4px;
}
.proc-card--small .proc-card-title { font-size: 18px; }

/* ============ PROCEDURES — INDIVIDUAL ============ */
.proc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.proc-breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.proc-breadcrumb a:hover { text-decoration: underline; }

.proc-intro-section { padding: 64px 0 0; }
.proc-intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 820px;
}

.proc-how-section { padding: 56px 0 64px; }
.proc-how-inner { max-width: 820px; }

.proc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.proc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.proc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.proc-list li:last-child { border-bottom: none; }
.proc-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.proc-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.proc-info-box {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}
.proc-info-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}
.proc-info-icon svg { width: 36px; height: 36px; }
.proc-info-box h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
}
.proc-info-box p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.proc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .proc-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .proc-listing-grid { grid-template-columns: 1fr; }
  .proc-related-grid { grid-template-columns: 1fr; }
  .proc-cols { grid-template-columns: 1fr; gap: 32px; }
  .proc-meta-row { grid-template-columns: 1fr; }
}
