
:root {
  --bg: #fbf8f4;
  --bg-soft: #f4eee7;
  --text: #332b25;
  --muted: #7f746b;
  --line: rgba(51, 43, 37, .10);
  --white: #ffffff;
  --gold: #b7986d;
  --gold-soft: #eadccb;
  --rose: #e95b97;
  --cream-card: rgba(255, 255, 255, .76);
  --champagne-card: rgba(246, 238, 226, .82);
  --warm-card: #f7f0e8;
  --button: #5b4a3d;
  --button-hover: #473a31;
  --shadow: 0 24px 70px rgba(64, 48, 34, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 91, 151, .10), transparent 34rem),
    radial-gradient(circle at 85% 5%, rgba(183, 152, 109, .20), transparent 28rem),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.30), transparent 60%);
  z-index: -1;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(251, 248, 244, .76);
  border-bottom: 1px solid rgba(51, 43, 37, .07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand img {
  width: 168px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(51, 43, 37, .08);
  background: rgba(255, 255, 255, .62);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(64, 48, 34, .06);
}

.menu a {
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(51, 43, 37, .72);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.menu a:hover,
.menu a.active {
  background: var(--button);
  color: #fff;
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--button);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(91, 74, 61, .18);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-cta:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(91, 74, 61, .24);
}

.hero {
  padding: 76px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  min-height: 660px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(51, 43, 37, .08);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.58)),
    radial-gradient(circle at 0 0, rgba(233, 91, 151, .12), transparent 24rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(183, 152, 109, .16);
  filter: blur(2px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(183, 152, 109, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  color: #7a5f3d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(233, 91, 151, .12);
}

h1 {
  margin: 28px 0 0;
  max-width: 780px;
  color: var(--text);
  font-size: clamp(48px, 7vw, 92px);
  line-height: .93;
  letter-spacing: -.05em;
  font-weight: 760;
}

.lead {
  margin: 28px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  letter-spacing: -.02em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -.01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--button);
  color: #fff;
  box-shadow: 0 18px 40px rgba(91, 74, 61, .18);
}

.btn-primary:hover {
  background: var(--button-hover);
  box-shadow: 0 22px 46px rgba(91, 74, 61, .24);
}

.btn-secondary {
  background: rgba(255,255,255,.70);
  color: var(--text);
  border: 1px solid rgba(51, 43, 37, .10);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(51, 43, 37, .08);
  background: rgba(255,255,255,.58);
  border-radius: 22px;
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: 24px;
  letter-spacing: -.04em;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-media {
  min-height: 660px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9cbbd;
  isolation: isolate;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(52, 38, 28, .34), rgba(52, 38, 28, .02) 58%, rgba(52, 38, 28, .08)),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.18), transparent 20rem);
  z-index: 1;
}

.floating-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 250, 244, .82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: 0 24px 70px rgba(64, 48, 34, .16);
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -.03em;
}

section {
  padding: 76px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 30px;
}

.section-kicker {
  margin: 0 0 12px;
  color: #9a7648;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 760;
}

.section-text {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -.015em;
}

.treatments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.treatment {
  position: relative;
  min-height: 290px;
  padding: 26px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(51, 43, 37, .08);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 50px rgba(64, 48, 34, .08);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.treatment:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(64, 48, 34, .13);
  background: #fff;
}

.treatment-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #8a6841;
  font-size: 13px;
  font-weight: 800;
}

.treatment h3 {
  margin: 48px 0 12px;
  color: var(--text);
  font-size: 25px;
  letter-spacing: -.04em;
}

.treatment p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.treatment::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(233, 91, 151, .08);
}

.process {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.process-card {
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(246,238,226,.76)),
    radial-gradient(circle at 0 0, rgba(233, 91, 151, .08), transparent 24rem);
  color: var(--text);
  border: 1px solid rgba(183, 152, 109, .18);
  box-shadow: 0 24px 70px rgba(64, 48, 34, .10);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-card h2 {
  color: var(--text);
}

.process-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(51, 43, 37, .08);
  background: rgba(255,255,255,.78);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  box-shadow: 0 14px 46px rgba(64, 48, 34, .07);
}

.step span {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: #7b5d34;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
}

.step h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -.035em;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.person {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 30px;
  background: #ddd;
  box-shadow: 0 18px 56px rgba(64, 48, 34, .13);
}

.person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.person:hover img {
  transform: scale(1.04);
}

.person::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(52,38,28,.42), rgba(52,38,28,0) 60%);
}

.person-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 250, 244, .78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.person-info h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  letter-spacing: -.04em;
}

.person-info p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.story {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(51, 43, 37, .08);
  box-shadow: 0 16px 50px rgba(64, 48, 34, .08);
}

.quote {
  margin: 0;
  color: #453a33;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -.02em;
}

.client {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(51, 43, 37, .10);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.client strong {
  display: block;
  color: var(--text);
  font-size: 17px;
}

.client span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.badge {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #856747;
  font-size: 12px;
  font-weight: 800;
}

.cta-section {
  padding: 94px 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 26px;
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(244,238,229,.86)),
    radial-gradient(circle at 0 0, rgba(233, 91, 151, .10), transparent 28rem);
  color: var(--text);
  border: 1px solid rgba(183, 152, 109, .18);
  box-shadow: 0 30px 90px rgba(64, 48, 34, .12);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(183, 152, 109, .18);
  filter: blur(4px);
}

.cta-panel h2,
.cta-panel p,
.cta-panel a,
.cta-panel .mini-card {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: var(--text);
}

.cta-panel p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.cta-panel .btn-primary {
  background: var(--button);
  color: #fff;
}

.cta-panel .btn-secondary {
  background: rgba(255,255,255,.74);
  color: var(--button);
  border: 1px solid rgba(91, 74, 61, .14);
}

.mini-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.mini-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(183, 152, 109, .16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(64, 48, 34, .07);
}

.mini-card strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 6px;
}

.mini-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

footer {
  padding: 72px 0 34px;
  border-top: 1px solid rgba(51, 43, 37, .08);
  background: rgba(255, 255, 255, .36);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 30px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

footer p,
footer li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

footer h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16px;
  letter-spacing: -.02em;
}

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

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(51, 43, 37, .08);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-toggle {
  display: none;
}

@media (max-width: 1020px) {
  .hero-grid,
  .process,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    height: 620px;
  }

  .treatments,
  .team {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(64, 48, 34, .16);
  }
  
  .menu.is-open {
    display: flex;
  }
  
  .menu a {
    width: 100%;
    padding: 14px 16px;
    text-align: left;
  }

  .mobile-toggle {
    display: inline-flex;
    border: 1px solid rgba(51, 43, 37, .10);
    background: rgba(255,255,255,.70);
    color: var(--text);
    border-radius: 999px;
    padding: 12px 14px;
    font-weight: 800;
  }

  .nav-cta {
    display: none;
  }
  
  .nav {
    position: relative;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar {
    padding: 10px 0;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-copy {
    padding: 28px;
    border-radius: 28px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-media {
    height: 520px;
    border-radius: 28px;
  }

  .hero-stats,
  .treatments,
  .team {
    grid-template-columns: 1fr;
  }

  .person {
    min-height: 520px;
  }

  section {
    padding: 56px 0;
  }

  .cta-panel {
    border-radius: 30px;
  }

  .footer-bottom {
    display: block;
  }
}

.mobile-menu-wrap {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1020px) {
  .desktop-menu {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(51, 43, 37, .10);
    background: rgba(255, 255, 255, .84);
    color: var(--text);
    border-radius: 999px;
    padding: 12px 14px;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-menu-wrap {
    display: none;
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    z-index: 99999;
  }

  .mobile-menu-wrap.is-open {
    display: block !important;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(51, 43, 37, .12);
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(64, 48, 34, .28);
  }

  .mobile-menu a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(51, 43, 37, .82);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    background: var(--button);
    color: #ffffff;
  }

  .mobile-menu-cta {
    margin-top: 4px;
    background: var(--button);
    color: #ffffff !important;
    text-align: center !important;
  }
}

@media (max-width: 680px) {
  .mobile-menu-wrap {
    top: 64px;
  }
}

/*MODAL*/
.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.reservation-modal.is-open {
  display: flex;
}

.reservation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 43, 37, .42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reservation-modal__dialog {
  position: relative;
  z-index: 1;
  width: 800px;
  max-width: calc(100vw - 40px);
  height: min(1000px, calc(100vh - 40px));
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg);
  border: 1px solid rgba(51, 43, 37, .10);
  box-shadow: 0 30px 90px rgba(64, 48, 34, .28);
}


.reservation-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--button);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(91, 74, 61, .24);
}

.reservation-modal__close:hover {
  background: var(--button-hover);
}

.reservation-modal__iframe {
  display: block;
  width: 100%;
  height: 100%;
}

body.reservation-modal-open {
  overflow: hidden;
}

@media (max-width: 800px) {
  .reservation-modal__dialog {
    width: 780px;
    max-width: calc(100vw - 20px);
  }
}

@media (max-width: 400px) {
  .reservation-modal__dialog {
    width: 360px;
    max-width: calc(100vw - 20px);
  }
}


.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow-mobile-cta {
  display: none;
}

@media (max-width: 800px) {
  .eyebrow-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--button);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 16px 36px rgba(91, 74, 61, .18);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  }
}