:root {
  --ink: #11100e;
  --coal: #191714;
  --ivory: #f7f1e8;
  --warm: #ded0bd;
  --gold: #c8a96a;
  --olive: #64745b;
  --rose: #9b6c69;
  --line: rgba(247, 241, 232, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.35));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 16, 14, 0.92);
  border-color: var(--line);
}

.brand {
  display: grid;
  gap: 0;
  min-width: 130px;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand span {
  font-size: 18px;
}

.brand small {
  color: var(--gold);
  font-size: 11px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  color: rgba(247, 241, 232, 0.78);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  background: rgba(17, 16, 14, 0.26);
  color: var(--ivory);
  border-color: rgba(247, 241, 232, 0.45);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  padding: 140px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.96) 0%, rgba(17, 16, 14, 0.58) 45%, rgba(17, 16, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 16, 14, 0.9) 0%, rgba(17, 16, 14, 0.1) 40%),
    url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 790px;
  padding-bottom: 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(56px, 11vw, 150px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 78px);
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 610px;
  color: rgba(247, 241, 232, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

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

.hero-panel {
  align-self: end;
  background: rgba(25, 23, 20, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel dl {
  display: grid;
  margin: 0;
}

.hero-panel div {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.hero-panel dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  color: rgba(247, 241, 232, 0.88);
  font-size: 17px;
}

.section-pad {
  padding: clamp(74px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.intro {
  background: var(--ivory);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.intro-grid p {
  margin-bottom: 8px;
  color: rgba(17, 16, 14, 0.7);
  font-size: 19px;
}

.treatments {
  background: var(--coal);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.treatment-card {
  min-height: 310px;
  padding: 28px;
  background: var(--coal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.treatment-card.feature {
  position: relative;
  grid-column: span 2;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
}

.treatment-card.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
  background: linear-gradient(0deg, rgba(17, 16, 14, 0.96), rgba(17, 16, 14, 0));
}

.card-body p,
.stats small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-body span,
.treatment-card p {
  color: rgba(247, 241, 232, 0.74);
}

.stats {
  display: grid;
  gap: 4px;
}

.stats span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--warm);
  font-size: 44px;
  line-height: 1;
}

.method {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background: var(--ivory);
  color: var(--ink);
}

.method-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.method-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.method-content {
  max-width: 760px;
}

.method-list {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.method-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(17, 16, 14, 0.14);
  background: rgba(255, 255, 255, 0.36);
}

.method-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(155, 108, 105, 0.36);
  border-radius: 50%;
  color: var(--rose);
  font-weight: 800;
  font-size: 13px;
  grid-row: 1 / span 2;
}

.method-list h3 {
  grid-column: 2;
  margin-bottom: 8px;
}

.method-list p {
  grid-column: 2;
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(17, 16, 14, 0.68);
}

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

.proof div {
  min-height: 190px;
  padding: 26px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof strong {
  max-width: 250px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
  font-weight: 400;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: clamp(34px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.94), rgba(17, 16, 14, 0.7)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(247, 241, 232, 0.78);
  font-size: 19px;
}

.contact-card {
  padding: 32px;
  background: rgba(247, 241, 232, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card address,
.hours span {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 16, 14, 0.16);
  font-style: normal;
  font-weight: 700;
}

.hours span {
  color: rgba(17, 16, 14, 0.68);
  font-size: 14px;
  font-weight: 600;
}

.booking-page {
  background: var(--ivory);
  color: var(--ink);
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  padding-top: 150px;
  padding-bottom: 54px;
}

.booking-copy {
  max-width: 900px;
}

.booking-copy h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(56px, 9vw, 128px);
}

.booking-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(17, 16, 14, 0.7);
  font-size: 19px;
}

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

.booking-actions .button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(17, 16, 14, 0.24);
}

.booking-widget {
  padding: 0 clamp(18px, 5vw, 72px) clamp(74px, 10vw, 130px);
}

.booking-widget iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: 1px solid rgba(17, 16, 14, 0.14);
  background: #fff;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0b0b0a;
  color: rgba(247, 241, 232, 0.72);
}

.site-footer p {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1060px) {
  .treatment-grid,
  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .intro-grid,
  .method,
  .booking-hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .method-image img {
    min-height: inherit;
  }

  .method-image {
    min-height: 380px;
  }

  .booking-hero {
    padding-top: 128px;
  }
}

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

  .main-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    padding: 22px;
    background: rgba(17, 16, 14, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 92vh;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(17, 16, 14, 0.96) 0%, rgba(17, 16, 14, 0.55) 58%, rgba(17, 16, 14, 0.24) 100%),
      url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1100&q=80") center / cover;
  }

  .treatment-grid,
  .proof {
    grid-template-columns: 1fr;
  }

  .treatment-card.feature {
    grid-column: span 1;
    min-height: 430px;
  }

  .method-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-list span,
  .method-list h3,
  .method-list p {
    grid-column: 1;
  }

  .method-list span {
    grid-row: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .site-footer div {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-panel div,
  .contact-card {
    padding: 20px;
  }
}
