:root {
  --wine: #b7222d;
  --wine-dark: #831923;
  --ink: #291f1b;
  --ink-soft: #594a42;
  --cream: #f6f0e8;
  --sand: #dfc08b;
  --white: #fffdf9;
  --line: rgba(41, 31, 27, 0.16);
  --shadow: 0 24px 70px rgba(40, 24, 17, 0.18);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell--narrow {
  max-width: 920px;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #f3c6a8;
}

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

h1,
h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: #f0b591;
  font-weight: 400;
}

h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(25, 18, 15, 0.72), rgba(25, 18, 15, 0.18));
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header:has(.main-nav.is-open) {
  background: rgba(37, 27, 23, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: 248px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.main-nav a {
  position: relative;
  color: white;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: #f3c6a8;
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
}

.nav-call:hover {
  background: white;
  color: var(--ink);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-button__icon {
  display: grid;
  gap: 5px;
  width: 25px;
}

.menu-button__icon i {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon i:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 100svh);
  overflow: hidden;
  background: #38221e;
  color: white;
  isolation: isolate;
}

.hero__image,
.hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 58% 50%;
  transform: scale(1.015);
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 19, 16, 0.9) 0%, rgba(28, 19, 16, 0.63) 46%, rgba(28, 19, 16, 0.18) 76%),
    linear-gradient(0deg, rgba(29, 18, 16, 0.45), transparent 45%),
    radial-gradient(circle at 78% 45%, rgba(155, 32, 58, 0.12), transparent 42%);
}

.hero__inner {
  display: grid;
  align-content: center;
  padding-top: 130px;
  padding-bottom: 120px;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(4.3rem, 8.3vw, 8.1rem);
  text-wrap: balance;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button--primary:hover {
  background: #ca2a36;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: white;
}

.button--ghost:hover {
  background: white;
  color: var(--ink);
}

.hero__facts {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 46%;
  bottom: auto;
  display: block;
  width: 400px;
  padding: 6px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(28, 19, 16, 0.54);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.hero__fact {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 16px 0;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__fact:last-child {
  border-bottom: 0;
}

.hero__fact-label {
  display: block;
  grid-row: 1 / span 2;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__fact strong {
  display: grid;
  grid-column: 2;
  color: white;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero__hours span {
  white-space: nowrap;
}

.hero__fact--call {
  margin: 0 -24px -6px;
  padding: 17px 24px;
  background: rgba(183, 34, 45, 0.16);
  color: white;
  text-decoration: none;
  transition: background 180ms ease;
}

.hero__fact--call:hover {
  background: rgba(183, 34, 45, 0.34);
}

.hero__fact--call strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero__fact--call small {
  display: block;
  grid-column: 2;
  margin-top: 4px;
  color: #f3c6a8;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll span {
  position: relative;
  width: 28px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.hero__scroll span::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #f0b591;
  content: "";
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.3; }
  50% { transform: translate(-50%, 12px); opacity: 1; }
}

.section--intro {
  background:
    radial-gradient(circle at 10% 0%, rgba(183, 34, 45, 0.06), transparent 30%),
    var(--cream);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
}

.section-heading__aside > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.download-link {
  display: inline-grid;
  grid-template-columns: 46px auto;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  color: var(--ink);
  text-decoration: none;
}

.download-link__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(183, 34, 45, 0.42);
  border-radius: 50%;
  color: var(--wine);
  font-size: 1.2rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.download-link > span:last-child {
  display: grid;
  line-height: 1.25;
}

.download-link strong {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.download-link small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.download-link:hover .download-link__icon {
  transform: translateY(2px);
  background: var(--wine);
  color: white;
}

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

.offer-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.offer-card img,
.offer-card__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offer-card img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-card:first-child img {
  object-position: 70% center;
}

.offer-card__overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(32, 20, 17, 0.14), rgba(32, 20, 17, 0.84));
}

.offer-card:hover img,
.offer-card:focus-visible img {
  transform: scale(1.045);
}

.offer-card__number,
.offer-card__arrow {
  position: absolute;
  top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.offer-card__number {
  left: 24px;
}

.offer-card__arrow {
  right: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 1rem;
  transition: background 180ms ease, color 180ms ease;
}

.offer-card:hover .offer-card__arrow {
  background: white;
  color: var(--ink);
}

.offer-card__content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.offer-card__content strong,
.offer-card__content span {
  display: block;
}

.offer-card__content strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.offer-card__content span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature {
  overflow: hidden;
  background: var(--white);
}

.feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.78fr);
  gap: clamp(60px, 8vw, 115px);
  align-items: center;
}

.feature__grid--reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.1fr);
}

.feature__visual {
  position: relative;
  min-height: 680px;
}

.feature__visual::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: 30px;
  bottom: 36px;
  left: -24px;
  border: 1px solid rgba(183, 34, 45, 0.28);
  content: "";
}

.feature__visual img {
  position: absolute;
  z-index: 1;
  inset: 22px 0 0 22px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature__stamp {
  position: absolute;
  z-index: 2;
  right: -32px;
  bottom: 55px;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.1;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 15px 40px rgba(91, 20, 25, 0.32);
}

.feature__copy {
  max-width: 520px;
}

.feature__copy h2 {
  font-size: clamp(3.4rem, 5.6vw, 5.9rem);
}

.feature__copy > p:not(.eyebrow):not(.feature__lead) {
  color: var(--ink-soft);
}

.feature__lead {
  margin-bottom: 22px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.35;
}

.feature__note {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  margin: 32px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.feature__note > span {
  color: var(--wine);
  font-size: 2rem;
  line-height: 1;
}

.feature__note p {
  display: grid;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.feature__note strong {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uv-notice {
  margin: 0 0 30px;
  padding: 18px 20px;
  border-left: 3px solid var(--wine);
  background: rgba(183, 34, 45, 0.07);
}

.uv-notice > strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wine-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uv-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 7px;
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.feature--dark {
  position: relative;
  background:
    radial-gradient(circle at 82% 25%, rgba(177, 35, 63, 0.2), transparent 34%),
    var(--ink);
  color: white;
}

.feature--dark .feature__copy > p:not(.eyebrow):not(.feature__lead) {
  color: rgba(255, 255, 255, 0.7);
}

.feature--dark .feature__lead {
  color: #f0b591;
}

.text-link--light {
  color: #f5c8aa;
}

.wellness-collage {
  position: relative;
  min-height: 720px;
}

.wellness-collage__main,
.wellness-collage__small {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.wellness-collage__main {
  inset: 0 0 80px 60px;
  width: calc(100% - 60px);
  height: calc(100% - 80px);
}

.wellness-collage__small {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 47%;
  height: 250px;
  border: 10px solid var(--ink);
}

.wellness-collage__label {
  position: absolute;
  z-index: 3;
  right: -36px;
  bottom: 48px;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.wellness-collage__label small {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature--cosmetics {
  background:
    linear-gradient(90deg, transparent 70%, rgba(223, 192, 139, 0.18)),
    var(--cream);
}

.feature__visual--portrait img {
  object-position: center;
}

.feature__image-caption {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 0;
  padding: 14px 20px;
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  box-shadow: 0 12px 35px rgba(40, 24, 17, 0.14);
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 32px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.treatment-list li {
  position: relative;
  padding: 15px 10px 15px 25px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.treatment-list li::before {
  position: absolute;
  top: 22px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
  content: "";
}

.atmosphere {
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 0.85fr;
  min-height: 560px;
  background: var(--white);
}

.atmosphere__image {
  min-height: 430px;
}

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

.atmosphere__image--wide img {
  object-position: center;
}

.atmosphere__statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 80px);
  background: var(--wine);
  color: white;
}

.atmosphere__statement .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.atmosphere__statement blockquote {
  margin: 8px 0 30px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.atmosphere__statement > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.contact {
  background:
    radial-gradient(circle at 78% 12%, rgba(183, 34, 45, 0.24), transparent 30%),
    #211916;
  color: white;
}

.contact__heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 90px;
  align-items: end;
  max-width: 970px;
  margin-bottom: 70px;
}

.contact__heading .eyebrow {
  grid-column: 1 / -1;
}

.contact__heading h2 {
  margin: 0;
  font-size: clamp(3.7rem, 6.4vw, 6.8rem);
}

.contact__heading > p:last-child {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.92fr 0.98fr;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card {
  min-height: 330px;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card--accent {
  background: var(--wine);
}

.contact-card__label {
  display: block;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.2;
}

.contact-card address {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.contact-card__phone {
  display: inline-block;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-decoration: none;
}

.contact-card__mail {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.hours {
  margin: 0;
}

.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hours dt {
  color: rgba(255, 255, 255, 0.66);
}

.hours dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.contact-card__note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.76rem;
}

.legal {
  padding: 40px 0;
  background: var(--white);
}

.legal details {
  border-block: 1px solid var(--line);
}

.legal summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 130px;
  padding: 30px 4px;
  cursor: pointer;
  list-style: none;
}

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

.legal summary .eyebrow {
  margin-bottom: 10px;
}

.legal summary strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.legal__plus {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.legal__plus::before,
.legal__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--wine);
  content: "";
}

.legal__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.legal details[open] .legal__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.legal__content {
  padding: 20px 4px 70px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal__content h2 {
  margin-bottom: 45px;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 5rem);
}

.legal__content h3 {
  margin: 38px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.legal__content p {
  max-width: 78ch;
}

.legal__content a {
  color: var(--wine);
}

.site-footer {
  padding: 60px 0 28px;
  background: #181210;
  color: white;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer {
  width: 290px;
}

.footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__top-link {
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.footer__top-link span {
  margin-left: 6px;
  color: #f0b591;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-links [aria-current="page"] {
  color: white;
  text-decoration-thickness: 2px;
}

.legal-page {
  background: var(--cream);
}

.legal-page .site-header {
  background: rgba(37, 27, 23, 0.97);
}

.legal-main {
  padding-top: 88px;
}

.legal-hero {
  padding: 105px 0 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 34, 45, 0.3), transparent 32%),
    var(--ink);
  color: white;
}

.legal-hero h1 {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.legal-hero > .shell > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(55px, 8vw, 110px);
  justify-content: center;
  align-items: start;
  padding-top: 90px;
  padding-bottom: 120px;
}

.legal-toc {
  position: sticky;
  top: 125px;
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-toc strong {
  padding: 18px 0 12px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-toc a {
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--wine);
}

.legal-document {
  min-width: 0;
}

.legal-callout {
  margin-bottom: 32px;
  padding: 28px 30px;
  border-left: 4px solid var(--wine);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(40, 24, 17, 0.08);
}

.legal-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.legal-callout p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 115px;
}

.legal-section:first-child {
  border-top: 0;
}

.legal-section h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.legal-section h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.legal-section p,
.legal-list {
  color: var(--ink-soft);
}

.legal-section a {
  color: var(--wine-dark);
  overflow-wrap: anywhere;
}

.legal-kicker {
  margin-bottom: 12px;
  color: var(--wine) !important;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-list {
  padding-left: 1.25rem;
}

.legal-list li {
  margin-bottom: 7px;
  padding-left: 5px;
}

.legal-updated {
  margin-top: 38px;
  color: rgba(89, 74, 66, 0.65) !important;
  font-size: 0.78rem;
  font-style: italic;
}

.mobile-actions {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.7rem;
  }

  .nav-call {
    display: none;
  }

  .feature__grid,
  .feature__grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    gap: 55px;
  }

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

  .contact-card--accent {
    grid-row: span 2;
  }

  .contact-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .wellness-collage__label {
    right: -10px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 66px;
    font-size: 16px;
  }

  .section {
    padding: 85px 0;
  }

  .site-header {
    height: 72px;
  }

  .legal-main {
    padding-top: 72px;
  }

  .legal-hero {
    padding: 80px 0 70px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 60px;
    padding-bottom: 85px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .brand {
    width: 205px;
  }

  .menu-button {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 38px 24px 100px;
    overflow-y: auto;
    visibility: hidden;
    background: #251b18;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero__inner {
    align-content: center;
    padding-top: 110px;
    padding-bottom: 260px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 13vw, 6rem);
  }

  .hero__image {
    object-position: 66% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(27, 18, 15, 0.9), rgba(27, 18, 15, 0.34)),
      linear-gradient(0deg, rgba(29, 18, 16, 0.7), transparent 50%);
  }

  .hero__facts {
    top: auto;
    right: 18px;
    bottom: 32px;
    left: 18px;
    width: auto;
    padding: 4px 18px;
    transform: none;
  }

  .hero__fact {
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 13px 0;
  }

  .hero__fact--call {
    grid-column: auto;
    margin: 0 -18px -4px;
    padding: 14px 18px;
    border-top: 0;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading--split,
  .feature__grid,
  .feature__grid--reverse,
  .contact__heading {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 26px;
  }

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

  .offer-card {
    min-height: 410px;
  }

  .feature__grid,
  .feature__grid--reverse {
    gap: 65px;
  }

  .feature__copy {
    max-width: 620px;
  }

  .feature__visual {
    min-height: 560px;
  }

  .feature__copy h2 {
    font-size: clamp(3.4rem, 13vw, 5.3rem);
  }

  .feature--dark .feature__copy {
    order: 2;
  }

  .wellness-collage {
    min-height: 610px;
  }

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

  .atmosphere__statement {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 360px;
  }

  .contact__heading {
    gap: 14px;
  }

  .contact__heading .eyebrow {
    grid-column: auto;
  }

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

  .contact-card,
  .contact-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .contact-card__phone {
    font-size: clamp(3.3rem, 12vw, 4.8rem);
  }

  .footer__top {
    grid-template-columns: 1fr auto;
  }

  .footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(31, 23, 20, 0.97);
    color: white;
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 66px;
    color: white;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a:first-child {
    background: var(--wine);
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand {
    width: 176px;
  }

  .menu-button__label {
    display: none;
  }

  .hero {
    min-height: 960px;
  }

  .hero__inner {
    align-content: start;
    padding-top: 138px;
  }

  .hero__fact,
  .hero__fact:nth-child(2) {
    grid-template-columns: 1fr;
    row-gap: 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero__fact-label {
    grid-row: auto;
    margin-bottom: 1px;
  }

  .hero__fact strong,
  .hero__fact--call small {
    grid-column: 1;
  }

  .hero__fact--call {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17.5vw, 5rem);
  }

  .hero__lead {
    max-width: 94%;
    font-size: 1rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .hero__facts > div {
    padding: 0 0 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .offer-card {
    min-height: 360px;
  }

  .offer-card__content strong {
    font-size: 2.3rem;
  }

  .feature__visual {
    min-height: 430px;
  }

  .feature__visual::before {
    top: -15px;
    right: 18px;
    left: -10px;
  }

  .feature__visual img {
    inset: 14px 0 0 10px;
    width: calc(100% - 10px);
    height: calc(100% - 14px);
  }

  .feature__stamp {
    right: -8px;
    bottom: 20px;
    width: 102px;
    height: 102px;
    font-size: 1.05rem;
  }

  .feature__image-caption {
    right: 0;
    font-size: 0.86rem;
  }

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

  .wellness-collage {
    min-height: 450px;
  }

  .wellness-collage__main {
    inset: 0 0 55px 28px;
    width: calc(100% - 28px);
    height: calc(100% - 55px);
  }

  .wellness-collage__small {
    width: 55%;
    height: 150px;
    border-width: 6px;
  }

  .wellness-collage__label {
    right: -6px;
    bottom: 28px;
    width: 94px;
    height: 94px;
    font-size: 1.2rem;
  }

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

  .atmosphere__image {
    min-height: 310px;
  }

  .atmosphere__statement {
    grid-column: auto;
    min-height: 340px;
  }

  .contact__heading h2 {
    font-size: clamp(3.7rem, 16vw, 5rem);
  }

  .contact-card {
    padding: 36px 26px;
  }

  .contact-card__label {
    margin-bottom: 28px;
  }

  .hours > div {
    display: grid;
    gap: 2px;
  }

  .hours dd {
    text-align: left;
  }

  .legal summary strong {
    font-size: 1.6rem;
  }

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

  .brand--footer {
    width: min(270px, 100%);
  }

  .footer__top-link {
    grid-row: 3;
    justify-self: start;
  }

  .footer__bottom {
    display: grid;
  }

  .footer__legal-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
