:root {
  --container: 1320px;
  --cyan: #007f96;
  --cyan-dark: #006275;
  --sky: #dff3f7;
  --ink: #142d36;
  --muted: #55727c;
  --paper: #f6fbfc;
  --surface: #fff;
  --line: #bfdce3;
  color-scheme: light dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  z-index: 30;
  left: 10px;
  top: 8px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}
.skip:focus {
  transform: none;
}
header {
  height: 74px;
  background: rgba(246, 251, 252, 0.95);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 12;
}
.header-inner {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img {
  width: 196px;
  height: auto;
}
.menu-toggle {
  display: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}
nav a {
  text-decoration: none;
  white-space: nowrap;
}
.call,
.button {
  background: var(--cyan-dark);
  color: #fff;
  border: 2px solid var(--cyan-dark);
  padding: 12px 17px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
}
.hero {
  width: min(var(--container), calc(100% - 40px));
  height: 84vh;
  min-height: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--sky);
  border-radius: 0 0 12px 12px;
}
.team-photo {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(223, 243, 247, 0.98) 0%,
      rgba(223, 243, 247, 0.82) 36%,
      rgba(223, 243, 247, 0.05) 68%
    ),
    linear-gradient(0deg, var(--sky) 0%, rgba(223, 243, 247, 0) 58%);
}
.hero-panel {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 58%;
  padding: 70px clamp(30px, 5vw, 72px);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan-dark);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin: 0;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  max-width: 570px;
  margin: 28px 0;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.actions > a:last-child {
  font-weight: 800;
  text-underline-offset: 5px;
}
.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}
.intro > .eyebrow {
  margin-left: 43%;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 100px;
  align-items: start;
}
.section h2 {
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0;
}
.intro-grid p {
  font-size: 19px;
  margin: 4px 0 18px;
}
.intro-grid a {
  color: var(--cyan-dark);
  font-weight: 800;
}
.treatments {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  background: var(--sky);
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  padding-right: max(20px, calc((100% - var(--container)) / 2));
}
.treatment-copy p:last-child {
  max-width: 480px;
}
.treatment-list {
  border-top: 2px solid var(--ink);
}
.treatment-list > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #9dcbd5;
  padding: 18px 0;
}
.treatment-list span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
}
.treatment-list h3 {
  font-size: 25px;
  margin: 0;
}
.prices {
  padding-bottom: 90px;
}
.price-heading {
  display: grid;
  grid-template-columns: 150px 1fr 320px;
  gap: 45px;
  align-items: end;
  margin-bottom: 48px;
}
.price-heading .eyebrow {
  align-self: start;
}
.price-heading p:last-child {
  color: var(--muted);
  margin: 0;
}
.price-table {
  border-top: 2px solid var(--ink);
}
.price-table > div {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 30px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.price-table span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-dark);
  font-weight: 800;
}
.price-table p {
  margin: 0;
}
.price-table strong {
  text-align: right;
}
.price-link {
  display: inline-block;
  margin-top: 26px;
  font-weight: 800;
  color: var(--cyan-dark);
  text-underline-offset: 5px;
}
.practical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.hours dl,
.contact {
  border-top: 2px solid var(--ink);
}
.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.hours dt {
  font-weight: 800;
}
.hours dd {
  margin: 0;
}
.contact a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.contact strong {
  font-size: 19px;
}
.contact span {
  font-size: 13px;
  color: var(--cyan-dark);
  font-weight: 800;
}
footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 38px 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
footer img {
  width: 180px;
  height: auto;
}
.demo-note {
  max-width: 530px;
  color: var(--muted);
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e9f6f8;
    --muted: #aec6cc;
    --paper: #0c1c21;
    --surface: #11292f;
    --line: #294b54;
    --sky: #15343c;
  }
  .brand img,
  footer img {
    background: #f6fbfc;
    border-radius: 8px;
    padding: 5px;
  }
  header {
    background: rgba(12, 28, 33, 0.95);
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      rgba(21, 52, 60, 0.98) 0%,
      rgba(21, 52, 60, 0.88) 40%,
      rgba(21, 52, 60, 0.1) 72%
    );
  }
  .eyebrow,
  .price-link,
  .intro-grid a,
  .contact span {
    color: #73d3e5;
  }
  .treatment-list > div {
    border-color: #335a63;
  }
}
@media (max-width: 850px) {
  header {
    height: 68px;
  }
  .header-inner {
    width: calc(100% - 28px);
  }
  .brand img {
    width: 154px;
  }
  .menu-toggle {
    display: block;
    background: none;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 800;
  }
  .js nav {
    display: none;
  }
  .js nav.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .no-js .menu-toggle {
    display: none;
  }
  .no-js nav {
    font-size: 12px;
    gap: 10px;
  }
  .no-js nav a:not(.call) {
    display: none;
  }
  .hero {
    width: 100%;
    height: auto;
    min-height: calc(100svh - 68px);
    display: flex;
    flex-direction: column;
    border-radius: 0;
  }
  .team-photo {
    position: relative;
    height: auto;
    aspect-ratio: 3.24/1;
    object-fit: contain;
    background: var(--sky);
    order: 1;
  }
  .hero:after {
    display: none;
  }
  .hero-panel {
    order: 2;
    width: 100%;
    height: auto;
    flex: 1;
    padding: 44px 20px 52px;
    background: var(--sky);
  }
  .hero h1 {
    font-size: clamp(43px, 11.8vw, 66px);
  }
  .hero h1 span {
    white-space: normal;
  }
  .section {
    width: calc(100% - 40px);
    padding: 82px 0;
  }
  .intro > .eyebrow {
    margin-left: 0;
  }
  .intro-grid,
  .treatments,
  .practical {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .treatments {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .price-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .price-table > div {
    grid-template-columns: 78px 1fr auto;
    gap: 14px;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 470px) {
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .price-table > div {
    grid-template-columns: 70px 1fr;
  }
  .price-table strong {
    grid-column: 2;
    text-align: left;
  }
  .section h2 {
    font-size: 42px;
  }
  .hours dl div {
    flex-direction: column;
    gap: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
