:root {
  --ink: #203b35;
  --ink-soft: #49605a;
  --sage: #536f67;
  --sage-deep: #2f5148;
  --sage-pale: #dce5df;
  --ivory: #f8f5ef;
  --paper: #fffdf9;
  --sand: #e7ddcf;
  --gold: #a88953;
  --line: rgba(32, 59, 53, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Segoe UI", Aptos, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--sage-deep);
  border-radius: 8px;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 14px clamp(24px, 5vw, 78px);
  background: rgba(248, 245, 239, 0.92);
  border-bottom: 1px solid rgba(32, 59, 53, 0.11);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 13px; justify-self: start; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  background: var(--sage-deep);
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 600; }
.brand-copy small { color: var(--ink-soft); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 32px; font-size: 14px; color: var(--ink-soft); }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.language-chip {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  min-height: min(760px, calc(100vh - 92px));
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(168, 137, 83, 0.13), transparent 26%),
    var(--ivory);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(42px, 6vw, 96px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow > span { width: 32px; height: 1px; background: currentColor; }
.hero h1,
.intro-content h2,
.section-heading h2,
.procedures-copy h2,
.language-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero h1 { max-width: 680px; font-size: clamp(54px, 6vw, 90px); }
.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { gap: 26px; color: white; background: var(--sage-deep); }
.button-primary:hover { background: #25473e; }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,0.46); }
.button-booking { color: var(--sage-deep); border: 1px solid var(--gold); background: #efe4d3; }
.credential-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.credential-row div { display: flex; flex-direction: column; gap: 4px; }
.credential-row strong { font-size: 14px; letter-spacing: 0.04em; }
.credential-row span { color: var(--ink-soft); font-size: 11px; }
.hero-portrait { position: relative; min-height: 620px; overflow: hidden; }
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 14%;
  background: linear-gradient(90deg, var(--ivory), transparent);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; }
.portrait-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 16px;
  color: white;
  background: rgba(32,59,53,0.74);
  backdrop-filter: blur(12px);
}
.portrait-caption span { font-family: Georgia, serif; font-size: 18px; }
.portrait-caption small { opacity: 0.8; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

.intro-section,
.procedures-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px);
  background: var(--paper);
}
.section-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-label span { font-family: Georgia, serif; font-size: 26px; font-weight: 400; letter-spacing: 0; }
.intro-content h2 { max-width: 780px; font-size: clamp(44px, 5vw, 72px); }
.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 75px);
  max-width: 970px;
  margin-top: 46px;
}
.intro-copy p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.85; }
.values-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.values-row span { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; }

.care-section { padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px); background: var(--sage-deep); color: white; }
.section-heading { display: grid; grid-template-columns: 0.32fr 1fr; gap: clamp(42px, 8vw, 130px); align-items: start; }
.section-label.light { color: #d9c49f; }
.section-heading h2 { max-width: 920px; font-size: clamp(43px, 5vw, 70px); }
.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 75px; border-top: 1px solid rgba(255,255,255,0.18); border-left: 1px solid rgba(255,255,255,0.18); }
.care-card { min-height: 285px; padding: 30px 28px; border-right: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); }
.card-number { display: block; color: #d9c49f; font-family: Georgia, serif; font-size: 15px; }
.care-card h3 { margin: 48px 0 14px; font-family: Georgia, serif; font-size: 24px; font-weight: 500; line-height: 1.2; }
.care-card p { margin: 0; color: rgba(255,255,255,0.68); font-size: 14px; line-height: 1.7; }

.procedures-section { grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr); align-items: start; }
.procedures-copy { position: sticky; top: 132px; }
.procedures-copy h2 { max-width: 520px; margin-top: 34px; font-size: clamp(44px, 5vw, 70px); }
.procedures-copy > p { max-width: 520px; margin: 30px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.procedure-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.procedure-list li { display: grid; grid-template-columns: 58px 1fr; align-items: center; min-height: 82px; border-bottom: 1px solid var(--line); }
.procedure-list span { color: var(--gold); font-family: Georgia, serif; font-size: 14px; }
.procedure-list strong { font-family: Georgia, serif; font-size: clamp(20px, 2.1vw, 28px); font-weight: 500; }

.approach-section { padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px); background: var(--sage-pale); }
.section-heading.compact { align-items: end; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line); }
.approach-grid article { padding: 34px clamp(20px, 3vw, 42px) 18px 0; }
.approach-grid article + article { padding-left: clamp(20px, 3vw, 42px); border-left: 1px solid var(--line); }
.approach-grid span { color: var(--gold); font-family: Georgia, serif; font-size: 15px; }
.approach-grid h3 { margin: 42px 0 14px; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.approach-grid p { max-width: 380px; margin: 0; color: var(--ink-soft); line-height: 1.75; }

.language-section { display: grid; grid-template-columns: 0.42fr 1fr; gap: 70px; align-items: center; padding: clamp(80px, 9vw, 125px) clamp(24px, 9vw, 150px); color: white; background: var(--sage-deep); }
.language-orbit { position: relative; width: min(280px, 32vw); aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; }
.language-orbit::before { content: ""; position: absolute; inset: 19%; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; }
.language-orbit span { position: absolute; display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; font-family: Georgia, serif; }
.language-orbit span:first-child { top: 10%; right: 5%; color: var(--ink); background: #d9c49f; }
.language-orbit span:last-child { left: 8%; bottom: 10%; color: white; background: rgba(255,255,255,0.12); }
.eyebrow.pale { color: #d9c49f; }
.language-section h2 { font-size: clamp(52px, 7vw, 96px); }
.language-section p:last-child { max-width: 680px; margin: 25px 0 0; color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.75; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px);
  background: var(--paper);
}
.contact-content h2 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.contact-intro { max-width: 650px; margin: 25px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 42px; }
.contact-card { display: flex; min-height: 128px; flex-direction: column; justify-content: space-between; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--ivory); transition: transform 180ms ease, border-color 180ms ease; }
.contact-card:hover, .contact-card:focus-visible { border-color: var(--gold); transform: translateY(-3px); }
.contact-card span { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 500; line-height: 1.35; overflow-wrap: anywhere; }
.booking-cta { width: fit-content; margin-top: 28px; }

.site-footer { display: grid; grid-template-columns: 0.8fr 1.4fr auto; gap: 50px; align-items: center; padding: 44px clamp(24px, 7vw, 110px); background: #17342d; color: white; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.brand-mark.muted { color: #17342d; background: #d9c49f; }
.footer-brand div { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { font-family: Georgia, serif; font-size: 18px; }
.footer-brand span { color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.disclaimer { margin: 0; color: rgba(255,255,255,0.6); font-size: 11px; line-height: 1.6; }
.copyright { margin: 0; color: rgba(255,255,255,0.6); font-size: 11px; white-space: nowrap; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr 0.85fr; }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr 1.4fr; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { min-height: 76px; padding: 11px 18px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 9px; }
  .language-chip { padding: 9px 12px; font-size: 11px; }
  .hero { display: flex; min-height: 0; flex-direction: column-reverse; }
  .hero-portrait { min-height: 440px; }
  .hero-portrait::before { inset: auto 0 0; width: auto; height: 16%; background: linear-gradient(0deg, var(--ivory), transparent); }
  .hero-portrait img { object-position: 58% center; }
  .portrait-caption { right: 16px; bottom: 20px; min-width: 200px; }
  .hero-copy { padding: 55px 22px 70px; }
  .hero h1 { font-size: clamp(50px, 15vw, 68px); }
  .hero-lead { font-size: 17px; }
  .button { width: 100%; }
  .credential-row { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .credential-row div { display: grid; grid-template-columns: 100px 1fr; align-items: baseline; }
  .intro-section,
  .procedures-section,
  .contact-section,
  .section-heading,
  .language-section { grid-template-columns: 1fr; }
  .intro-section, .procedures-section { gap: 40px; }
  .intro-copy { grid-template-columns: 1fr; gap: 24px; }
  .care-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .care-card { min-height: 240px; }
  .procedures-copy { position: static; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .language-section { gap: 35px; }
  .language-orbit { width: 230px; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-cta { width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
