:root {
  --ink: #14110f;
  --paper: #f6f3ee;
  --muted: #6b645c;
  --line: #ddd6cc;
  --taupe: #9a8b84;
  --black: #111;
  --white: #fff;
  --header-h: 44px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
address { font-style: normal; }

.skip {
  position: absolute;
  left: 8px;
  top: -40px;
  background: var(--black);
  color: var(--white);
  padding: 8px 12px;
  z-index: 30;
}
.skip:focus { top: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 6px 0 10px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name {
  display: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.nav { display: none; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.header-cta {
  min-height: 28px;
  height: 28px;
  padding: 0 12px;
  font-size: 12px;
  white-space: nowrap;
}

.lang-swap {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  min-width: 40px;
  min-height: 44px;
  padding: 0 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.lang-swap:focus-visible { outline: 2px solid var(--taupe); outline-offset: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.btn-solid { background: var(--black); color: var(--white); }
.btn:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; }

.hero {
  position: relative;
  min-height: 70dvh;
  display: grid;
  align-items: end;
  color: var(--white);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.12) 0%, rgba(17,17,17,0.72) 100%);
}
.hero-copy {
  position: relative;
  padding: 28px 16px 36px;
  max-width: 720px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  margin: 6px 0 12px;
  text-wrap: balance;
}
.lede { font-size: 16px; max-width: 42ch; color: #efeae3; margin: 0 0 20px; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--taupe);
  margin: 0 0 8px;
}
.hero .kicker { color: #d9cfc6; }

.split, .treatments, .team, .visit {
  padding: 56px 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.split h2, .section-head h2, .visit h2 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 14px;
}
.split-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 45%;
  margin-top: 20px;
}

.section-head { max-width: 640px; margin-bottom: 28px; }

.proc-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  gap: 18px;
}
.proc-grid h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
}
.proc-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.proc-grid li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.case { margin-top: 8px; }
.case img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: #1a1a1a;
}
.case h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  margin: 16px 0 8px;
}

.team-grid {
  display: grid;
  gap: 28px;
}
.team-grid img.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: top center;
}
.team-grid figcaption { padding-top: 10px; }
.team-grid strong { display: block; }
.team-grid span { color: var(--muted); font-size: 14px; }

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 6px 6px;
}
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
}

.facts { list-style: none; padding: 0; margin: 20px 0; }
.facts li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
  margin-top: 24px;
  filter: grayscale(0.35);
}

.site-footer {
  padding: 20px 16px calc(72px + var(--safe-b));
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.chat {
  position: fixed;
  right: 12px;
  bottom: calc(12px + var(--safe-b));
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.chat-toggle {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.chat-panel {
  width: min(92vw, 320px);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 12px;
  max-height: 50dvh;
  overflow: auto;
}
.chat-intro, .chat-log p { font-size: 13px; margin: 0 0 8px; color: var(--muted); }
.chat-qs { display: flex; flex-wrap: wrap; gap: 6px; }
.chat-qs button {
  font: inherit;
  font-size: 12px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

@media (min-width: 860px) {
  .site-header {
    padding: 0 24px;
    gap: 20px;
  }
  .brand-name { display: inline; }
  .nav {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex: 1;
  }
  .header-cta { min-height: 32px; height: 32px; font-size: 13px; }
  .hero { min-height: 88dvh; }
  .hero-copy { padding: 48px 28px 64px; }
  .split, .treatments, .team, .visit { padding: 88px 28px; }
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .split-media img { height: 480px; margin-top: 0; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 28px 40px; }
  .case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery img { height: 260px; }
  .visit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .map-wrap iframe { height: 360px; margin-top: 0; }
  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 28px;
  }
}
