:root {
  --ink: #231f20;
  --muted: #6c6360;
  --paper: #fffaf6;
  --shell: #f5ede6;
  --rose: #bf6f77;
  --rose-dark: #8f3f4d;
  --sage: #52746f;
  --gold: #ba8f4b;
  --line: rgba(35, 31, 32, 0.13);
  --shadow: 0 24px 70px rgba(56, 42, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose-dark);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--rose-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.icon-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 6vw, 86px) clamp(34px, 5vw, 70px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 118px);
  line-height: 0.92;
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 830;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-ctas,
.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 780;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--rose-dark);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.trust-row span {
  color: var(--muted);
}

.trust-row strong {
  color: var(--ink);
  font-size: 24px;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media img {
  width: 100%;
  height: min(68svh, 720px);
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-panel {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  width: min(280px, calc(100% - 24px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.status-panel span,
.status-panel a {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.status-panel strong {
  display: block;
  margin: 3px 0;
  font-size: 20px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 86px) clamp(54px, 7vw, 96px);
  background: var(--line);
  border: 1px solid var(--line);
}

.quick-actions a {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 24px;
  background: #fff;
}

.quick-actions span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-weight: 800;
}

.quick-actions small {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 6vw, 86px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(34px, 5vw, 76px);
  background: var(--shell);
}

.section-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.treatment-grid article,
.proof-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.treatment-grid img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.treatment-grid h3,
.treatment-grid p {
  padding-inline: 20px;
}

.treatment-grid h3 {
  padding-top: 18px;
}

.treatment-grid p {
  padding-bottom: 22px;
  color: var(--muted);
}

.proof {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.proof-grid article {
  padding: 26px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--rose-dark);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.proof-grid span,
.care-note,
.fine-print {
  color: var(--muted);
}

.care-note {
  max-width: 860px;
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.booking-band {
  color: #fff;
  background: #253836;
}

.booking-band .eyebrow {
  color: #f2c1c6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 214px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.steps p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-band .button.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.visit-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

dt {
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  font-size: 18px;
}

.fine-print {
  margin-top: 22px;
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .section-copy {
    position: static;
  }

  .quick-actions,
  .proof-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand strong {
    max-width: 172px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

  .quick-actions {
    margin-inline: 0;
    border-left: 0;
    border-right: 0;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .status-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .site-footer {
    display: grid;
  }
}
