:root {
  --ink: #1d1a18;
  --muted: #6d625c;
  --paper: #fbf7f3;
  --cream: #f0e4dc;
  --rose: #b86f79;
  --rose-dark: #7f3f4b;
  --sage: #6d8677;
  --sage-dark: #253f36;
  --line: rgba(29, 26, 24, 0.13);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(58, 43, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: var(--rose);
  color: var(--white);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 243, 0.89);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 26px;
}

.brand strong,
.brand small {
  display: block;
}

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

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.text-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.text-link:hover {
  border-color: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.lang-btn,
.icon-link {
  min-width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.lang-btn.active,
.icon-link {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.icon-link {
  display: grid;
  place-items: center;
  padding: 0 16px;
  text-decoration: none;
}

.hero,
.service-finder,
.treatments-band,
.education-section,
.gallery-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(42px, 7vw, 88px) 0 56px;
}

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

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  font-weight: 500;
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 22px;
}

.cta-row,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn.primary {
  background: var(--rose-dark);
  color: var(--white);
}

.btn.secondary {
  background: var(--sage-dark);
  color: var(--white);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 590px;
  margin: 34px 0 0;
}

.proof-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.proof-grid dt {
  font-size: 32px;
  font-weight: 900;
}

.proof-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

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

.hero-main {
  width: 100%;
  height: min(70svh, 640px);
  min-height: 470px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(210px, 58%);
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  color: rgba(251, 247, 243, 0.73);
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.service-finder,
.treatments-band,
.education-section,
.gallery-section,
.contact-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.finder-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-tabs {
  display: grid;
  gap: 10px;
}

.service-tab {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
}

.service-tab.active {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}

.service-panel {
  min-height: 372px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(37, 63, 54, 0.1);
}

.panel-kicker {
  color: var(--rose-dark);
  font-weight: 800;
}

.service-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 500;
}

.service-panel p,
.education-copy p,
.contact-copy p,
.card p {
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding-left: 22px;
  position: relative;
}

.mini-list li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  top: 0.72em;
  border-radius: 50%;
  background: var(--rose);
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.card {
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.card-index {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--rose-dark);
  font-weight: 900;
}

.education-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

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

.education-list span {
  min-height: 96px;
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  padding: 18px;
  background: var(--sage-dark);
  color: var(--white);
  font-weight: 900;
}

.education-list span:nth-child(even) {
  background: var(--rose-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.gallery-grid .wide {
  grid-row: span 2;
}

.gallery-grid .tall {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.contact-item span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-item strong {
  font-size: 26px;
  word-break: break-word;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 26px clamp(18px, 4vw, 56px) 96px;
  background: var(--ink);
  color: rgba(251, 247, 243, 0.76);
}

.site-footer p {
  margin: 0;
  max-width: 960px;
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 25;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 243, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mobile-bar a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .finder-layout,
  .education-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    font-size: 64px;
  }

  h2,
  .service-panel h3 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 20px;
  }

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

  .hero-main {
    height: 540px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .icon-link {
    display: none;
  }

  .hero,
  .service-finder,
  .treatments-band,
  .education-section,
  .gallery-section,
  .contact-section {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 42px;
  }

  h2,
  .service-panel h3 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 18px;
  }

  .contact-item strong {
    font-size: 20px;
  }

  .hero-main {
    height: 420px;
    min-height: 420px;
  }

  .floating-note {
    right: 10px;
    width: 190px;
  }

  .proof-grid,
  .cards,
  .education-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 310px;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 430px;
  }

  .mobile-bar {
    display: grid;
  }
}
