* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f4f0e8;
  color: #1e211c;
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button,
input,
select,
textarea {
  font: inherit;
}
.announcement {
  height: 34px;
  background: #1e211c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.announcement a {
  border-bottom: 1px solid #90988b;
}
.site-header {
  height: 88px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.35s;
}
.site-header.scrolled,
.site-header.inner {
  position: fixed;
  top: 0;
  background: rgba(244, 240, 232, 0.96);
  color: #1e211c;
  border-color: #d6d0c4;
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}
.brand-name {
  font-size: 14px;
  letter-spacing: 0.24em;
  font-weight: 500;
}
.site-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
}
.site-nav a:after {
  content: "";
  height: 1px;
  width: 0;
  background: currentColor;
  position: absolute;
  bottom: -7px;
  left: 0;
  transition: 0.25s;
}
.site-nav a:hover:after,
.site-nav a.active:after {
  width: 100%;
}
.nav-cta {
  border: 1px solid currentColor;
  padding: 11px 18px;
}
.nav-cta:after {
  display: none;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: inherit;
}
.hero,
.page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero {
  height: 100vh;
  min-height: 700px;
}
.page-hero {
  height: 68vh;
  min-height: 520px;
}
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.hero-media {
  background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=2200&q=88");
}
.page-hero-media {
  background-image: var(--hero);
}
.hero-overlay,
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 19, 14, 0.68),
    rgba(15, 19, 14, 0.18) 62%,
    rgba(15, 19, 14, 0.1)
  );
}
.hero-content,
.page-hero-content {
  position: absolute;
  z-index: 2;
  left: 7vw;
  bottom: 12vh;
  max-width: 780px;
}
.page-hero-content {
  bottom: 10vh;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.eyebrow.dark {
  color: #6b7466;
}
.hero h1,
.page-hero h1,
.section h2,
.statement blockquote,
.display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 0.94;
  margin: 0;
}
.hero h1 {
  font-size: clamp(64px, 9vw, 128px);
}
.page-hero h1 {
  font-size: clamp(58px, 7vw, 102px);
}
em {
  font-weight: 400;
}
.hero-copy {
  max-width: 510px;
  font-size: 16px;
  margin: 28px 0 34px;
}
.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
}
.button-light {
  background: #f6f2ea;
  color: #1e211c;
}
.button-dark {
  background: #1e211c;
  color: #fff;
}
.button-outline {
  border-color: #1e211c;
}
.text-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid #777;
  padding-bottom: 5px;
}
.text-link.light {
  border-color: #ddd;
}
.scroll-note {
  position: absolute;
  right: 4vw;
  bottom: 8vh;
  z-index: 2;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}
.section {
  padding: 120px 7vw;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 6vw;
}
.intro-label {
  display: flex;
  gap: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.intro-label span {
  color: #7a8376;
}
.intro-copy h2,
.section-heading h2,
.experience-copy h2,
.booking-copy h2 {
  font-size: clamp(50px, 6vw, 86px);
}
.kicker {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
}
.two-column-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  margin-top: 55px;
  max-width: 900px;
  color: #5b6058;
}
.editorial-image {
  height: 80vh;
  min-height: 600px;
  background: url("https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=2200&q=88")
    center/cover;
  position: relative;
}
.image-caption {
  position: absolute;
  left: 4vw;
  right: 4vw;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 70px;
}
.section-heading > p {
  color: #666c63;
}
.service-list {
  border-top: 1px solid #c9c4ba;
}
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid #c9c4ba;
  align-items: center;
}
.service-number,
.service-type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #737a70;
}
.service-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.service-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  margin: 0;
}
.service-content p {
  margin: 0;
  color: #60665d;
}
.service-arrow {
  font-size: 22px;
}
.statement {
  background: #263127;
  color: #fff;
  padding: 150px 7vw;
  text-align: center;
}
.statement-inner {
  max-width: 1000px;
  margin: auto;
}
.statement blockquote {
  font-size: clamp(48px, 6vw, 90px);
}
.statement-meta {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-top: 45px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b7c0b3;
}
.experience {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 9vw;
  align-items: center;
}
.experience-photo {
  height: 720px;
  background: url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1400&q=88")
    center/cover;
}
.experience-copy p {
  color: #636960;
  max-width: 460px;
  margin: 28px 0;
}
.booking {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10vw;
  background: #ddd5c8;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-form label span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 0;
  border-bottom: 1px solid #92988f;
  background: transparent;
  padding: 12px 0;
  outline: none;
}
.booking-form textarea {
  min-height: 100px;
  resize: vertical;
}
.booking-form .full,
.booking-form button,
.form-note {
  grid-column: 1/-1;
}
.form-note {
  font-size: 10px;
  color: #686e65;
}
.site-footer {
  background: #171b17;
  color: #ddd;
  padding: 90px 7vw 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #3a4039;
  padding-bottom: 50px;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
}
.footer-top p {
  max-width: 420px;
  color: #969c95;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 55px 0;
}
.footer-grid span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #777f77;
}
.footer-grid p {
  font-size: 13px;
}
.footer-bottom {
  border-top: 1px solid #3a4039;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: #ece7de;
}
.card-image {
  height: 380px;
  background: var(--image) center/cover;
}
.card-body {
  padding: 28px;
}
.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 33px;
  font-weight: 400;
  margin: 0 0 8px;
}
.card p {
  color: #666c63;
}
.price-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #c9c4ba;
  padding: 20px 0;
}
.price-row h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}
.price-row p {
  margin: 4px 0;
  color: #6a7067;
}
.price {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.split-image {
  background: var(--image) center/cover;
}
.split-copy {
  padding: 110px 8vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.split-copy h2 {
  font-size: clamp(50px, 5vw, 78px);
}
.split-copy p {
  color: #646a61;
  max-width: 530px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value {
  border-top: 1px solid #aaa398;
  padding-top: 24px;
}
.value h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}
.gallery-grid figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 6;
}
.gallery-grid figure:nth-child(2) {
  grid-column: span 5;
  grid-row: span 4;
}
.gallery-grid figure:nth-child(3) {
  grid-column: span 5;
  grid-row: span 5;
}
.gallery-grid figure:nth-child(4) {
  grid-column: span 4;
  grid-row: span 5;
}
.gallery-grid figure:nth-child(5) {
  grid-column: span 8;
  grid-row: span 5;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 9vw;
}
.contact-detail {
  border-top: 1px solid #aaa398;
  padding: 24px 0;
}
.contact-detail span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #72796f;
}
.map-placeholder {
  height: 520px;
  background:
    linear-gradient(rgba(31, 38, 31, 0.15), rgba(31, 38, 31, 0.15)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1500&q=80")
      center/cover;
  display: grid;
  place-items: center;
}
.map-placeholder span {
  background: #f4f0e8;
  padding: 18px 24px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.faq-item {
  border-top: 1px solid #aaa398;
  padding: 24px 0;
}
.faq-item summary {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  cursor: pointer;
}
.faq-item p {
  max-width: 780px;
  color: #62685f;
}
.membership {
  background: #263127;
  color: #fff;
}
.membership .card {
  background: #334035;
}
.membership .card p {
  color: #c0c8bd;
}
.membership .card-body {
  min-height: 300px;
}
.membership .button-outline {
  border-color: #fff;
}
@media (max-width: 900px) {
  .site-header {
    height: 72px;
    padding: 0 22px;
  }
  .menu-toggle {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    margin: 7px;
  }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    background: #f4f0e8;
    color: #1e211c;
    display: none;
    flex-direction: column;
    padding: 45px;
  }
  .site-nav.open {
    display: flex;
  }
  .hero-content,
  .page-hero-content {
    left: 24px;
    right: 24px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .section {
    padding: 85px 24px;
  }
  .intro,
  .section-heading,
  .experience,
  .booking,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .two-column-copy,
  .service-content,
  .booking-form,
  .cards,
  .values {
    grid-template-columns: 1fr;
  }
  .experience-photo,
  .split-image {
    height: 520px;
  }
  .footer-top {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-item {
    grid-template-columns: 40px 1fr 24px;
  }
  .gallery-grid {
    display: block;
  }
  .gallery-grid figure {
    height: 420px;
    margin-bottom: 14px;
  }
  .page-hero {
    height: 72vh;
  }
  .announcement {
    gap: 10px;
    font-size: 8px;
  }
  .scroll-note {
    display: none;
  }
}
/* Client forms */
.form-hero {
  height: 62vh;
}
.forms-intro {
  background: #f4f0e8;
}
.form-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.form-card {
  min-height: 430px;
  background: #e7dfd3;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid #741b2c;
}
.form-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin: 20px 0;
}
.form-card p {
  color: #61675f;
}
.form-card-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}
.form-card-muted {
  opacity: 0.66;
  border-top-color: #a7a096;
}
.consultation-page {
  background: #f7f3ed;
}
.consultation-main {
  padding-top: 122px;
}
.consultation-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10vw;
  align-items: end;
  padding-bottom: 70px;
}
.consultation-heading h1 {
  font-size: clamp(58px, 7vw, 104px);
}
.consultation-heading > div > p:last-child {
  color: #6d716b;
}
.confidential-note {
  border-top: 1px solid #aaa398;
  padding-top: 20px;
}
.confidential-note span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #741b2c;
}
.consultation-form {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 7vw 120px;
}
.form-section {
  background: #fff;
  margin-bottom: 22px;
  padding: 42px;
  border: 1px solid #ded8cf;
}
.form-section-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid #d7d1c8;
  padding-bottom: 22px;
  margin-bottom: 32px;
}
.form-section-title span {
  color: #741b2c;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.form-section-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  margin: 0;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.field-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.consultation-form label > span,
.choice-field legend,
.option-columns legend,
.wide-textarea > span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #666d65;
  margin-bottom: 8px;
}
.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"],
.consultation-form input[type="date"],
.consultation-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9fa399;
  background: transparent;
  padding: 12px 2px;
  outline: none;
}
.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: #741b2c;
}
.choice-field,
.option-columns fieldset,
.skin-type-grid {
  border: 0;
  padding: 0;
  margin: 0;
}
.choice-field {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.choice-field legend {
  width: 100%;
}
.choice-field label,
.option-columns label,
.yes-no label,
.consent-check {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.consultation-form input[type="radio"],
.consultation-form input[type="checkbox"] {
  accent-color: #741b2c;
  width: 16px;
  height: 16px;
}
.choice-field label span,
.option-columns label span,
.yes-no label span,
.consent-check span {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: #222;
}
.option-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8d1c7;
  border: 1px solid #d8d1c7;
}
.option-columns fieldset {
  background: #faf8f4;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.option-columns legend {
  font-weight: 600;
  color: #741b2c;
}
.option-columns .other-option {
  margin-bottom: -10px;
}
.skin-type-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #d8d1c7;
  border: 1px solid #d8d1c7;
}
.skin-type-grid label {
  background: #faf8f4;
  padding: 25px 12px;
  text-align: center;
  cursor: pointer;
}
.skin-type-grid label span {
  display: block;
  margin: 0 0 10px;
  font-size: 11px;
  color: #333;
}
.skin-type-grid input {
  display: block;
  margin: 0 auto;
}
.question-list {
  border-top: 1px solid #d8d1c7;
}
.medical-question {
  display: grid;
  grid-template-columns: 2fr 190px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #d8d1c7;
}
.medical-question > p {
  margin: 0;
}
.yes-no {
  display: flex;
  gap: 18px;
}
.details-field input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.details-field.active input {
  opacity: 1;
}
.wide-textarea {
  display: block;
  margin-top: 32px;
}
.wide-textarea textarea {
  resize: vertical;
}
.consent-section {
  border-top: 4px solid #741b2c;
}
.consent-copy {
  max-width: 940px;
  color: #555d55;
}
.consent-check {
  margin: 30px 0;
  padding: 20px;
  background: #f3eee7;
}
.signature-grid {
  margin-top: 24px;
}
.form-submit-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
}
.form-submit-bar div {
  display: flex;
  flex-direction: column;
}
.form-submit-bar span {
  font-size: 10px;
  color: #6b7169;
}
.form-success {
  background: #263127;
  color: #fff;
  padding: 40px;
  margin-top: 20px;
}
.form-success h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 400;
  margin: 0 0 8px;
}
@media (max-width: 900px) {
  .form-card-grid,
  .consultation-heading,
  .field-grid,
  .field-grid-3,
  .option-columns,
  .skin-type-grid {
    grid-template-columns: 1fr;
  }
  .consultation-main {
    padding-top: 106px;
  }
  .consultation-heading {
    padding-bottom: 45px;
  }
  .consultation-form {
    padding: 0 16px 80px;
  }
  .form-section {
    padding: 26px 20px;
  }
  .medical-question {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .details-field {
    margin-top: 4px;
  }
  .skin-type-grid label {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .skin-type-grid label span {
    margin: 0;
  }
  .skin-type-grid input {
    margin: 0;
  }
  .form-submit-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-submit-bar .button {
    width: 100%;
  }
  .form-card {
    min-height: 320px;
  }
}
