:root {
  --color-cream: #e9e5d8;
  --color-warm-beige: #d9c7b8;
  --color-peach: #e6ae91;
  --color-peach-deep: #cc9275;
  --color-white: #fffdf8;
  --color-ink: #272422;
  --color-heading: #4d453f;
  --color-muted: #6d6660;
  --shadow-soft: 0 22px 60px rgba(77, 62, 52, 0.12);
  --max-width: 1180px;
  --header-height: 76px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.7;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid rgba(230, 174, 145, 0.18);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 124px;
  height: 62px;
  overflow: hidden;
}

.brand__logo {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.brand__logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--color-muted);
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--color-peach);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(42deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-42deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
  min-height: calc(100vh - var(--header-height));
  background: var(--color-cream);
}

.hero__media {
  min-height: 520px;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__content {
  align-self: center;
  padding: clamp(32px, 5vw, 70px);
}

.logo-lockup {
  width: min(250px, 70vw);
  height: 184px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--color-cream);
}

.logo-lockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  transform: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-peach-deep);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--color-heading);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.55vw, 4.35rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero__intro,
.page-hero p,
.intro-band p,
.split-section__copy p,
.soft-cta p {
  max-width: 620px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button--primary {
  background: var(--color-peach);
  color: var(--color-white);
}

.button--ghost {
  border-color: rgba(39, 36, 34, 0.18);
  color: var(--color-ink);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-peach-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-band,
.split-section,
.services-preview,
.editorial-gallery,
.page-hero,
.story-layout,
.quote-section,
.treatment-list,
.soft-cta,
.price-note,
.price-accordion,
.contact-grid,
.map-section,
.masonry,
.reviews-grid {
  width: min(var(--max-width), calc(100% - 32px));
  margin-inline: auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(80px, 13vw, 160px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding-bottom: clamp(80px, 11vw, 150px);
}

.split-section__image,
.story-layout__image {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.split-section__image img,
.story-layout__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.services-preview {
  padding: clamp(70px, 11vw, 135px) 0;
  border-top: 1px solid rgba(230, 174, 145, 0.2);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  min-height: 230px;
  padding: 34px;
  background: var(--color-cream);
  border-radius: 6px;
}

.service-grid span,
.treatment-list span {
  display: block;
  margin-bottom: 38px;
  color: var(--color-peach-deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.service-grid p,
.treatment-list p,
.story-layout p,
.price-note p,
.contact-panel p {
  color: var(--color-muted);
}

.editorial-gallery {
  padding: clamp(70px, 11vw, 140px) 0;
}

.image-row {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}

.image-row img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 4px;
}

.image-row img:nth-child(2) {
  object-position: center;
}

.instagram-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(230, 174, 145, 0.24);
  border-bottom: 1px solid rgba(230, 174, 145, 0.24);
  color: var(--color-muted);
}

.instagram-card strong {
  color: var(--color-peach-deep);
  font-weight: 500;
}

.page {
  padding-top: clamp(48px, 8vw, 96px);
}

.page-hero {
  padding: clamp(60px, 9vw, 120px) 0 clamp(44px, 8vw, 96px);
}

.page-hero--narrow h1,
.page-hero--narrow p {
  max-width: 790px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(38px, 8vw, 100px);
  align-items: center;
  padding-bottom: clamp(72px, 10vw, 130px);
}

.story-layout__copy {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.quote-section {
  padding: clamp(66px, 10vw, 120px) 0;
  border-top: 1px solid rgba(230, 174, 145, 0.22);
  border-bottom: 1px solid rgba(230, 174, 145, 0.22);
}

.quote-section p {
  max-width: 950px;
  margin: 0;
  color: var(--color-peach-deep);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
}

.treatment-list {
  display: grid;
  gap: 1px;
  padding-bottom: clamp(64px, 10vw, 120px);
}

.treatment-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  padding: clamp(28px, 5vw, 52px) 0;
  border-top: 1px solid rgba(230, 174, 145, 0.2);
}

.soft-cta {
  margin-bottom: clamp(80px, 12vw, 140px);
  padding: clamp(44px, 7vw, 82px);
  background: var(--color-cream);
  border-radius: 6px;
}

.price-note {
  margin-bottom: 18px;
  padding: 28px;
  background: var(--color-cream);
  border-radius: 6px;
}

.price-note p {
  max-width: 850px;
  margin-bottom: 0;
}

.price-accordion {
  display: grid;
  gap: 12px;
  padding-bottom: clamp(80px, 12vw, 140px);
}

.price-accordion details {
  background: var(--color-white);
  border: 1px solid rgba(230, 174, 145, 0.28);
  border-radius: 6px;
  overflow: hidden;
}

.price-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  list-style: none;
}

.price-accordion summary::-webkit-details-marker {
  display: none;
}

.price-accordion summary::after {
  content: "+";
  color: var(--color-peach-deep);
  font-size: 1.4rem;
  font-weight: 300;
}

.price-accordion details[open] summary::after {
  content: "-";
}

.price-accordion dl {
  margin: 0;
  padding: 0 26px 20px;
}

.price-accordion dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-top: 1px solid rgba(39, 36, 34, 0.08);
}

.price-accordion dt {
  font-weight: 400;
}

.price-accordion dd {
  margin: 0;
  color: var(--color-peach-deep);
  white-space: nowrap;
}

.masonry {
  columns: 2 320px;
  column-gap: 18px;
  padding-bottom: clamp(80px, 12vw, 140px);
}

.masonry img {
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(80px, 12vw, 140px);
}

.review-card {
  min-height: 320px;
  padding: clamp(30px, 5vw, 56px);
  background: var(--color-cream);
  border-radius: 6px;
}

.review-card__stars {
  margin-bottom: 26px;
  color: var(--color-peach);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 300;
  line-height: 1.58;
}

.review-card__name {
  margin: 28px 0 0;
  color: var(--color-peach-deep);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 34px;
}

.contact-grid--single {
  grid-template-columns: 1fr;
}

.contact-panel {
  padding: clamp(28px, 5vw, 48px);
  background: var(--color-cream);
  border-radius: 6px;
}

.contact-panel a:not(.button) {
  display: block;
  margin-bottom: 12px;
  color: var(--color-muted);
}

.contact-panel__note {
  max-width: 620px;
  margin: 22px 0 0;
}

.map-section {
  padding-bottom: clamp(80px, 12vw, 140px);
}

.map-section iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 6px;
  filter: saturate(0.55) contrast(0.95);
}

.site-footer {
  background: var(--color-warm-beige);
  color: rgba(39, 36, 34, 0.75);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
  justify-items: end;
}

.footer-links .button {
  min-height: 42px;
  padding-inline: 18px;
}

.footer-terms {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(39, 36, 34, 0.48);
  cursor: pointer;
  font-size: 0.82rem;
}

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 240ms ease;
}

.terms-modal[aria-hidden="true"] {
  pointer-events: none;
  opacity: 0;
}

.terms-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 36, 34, 0.28);
  backdrop-filter: blur(8px);
}

.terms-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 820px);
  overflow: hidden;
  border: 1px solid rgba(230, 174, 145, 0.22);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 240ms ease;
}

.terms-modal[aria-hidden="true"] .terms-modal__dialog {
  transform: translateY(12px);
}

.terms-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(230, 174, 145, 0.26);
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-heading);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.terms-modal__content {
  max-height: min(82vh, 820px);
  overflow-y: auto;
  padding: clamp(34px, 6vw, 64px);
}

.terms-modal__content h2 {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.terms-modal__content h3 {
  margin: 28px 0 8px;
  color: var(--color-heading);
}

.terms-modal__content p {
  margin-bottom: 10px;
  color: var(--color-muted);
  line-height: 1.65;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid rgba(230, 174, 145, 0.22);
    transform: translateY(-130%);
    transition: transform 260ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
  }

  .hero,
  .intro-band,
  .split-section,
  .story-layout,
  .contact-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero__media {
    min-height: 48vh;
  }

  .hero__content {
    padding: 38px 24px 64px;
  }

  .service-grid,
  .image-row {
    grid-template-columns: 1fr;
  }

  .image-row img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .section-heading {
    display: block;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 68px;
  }

  .brand {
    width: 112px;
    height: 56px;
  }

  .brand__logo img {
    width: 100%;
    transform: none;
  }

  .hero__media {
    min-height: 38vh;
  }

  .logo-lockup {
    width: 214px;
    height: 158px;
  }

  .logo-lockup img {
    width: 100%;
    transform: none;
  }

  h1 {
    font-size: 2.7rem;
  }

  .actions,
  .button {
    width: 100%;
  }

  .treatment-list article {
    grid-template-columns: 1fr;
  }

  .treatment-list span {
    margin-bottom: 14px;
  }

  .price-accordion dl div {
    display: grid;
    gap: 3px;
  }

  .price-accordion dd {
    white-space: normal;
  }
}
