.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-shell {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 189, 143, 0.48), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(220, 197, 174, 0.56), transparent 34%),
    linear-gradient(135deg, #fffaf4 0%, #f3e9df 48%, #ead9c8 100%);
}

.coming-soon {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  padding: 2rem;
  overflow: hidden;
  isolation: isolate;
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  z-index: -1;
  width: min(46vw, 34rem);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(184, 147, 91, 0.18);
  border-radius: 50%;
}

.coming-soon::before {
  top: -18rem;
  right: -8rem;
  box-shadow: 0 0 0 5rem rgba(255, 251, 247, 0.18);
}

.coming-soon::after {
  bottom: -21rem;
  left: -7rem;
  box-shadow: 0 0 0 7rem rgba(184, 147, 91, 0.07);
}

.coming-soon__content {
  width: min(100%, 52rem);
  padding: clamp(2.5rem, 7vw, 5rem);
  text-align: center;
  background: rgba(255, 251, 247, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 32px 90px rgba(72, 53, 37, 0.13);
  backdrop-filter: blur(18px);
}

.coming-soon__logo {
  width: min(100%, 21rem);
  margin: 0 auto clamp(2rem, 6vw, 3.5rem);
}

.coming-soon__logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.coming-soon h1 {
  margin: 0 0 -0.18em;
  padding-bottom: 0.18em;
  color: var(--gold-dark);
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.055em;
  background: linear-gradient(120deg, var(--foreground) 8%, var(--gold-dark) 48%, var(--gold) 88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-shell:not(.site-shell--home) .site-header,
.site-shell.navigation-scrolled .site-header,
.site-shell.navigation-menu-open .site-header {
  backdrop-filter: blur(16px);
  background: rgba(255, 251, 247, 0.95);
  border-bottom-color: rgba(72, 53, 37, 0.08);
  box-shadow: 0 10px 35px rgba(45, 37, 33, 0.06);
}

.site-header__inner {
  width: min(100% - 2rem, 78rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.site-brand--logo {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
}

.site-brand--logo svg {
  width: clamp(10.5rem, 18vw, 13.75rem);
  height: auto;
}

.desktop-menu,
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--foreground);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-current {
  color: var(--gold);
  background: transparent;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-toggle {
  gap: 0.4rem;
  cursor: pointer;
  list-style: none;
}

.site-nav__dropdown-toggle::-webkit-details-marker {
  display: none;
}

.site-nav__dropdown-icon {
  width: 0.48rem;
  height: 0.48rem;
  margin-top: -0.2rem;
  border-right: 1.5px solid currentcolor;
  border-bottom: 1.5px solid currentcolor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.site-nav__dropdown[open] .site-nav__dropdown-icon {
  transform: translateY(0.2rem) rotate(225deg);
}

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  z-index: 10;
  display: grid;
  width: max-content;
  min-width: 13rem;
  max-width: min(20rem, calc(100vw - 2rem));
  padding: 0.55rem;
  border: 1px solid rgba(72, 53, 37, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 251, 247, 0.98);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
}

.site-nav__dropdown-link {
  padding: 0.7rem 0.85rem;
  border-radius: 0.8rem;
  color: var(--foreground);
  font-size: 0.9rem;
  line-height: 1.3;
  white-space: normal;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link.is-current {
  color: var(--gold-dark);
  background: rgba(190, 143, 80, 0.1);
}

.site-header__cta {
  min-width: 0;
}

.hamburger {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(72, 53, 37, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  color: var(--foreground);
  cursor: pointer;
  appearance: none;
}

.hamburger div {
  position: absolute;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  margin: 0;
  background-color: currentcolor;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background-color 0.2s ease;
}

.hamburger div:nth-child(1) {
  top: calc(50% - 7px);
}

.hamburger div:nth-child(2) {
  top: calc(50% - 1px);
}

.hamburger div:nth-child(3) {
  top: calc(50% + 5px);
}

.mobile-menu {
  display: none;
  width: min(100% - 1rem, 78rem);
  position: fixed;
  top: 5.7rem;
  left: 50%;
  z-index: 999;
  margin: 0;
  padding: 1rem;
  transform: translateX(-50%);
  background: rgba(255, 251, 247, 0.95);
  border: 1px solid rgba(72, 53, 37, 0.1);
  border-radius: 1.75rem;
  box-shadow: var(--shadow-soft);
  max-height: calc(100vh - 6.5rem);
  overflow: auto;
}

.mobile-menu.active {
  display: grid;
  gap: 0.45rem;
}

.mobile-menu .site-nav__link {
  justify-content: flex-start;
  width: 100%;
}

.mobile-menu .site-nav__dropdown {
  width: 100%;
}

.mobile-menu .site-nav__dropdown-toggle {
  justify-content: space-between;
}

.mobile-menu .site-nav__dropdown-menu {
  position: static;
  width: auto;
  min-width: 0;
  max-width: none;
  margin: 0 0.4rem 0.35rem;
  padding: 0.35rem 0 0.35rem 0.75rem;
  border: 0;
  border-left: 1px solid rgba(72, 53, 37, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.mobile-menu .site-nav__dropdown-link {
  padding: 0.7rem 0.85rem;
}

.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 6rem;
}

.site-shell--home .site-main {
  padding-top: 0;
}

.cookie-notice {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  width: min(calc(100% - 2rem), 36rem);
  padding: 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 247, 0.96),
    rgba(244, 235, 226, 0.98)
  );
  border: 1px solid rgba(72, 53, 37, 0.12);
  border-radius: 1.75rem;
  box-shadow: var(--shadow-elevated);
  backdrop-filter: blur(18px);
}

.cookie-notice__eyebrow {
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cookie-notice__body {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.cookie-notice__copy {
  flex: 1;
}

.cookie-notice__copy h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
}

.cookie-notice__copy p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-notice__dismiss {
  flex-shrink: 0;
  min-width: 7rem;
}

.site-main > .page-shell:first-child,
.site-main > .page-hero:first-child,
.site-main > .hero:first-child {
  margin-top: 0;
}

.site-shell:not(.site-shell--home) .site-main > .page-hero:first-child {
  margin-top: -6rem;
}

.page-hero {
  width: 100%;
  margin: 0;
  padding: calc(6rem + clamp(2.5rem, 6vw, 4rem)) 0 clamp(2rem, 5vw, 3rem);
  background:
    radial-gradient(circle at top, rgba(216, 189, 143, 0.22), transparent 40%),
    linear-gradient(
      180deg,
      rgba(248, 243, 237, 0.98),
      rgba(239, 231, 222, 0.92)
    );
  border-bottom: 1px solid rgba(72, 53, 37, 0.08);
}

.page-hero--compact {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page-hero__content {
  width: min(100% - 2rem, 56rem);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.page-hero__content .section-label {
  justify-content: center;
}

.page-hero__content h1,
.page-hero__content p {
  max-width: 38rem;
  margin-inline: auto;
}

.page-hero__content p:last-of-type {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.page-hero__content .section-divider {
  margin-inline: auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: clamp(38rem, 100vh, 52rem);
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(247, 242, 236, 0.95) 0%,
      rgba(247, 242, 236, 0.82) 42%,
      rgba(247, 242, 236, 0.2) 100%
    ),
    linear-gradient(180deg, rgba(36, 30, 26, 0.08), rgba(36, 30, 26, 0.24));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(100% - 2rem, 78rem);
  margin: 0 auto;
  min-height: inherit;
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero__content {
  width: min(100%, 41rem);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: rgba(250, 246, 241, 0.58);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2rem;
}

.hero__content h1,
.hero__content h2,
.hero__content h3,
.hero__content p {
  max-width: 34rem;
}

.hero__content .btn-group {
  margin-top: 1.75rem;
}

.hero__content p:last-of-type {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.treatments,
.location {
  width: min(100% - 2rem, 74rem);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.treatments + .location {
  padding-top: 0;
}

.treatments-preview,
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.35rem;
}

.treatments > .btn {
  margin-top: 1.75rem;
}

.treatment-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.7rem;
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid rgba(72, 53, 37, 0.1);
  box-shadow: var(--shadow-soft);
}

.treatment-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--background-strong);
}

.treatment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.treatment-card:hover .treatment-card__media img {
  transform: scale(1.04);
}

.treatment-card__body {
  padding: 1.35rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.treatment-card__body h3 {
  margin-bottom: 0.4rem;
}

.treatment-card__description {
  margin-bottom: 1.1rem;
}

.treatment-card__description > :last-child,
.treatment-type-summary > :last-child,
.treatment-type-choice .description > :last-child {
  margin-bottom: 0;
}

.treatment-card__footer {
  margin-top: auto;
}

.map-card {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(72, 53, 37, 0.1);
  box-shadow: var(--shadow-soft);
}

.map-container iframe {
  width: 100%;
  min-height: 26rem;
  border: 0;
  filter: saturate(0.8) contrast(1.02);
}

.treatment-type-hero {
  width: min(100% - 2rem, 74rem);
  margin: 0 auto;
  padding: clamp(2.75rem, 7vw, 5rem) 0 2rem;
}

.treatment-type-hero__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(255, 251, 247, 0.62);
  border: 1px solid rgba(72, 53, 37, 0.09);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.treatment-type-hero__copy--with-image {
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
}

.treatment-type-hero__heading h1 {
  margin-bottom: 0.15em;
}

.treatment-type-summary {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1.06rem;
}

.treatment-type-summary img {
  max-width: 100%;
  height: auto;
}

.treatment-type-hero__image {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-elevated);
}

.treatment-type-hero__image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.treatment-type-actions {
  grid-column: 1 / -1;
}

.treatment-type-content {
  padding-bottom: 5rem;
}

.treatment-list-section + .treatment-list-section {
  margin-top: 2.5rem;
}

.service-list {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  padding: 1.5rem;
  background: rgba(255, 251, 247, 0.9);
  border: 1px solid rgba(72, 53, 37, 0.1);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.service-card__header h3 {
  margin-bottom: 0.35rem;
}

.service-duration {
  flex-shrink: 0;
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: rgba(232, 218, 204, 0.42);
  border-radius: 999px;
  color: var(--foreground);
  white-space: nowrap;
}

.service-pricing h4 {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-pricing dl {
  margin: 0;
}

.service-pricing__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(72, 53, 37, 0.09);
}

.service-pricing__row:first-child {
  padding-top: 0;
  border-top: 0;
}

.treatment-faq-list {
  display: grid;
  gap: 0.9rem;
}

.treatment-faq-panel {
  overflow: hidden;
  background: rgba(255, 251, 247, 0.9);
  border: 1px solid rgba(72, 53, 37, 0.1);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.treatment-faq-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  color: var(--foreground);
  cursor: pointer;
  list-style: none;
}

.treatment-faq-panel summary::-webkit-details-marker {
  display: none;
}

.treatment-faq-panel summary::after {
  content: "+";
  display: grid;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 218, 204, 0.58);
  color: var(--gold-dark);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}

.treatment-faq-panel[open] summary::after {
  content: "−";
}

.treatment-faq-panel summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}

.treatment-faq-panel__question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}

.treatment-faq-panel__answer {
  padding: 1.1rem 1.35rem 1.3rem;
  border-top: 1px solid rgba(72, 53, 37, 0.09);
  color: var(--foreground-soft);
}

.treatment-faq-panel__answer p:last-child {
  margin-bottom: 0;
}

.service-pricing__row dt,
.service-pricing__row dd {
  margin: 0;
}

.gallery-grid {
  width: min(100% - 2rem, 74rem);
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.gallery-image {
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 251, 247, 0.92);
  box-shadow: var(--shadow-soft);
}

.gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.gallery-image:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.contact-layout {
  width: min(100% - 2rem, 74rem);
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.6rem;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 1.5rem;
}

.contact-copy,
.contact-form-shell,
.contact-map-card {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-copy,
.contact-map-card {
  background: rgba(255, 251, 247, 0.84);
  border: 1px solid rgba(72, 53, 37, 0.09);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-shell {
  background: linear-gradient(
    180deg,
    rgba(255, 251, 247, 0.94),
    rgba(243, 235, 225, 0.92)
  );
  border: 1px solid rgba(184, 147, 91, 0.18);
  border-radius: 2rem;
  box-shadow: var(--shadow-elevated);
}

.contact-form-shell__copy {
  max-width: 32rem;
}

.contact-form-shell form {
  width: 100%;
  max-width: none;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.contact-copy > :last-child {
  margin-bottom: 0;
}

.contact-address p {
  margin: 0.4rem 0 0;
}

.contact-hours {
  margin-top: 1.75rem;
}

.contact-hours h3,
.contact-socials h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.contact-socials {
  margin-top: 1.75rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
}

.contact-social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  border: 1px solid rgba(143, 112, 69, 0.28);
  border-radius: 50%;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.contact-social-link .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-social-link:hover {
  color: #fffaf4;
  border-color: var(--gold-dark);
  background: var(--gold-dark);
}

.contact-hours-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.contact-hours-list__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(72, 53, 37, 0.09);
}

.contact-hours-list__row dt,
.contact-hours-list__row dd {
  margin: 0;
}

.contact-hours-list__row dd {
  color: var(--foreground-soft);
  text-align: right;
}

.contact-special-days {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--foreground-soft);
}

.contact-special-days li + li {
  margin-top: 0.55rem;
}

.contact-copy h2,
.contact-map-card h2,
.contact-form-shell h2 {
  margin-bottom: 0.6rem;
}

.contact-map-card .map-container iframe {
  min-height: 20rem;
  border-radius: 1.5rem;
}

.legal-page {
  width: min(100% - 2rem, 74rem);
  margin: 0 auto 5rem;
}

.legal-prose {
  width: min(100%, 54rem);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: rgba(255, 251, 247, 0.86);
  border: 1px solid rgba(72, 53, 37, 0.09);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.legal-prose > :first-child {
  margin-top: 0;
}

.legal-prose > :last-child {
  margin-bottom: 0;
}

.legal-prose h1,
.legal-prose h2,
.legal-prose h3,
.legal-prose h4 {
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}

.legal-prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.legal-prose h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.legal-prose p,
.legal-prose li {
  color: var(--foreground-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-prose ul,
.legal-prose ol {
  margin: 0 0 1.2rem;
  padding-left: 1.35rem;
}

.legal-prose li + li {
  margin-top: 0.45rem;
}

.legal-prose a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-prose strong {
  color: var(--foreground);
}

.booking-page {
  width: min(100% - 2rem, 74rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 4rem) 0 5rem;
}

.booking-page__header {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.booking-stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.booking-step {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255, 251, 247, 0.7);
  border: 1px solid rgba(72, 53, 37, 0.08);
}

.booking-step.is-current {
  background: linear-gradient(
    135deg,
    rgba(232, 218, 204, 0.86),
    rgba(255, 251, 247, 0.86)
  );
  border-color: rgba(184, 147, 91, 0.26);
  box-shadow: var(--shadow-soft);
}

.booking-step__label {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.booking-step__title {
  display: block;
  margin-top: 0.25rem;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.booking-panel {
  padding: clamp(1.05rem, 2.4vw, 1.45rem);
  background: rgba(255, 251, 247, 0.82);
  border: 1px solid rgba(72, 53, 37, 0.1);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.booking-panel + .booking-panel,
.booking-panel + .booking-note {
  margin-top: 1.25rem;
}

.booking-page > .btn-group {
  margin-top: 1.5rem;
}

.booking-note {
  padding: 1rem 1.15rem;
  background: rgba(232, 218, 204, 0.35);
  border: 1px solid rgba(184, 147, 91, 0.18);
  border-radius: 1.35rem;
  color: var(--foreground);
}

.booking-note p:last-child {
  margin-bottom: 0;
}

.booking-choice-grid,
.appointment-dates-grid,
.appointment-times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
}

.appointment-dates-grid,
.appointment-times-grid {
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 0.8rem;
}

.booking-list {
  display: grid;
  gap: 1rem;
}

.booking-choice-link,
.appointment-choice-link {
  display: block;
  height: 100%;
}

.price-unit-link {
  display: block;
}

.booking-list-item,
.appointment-date-item,
.appointment-time-item {
  height: 100%;
  padding: 1.3rem 1.35rem;
  background: rgba(255, 251, 247, 0.92);
  border: 1px solid rgba(72, 53, 37, 0.08);
  border-radius: 1.65rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.booking-list-item:hover,
.appointment-date-item:hover,
.appointment-time-item:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 147, 91, 0.24);
  background: rgba(243, 235, 225, 0.92);
  box-shadow: var(--shadow-elevated);
}

.booking-list-item.active,
.appointment-date-item.active,
.appointment-time-item.active {
  background: linear-gradient(
    135deg,
    rgba(184, 147, 91, 0.95),
    rgba(143, 112, 69, 0.92)
  );
  border-color: rgba(143, 112, 69, 0.95);
  box-shadow: 0 18px 38px rgba(184, 147, 91, 0.24);
}

.treatment-type-choice .name,
.appointment-date-choice,
.appointment-time-choice {
  color: var(--foreground);
  font-weight: 600;
}

.booking-list-item.active .name,
.booking-list-item.active .description,
.booking-list-item.active .appointment-date-choice,
.booking-list-item.active .appointment-time-choice,
.appointment-date-item.active .appointment-date-choice,
.appointment-time-item.active .appointment-time-choice,
.booking-list-item.active .price,
.booking-list-item.active .price-unit span,
.appointment-date-item.active .appointment-date-choice,
.appointment-time-item.active .appointment-time-choice {
  color: #fffaf4;
}

.treatment-type-choice {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.treatment-type-choice .name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.treatment-type-choice .description {
  margin: 0;
  color: var(--foreground-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.treatment-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.treatment-details .name {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.treatment-details .prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.treatment-option-card:hover {
  transform: none;
  border-color: rgba(72, 53, 37, 0.08);
  background: rgba(255, 251, 247, 0.92);
  box-shadow: var(--shadow-soft);
}

.treatment-option-card--selected {
  border-color: rgba(184, 147, 91, 0.24);
  background: rgba(243, 235, 225, 0.92);
}

.price-unit {
  min-width: 6.8rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(72, 53, 37, 0.08);
  border-radius: 1rem;
  display: grid;
  gap: 0.15rem;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.price-unit:hover {
  border-color: rgba(184, 147, 91, 0.24);
  background: rgba(243, 235, 225, 0.92);
  box-shadow: var(--shadow-soft);
}

.booking-list-item.active .price-unit,
.price-unit.active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.price-unit.active {
  background: linear-gradient(
    135deg,
    rgba(184, 147, 91, 0.95),
    rgba(143, 112, 69, 0.92)
  );
  border-color: rgba(143, 112, 69, 0.95);
  box-shadow: 0 18px 38px rgba(184, 147, 91, 0.24);
}

.price-unit.active span {
  color: #fffaf4;
}

.appointment-date-item,
.appointment-time-item {
  display: grid;
  place-items: center;
  min-height: 7.5rem;
  text-align: center;
}

.appointment-date-item,
.appointment-time-item {
  min-height: 5.5rem;
  padding: 0.95rem 1rem;
  border-radius: 1.25rem;
}

.appointment-date-choice,
.appointment-time-choice {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.appointment-date-choice,
.appointment-time-choice {
  font-size: 1.28rem;
}

.booking-details-form {
  width: min(100%, 36rem);
  margin-inline: auto;
}

.details-treatment-preview {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  background: rgba(255, 251, 247, 0.74);
  border: 1px solid rgba(72, 53, 37, 0.09);
  border-radius: 1.35rem;
}

.success-card {
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.success-card p:last-of-type {
  margin-bottom: 0;
}

.success-actions {
  margin-top: 1.5rem;
  justify-content: center;
}

.site-footer {
  margin-top: auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem 1.5rem;
  color: rgba(255, 250, 244, 0.78);
  background:
    radial-gradient(
      circle at top left,
      rgba(184, 147, 91, 0.18),
      transparent 28%
    ),
    #1f1916;
}

.site-footer__inner {
  width: min(100% - 2rem, 78rem);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer__brand {
  max-width: 24rem;
}

.site-footer__brand .site-brand--logo svg {
  filter: brightness(0) invert(1);
}

.site-footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.site-footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fffaf4;
  border: 1px solid rgba(255, 250, 244, 0.22);
  border-radius: 50%;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.site-footer__social-link .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.site-footer__social-link:hover {
  color: #1f1916;
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.site-footer__text,
.site-footer__link {
  color: rgba(255, 250, 244, 0.68);
}

.site-footer__heading {
  margin-bottom: 0.9rem;
  color: #fffaf4;
  font-size: 1.4rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer__link:hover {
  color: var(--gold-light);
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 250, 244, 0.1);
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top right,
      rgba(184, 147, 91, 0.16),
      transparent 30%
    ),
    linear-gradient(180deg, #f9f4ee 0%, #efe6db 100%);
}

.auth-main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-shell {
  width: min(100%, 32rem);
}

.auth-brand {
  margin-bottom: 1.4rem;
  display: flex;
  justify-content: center;
}

.auth-brand svg {
  width: 5.25rem;
  height: auto;
}

.auth-card {
  background: rgba(255, 251, 247, 0.88);
  border: 1px solid rgba(72, 53, 37, 0.12);
  border-radius: 2rem;
  padding: clamp(1.6rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-elevated);
}

.auth-card h1 {
  margin-bottom: 0.55rem;
  font-size: clamp(2.1rem, 5vw, 3rem);
}

.auth-copy {
  margin-bottom: 1.35rem;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .desktop-menu,
  .site-header__actions {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile-menu {
    top: 5.4rem;
  }

  .mobile-menu.active {
    display: grid;
  }

  .contact-layout,
  .site-footer__grid,
  .treatment-type-hero__copy--with-image {
    grid-template-columns: 1fr;
  }

  .service-card__header {
    flex-direction: column;
  }

  .service-duration {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 0.6rem;
  }

  .site-brand--logo svg {
    width: min(11.5rem, 100%);
  }

  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 1rem, 78rem);
  }

  .page-hero,
  .treatments,
  .location,
  .gallery-grid,
  .contact-layout,
  .booking-page {
    width: min(100% - 1rem, 74rem);
  }

  .treatment-type-hero {
    width: min(100% - 1.25rem, 74rem);
  }

  .page-hero {
    width: 100%;
    padding-top: calc(5.5rem + 2.5rem);
  }

  .page-hero__content {
    width: min(100% - 1rem, 56rem);
  }

  .hero {
    min-height: auto;
  }

  .hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(247, 242, 236, 0.86) 0%,
        rgba(247, 242, 236, 0.82) 52%,
        rgba(247, 242, 236, 0.7) 100%
      ),
      linear-gradient(180deg, rgba(36, 30, 26, 0.06), rgba(36, 30, 26, 0.2));
  }

  .hero__inner {
    align-items: flex-end;
    width: min(100% - 1rem, 78rem);
    padding: 7rem 0 1rem;
  }

  .hero__content {
    width: 100%;
  }

  .treatments-preview,
  .treatments-grid,
  .gallery-grid,
  .booking-choice-grid,
  .appointment-dates-grid,
  .appointment-times-grid {
    grid-template-columns: 1fr;
  }

  .treatment-details {
    align-items: flex-start;
    flex-direction: column;
  }

  .treatment-details .prices {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .auth-links {
    flex-direction: column;
  }

  .cookie-notice {
    right: 0.625rem;
    bottom: 0.625rem;
    left: 0.625rem;
    width: auto;
    padding: 1rem;
    border-radius: 1.4rem;
  }

  .cookie-notice__body {
    flex-direction: column;
    align-items: stretch;
  }
}
