:root {
  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --lime: #c4e15a;
  --ink: #102027;
  --muted: #5b6b73;
  --paper: #f4f7f6;
  --white: #ffffff;
  --line: #dce6e3;
  --header: #0b1619;
  --radius: clamp(12px, 1.2vw, 18px);
  --max: 75rem;
  --space: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(2.5rem, 7vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Outfit, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.125rem);
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  height: auto;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  color: var(--teal);
}

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--space)));
  margin-inline: auto;
}

.site-header {
  background: var(--header);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(196, 225, 90, 0.22);
}

.social {
  display: flex;
  gap: 0.85rem;
}

.social a {
  color: var(--lime);
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  color: var(--white);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  position: relative;
}

.logo {
  flex: 0 1 auto;
  min-width: 0;
}

.logo img {
  height: clamp(52px, 9vw, 76px);
  width: auto;
  max-width: min(280px, 62vw);
  object-fit: contain;
  filter: saturate(1.12) brightness(1.08);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font: inherit;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 1.5rem;
}

.site-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.02rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--lime);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font: inherit;
  min-height: 44px;
}

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

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

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

.btn.book-btn {
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.45rem;
  white-space: nowrap;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.site-nav .book-btn {
  margin-left: 0.15rem;
  padding: 0.55rem 1.2rem;
  min-height: 42px;
}

.hero {
  min-height: clamp(20rem, 70svh, 46rem);
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: grid;
  align-items: end;
  position: relative;
}

.hero-page {
  min-height: clamp(12rem, 36svh, 24rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 22, 25, 0.82) 0%, rgba(11, 22, 25, 0.35) 70%, rgba(11, 22, 25, 0.15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2rem, 8vw, 5rem);
  max-width: min(42rem, 100%);
}

.eyebrow {
  color: var(--lime);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem;
}

.badge-mobile {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin: 0 0 0.85rem;
}

.hero .badge-mobile {
  box-shadow: 0 6px 18px rgba(11, 22, 25, 0.28);
}

.hero h1 {
  font-size: clamp(1.7rem, 1.2rem + 3vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-inner > p:not(.eyebrow):not(.badge-mobile):not(.crumbs) {
  margin: 0 0 1.2rem;
  color: #e8eeec;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
}

.crumbs {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.crumbs a {
  color: var(--lime);
}

.section {
  padding-block: var(--section);
}

.section-muted {
  background: var(--paper);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.split,
.grid-3,
.grid-4,
.treatments,
.promo,
.feature-band,
.contact-layout,
.footer-grid,
.form-row {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.6rem);
}

.split {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  gap: 0;
}

.split-photo {
  min-height: clamp(16rem, 40vw, 28rem);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hours-card {
  width: 100%;
  background: rgba(11, 22, 25, 0.78);
  color: var(--white);
}

.split-copy,
.hours-card {
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.split-copy h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  margin: 0 0 0.4rem;
}

.lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  font-weight: 600;
  color: var(--teal-dark);
}

.hours-card h2,
.hours-card h3 {
  margin-top: 0;
  color: var(--lime);
}

.hours-card p {
  margin: 0.3rem 0 1rem;
}

.grid-3,
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 2.5vw, 1.7rem);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.price-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.price-card p {
  margin: 0;
  color: var(--muted);
}

.price {
  margin: 0.85rem 0 0;
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2.1rem);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}

.price-card .price {
  margin-top: auto;
  padding-top: 1rem;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.treatments-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
}

.treatments-intro .section-title {
  margin-bottom: 0.55rem;
}

.treatments-eyebrow {
  color: var(--teal-dark);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.treatments-intro > p:last-child {
  margin: 0;
  color: var(--muted);
}

.treatments {
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (min-width: 721px) {
  .treatments {
    grid-template-columns: 1fr 1fr;
  }
}

.treatment {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}

.treatment-media {
  background: linear-gradient(180deg, #e7f3f0 0%, #f7fbfa 100%);
  display: grid;
  place-items: center;
  padding: 1rem 1.1rem 0.35rem;
  min-height: 12.5rem;
}

.treatment-media img {
  width: 100%;
  height: auto;
  max-height: 13.5rem;
  object-fit: contain;
}

.treatment-copy {
  display: flex;
  flex-direction: column;
  padding: 1.05rem 1.2rem 1.3rem;
  flex: 1;
}

.treatment h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.treatment-copy > p {
  margin: 0;
  color: var(--muted);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
}

.review,
.card,
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.4rem);
  min-width: 0;
}

.section-dark .review {
  background: #173038;
  border-color: transparent;
}

.review h3 {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
}

.review .role {
  color: var(--teal);
  font-size: 0.9rem;
  margin: 0 0 0.8rem;
}

.card img,
.promo img,
.feature-band img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.card img {
  aspect-ratio: 4 / 3;
}

.info-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.info-card p + p {
  margin-top: 0.45rem;
  font-size: 0.92rem;
}

.card h3 {
  margin: 0.9rem 0 0.4rem;
  font-size: 1.1rem;
}

.card p,
.review p {
  margin: 0;
  color: var(--muted);
}

.section-dark .review p {
  color: #d5e0dd;
}

.promo,
.feature-band {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  align-items: center;
  background: var(--teal);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.75rem);
}

.promo h2,
.feature-band h2 {
  margin: 0 0 0.6rem;
  color: var(--white);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
}

.price-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  background: rgba(11, 22, 25, 0.18);
  border-radius: 12px;
  overflow: hidden;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.price-list li span {
  flex: 1;
  min-width: 0;
}

.price-list li:last-child {
  border-bottom: 0;
}

.contact-layout {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

label {
  display: block;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

input,
textarea {
  width: 100%;
  max-width: 100%;
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 1rem;
  background: var(--white);
}

.form-row {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.form-row p {
  margin: 0;
  min-width: 0;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.side-photo {
  min-height: clamp(14rem, 42vw, 28rem);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

.map iframe {
  width: 100%;
  height: clamp(16rem, 50vw, 26rem);
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  background: var(--header);
  color: #c9d5d2;
  padding: var(--section) 0 1.5rem;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}

.site-footer h2 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 0.8rem;
}

.site-footer a {
  color: var(--lime);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.35rem 0;
}

.legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.video-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1600px) {
  :root {
    --max: 92rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--header);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 50;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .book-btn {
    padding-inline: 0.15rem;
  }
}

@media (max-width: 480px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(11, 22, 25, 0.35) 0%, rgba(11, 22, 25, 0.82) 100%);
  }
}
