:root {
  --ink: #173134;
  --muted: #657174;
  --paper: #f8fbfb;
  --white: #ffffff;
  --teal: #00a9a5;
  --teal-dark: #007c7a;
  --gold: #b59b74;
  --rose: #d9777b;
  --cream: #eee6da;
  --line: rgba(23, 49, 52, 0.14);
  --shadow: 0 24px 70px rgba(23, 49, 52, 0.17);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(16px, 5vw, 68px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(14, 35, 37, 0.72), rgba(14, 35, 37, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.header[data-elevated="true"] {
  background: rgba(16, 38, 41, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
}

.brand img {
  width: 146px;
  height: auto;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.brand span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.lang button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.lang button.active {
  color: var(--ink);
  background: var(--white);
}

.call {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 12px 30px rgba(217, 119, 123, 0.3);
}

.call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 5vw, 68px) 44px;
  color: var(--white);
  background: var(--ink);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 33, 35, 0.9) 0%, rgba(12, 33, 35, 0.66) 44%, rgba(12, 33, 35, 0.12) 100%),
    linear-gradient(0deg, rgba(12, 33, 35, 0.86) 0%, rgba(12, 33, 35, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-bottom: 170px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #71ebe7;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 5.6rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

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

.btn.light {
  color: var(--ink);
  background: var(--white);
}

.btn.outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn.dark {
  color: var(--ink);
  border-color: rgba(23, 49, 52, 0.26);
  background: var(--cream);
}

.quick {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 68px);
  bottom: 34px;
  left: clamp(18px, 5vw, 68px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  max-width: 1120px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(15, 41, 44, 0.74);
  backdrop-filter: blur(18px);
}

.quick div {
  min-width: 0;
  padding: 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.quick div:first-child {
  border-left: 0;
}

.quick span,
.contact-grid span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick strong {
  display: block;
  font-size: 1rem;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof div {
  min-width: 0;
  padding: 34px clamp(18px, 5vw, 68px);
  background: var(--white);
}

.proof strong {
  color: var(--rose);
  font-size: 4rem;
  line-height: 0.95;
}

.proof p {
  max-width: 330px;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 760;
}

.section {
  padding: 104px clamp(18px, 5vw, 68px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.copy p:not(.eyebrow),
.section-head p:not(.eyebrow),
.treatment-detail p,
.visit-copy dd,
.source p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 14px;
}

.image-pair img,
.visit > img,
.contact > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  min-height: 420px;
}

.treatments {
  background: #edf7f6;
}

.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.treatment-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  align-content: start;
  gap: 1px;
  background: var(--line);
}

.tabs button {
  min-height: 76px;
  padding: 18px;
  border: 0;
  color: var(--ink);
  background: #f9fbfb;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.tabs button.active {
  color: var(--white);
  background: var(--teal-dark);
}

.treatment-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(28px, 5vw, 60px);
}

#mode-kicker {
  color: var(--rose);
  font-weight: 950;
}

.treatment-detail p {
  margin: 14px 0 0;
}

.treatment-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-detail li {
  position: relative;
  padding: 14px 14px 14px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  font-weight: 780;
}

.treatment-detail li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.inline-link {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--teal-dark);
  font-weight: 950;
}

.visit {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  padding: 104px clamp(18px, 5vw, 68px);
}

.visit-copy {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.visit-copy .eyebrow {
  color: #71ebe7;
}

.visit-copy dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.visit-copy dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.visit-copy dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.source {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: clamp(28px, 5vw, 68px);
  background: var(--cream);
}

.source-links {
  display: grid;
  gap: 12px;
}

.source-links a {
  display: flex;
  justify-content: space-between;
  padding: 17px 18px;
  border: 1px solid rgba(23, 49, 52, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  font-weight: 900;
  text-decoration: none;
}

.source-links a::after {
  content: ">";
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 104px clamp(18px, 5vw, 68px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-grid a {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(23, 49, 52, 0.08);
}

.contact-grid span {
  color: var(--muted);
}

.contact-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

footer p {
  margin: 0;
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding-bottom: 270px;
  }

  .quick,
  .proof,
  .intro,
  .treatment-shell,
  .treatment-detail,
  .visit,
  .source,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick {
    right: 18px;
    left: 18px;
  }

  .quick div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick div:first-child {
    border-top: 0;
  }

  .image-pair,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header {
    min-height: 72px;
    padding-inline: 12px;
  }

  .brand img {
    width: 126px;
  }

  .brand span {
    display: none;
  }

  .lang button {
    min-width: 36px;
  }

  .call {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 960px;
    padding-inline: 16px;
  }

  .hero-content {
    padding-bottom: 330px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .visit-actions .btn {
    width: 100%;
  }

  .proof strong {
    font-size: 2.8rem;
  }

  .section,
  .visit,
  .contact {
    padding: 64px 16px;
  }

  footer {
    display: block;
  }
}

