@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --canvas: #f7f2ea;
  --canvas-deep: #ebe1d5;
  --paper: #fffaf3;
  --ink: #1d2925;
  --ink-soft: #56615c;
  --plum: #4e2939;
  --plum-deep: #2f1824;
  --brick: #984b40;
  --brick-dark: #71372f;
  --sage: #75887a;
  --sage-soft: #d5ddd2;
  --ochre: #d7a63a;
  --line: rgba(29, 41, 37, .17);
  --line-strong: rgba(29, 41, 37, .36);
  --light-line: rgba(255, 250, 243, .24);
  --focus: #135bd4;
  --shadow-soft: 0 24px 80px rgba(48, 32, 36, .12);
  --shadow-hard: 14px 14px 0 rgba(78, 41, 57, .12);
  --red: var(--brick);
  --red-dark: var(--brick-dark);
  --cream: var(--paper);
  --shadow: var(--shadow-soft);
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1360px;
  --header: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection {
  background: var(--ochre);
  color: var(--plum-deep);
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 430;
  letter-spacing: -.045em;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--paper);
  padding: .8rem 1rem;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.section {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
  padding-block: clamp(6rem, 10vw, 10rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--brick-dark);
  font-size: .7rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: .9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
  transition: transform .22s cubic-bezier(.2, .7, .2, 1), background .22s ease, color .22s ease, border-color .22s ease;
}

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

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button-primary:hover {
  border-color: var(--plum);
  background: var(--plum);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--plum);
  background: rgba(78, 41, 57, .05);
  color: var(--plum);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--plum-deep);
}

.button-light:hover {
  background: var(--ochre);
  border-color: var(--ochre);
}

.button-ghost {
  border-color: rgba(255, 250, 243, .55);
  color: var(--paper);
}

.button-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 250, 243, .08);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-underline-offset: .28em;
  text-decoration-thickness: 1px;
  font-size: .82rem;
  font-weight: 700;
}

.inline-link:hover {
  color: var(--brick-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header);
  background: rgba(247, 242, 234, .91);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(29, 41, 37, .06);
}

.header-inner {
  width: min(calc(100% - 64px), var(--max));
  min-height: var(--header);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 2rem;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  justify-self: start;
  text-decoration: none;
}

.brand-seal {
  width: 70px;
  height: 42px;
  flex: 0 0 auto;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brick);
  color: #ffe29a;
  font-family: var(--serif);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 243, .18);
}

.brand-seal b {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: .035em;
  font-weight: 620;
}

.brand-seal i {
  position: absolute;
  right: -.42rem;
  bottom: -.24rem;
  min-width: 25px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--canvas);
  border-radius: 999px;
  background: var(--plum-deep);
  color: var(--canvas);
  font-family: var(--sans);
  font-size: .48rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-mark {
  width: 64px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brick);
  color: #ffe29a;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 620;
  letter-spacing: .04em;
}

.brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: .76rem;
  letter-spacing: -.01em;
}

.brand-copy small {
  margin-top: .34rem;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
}

.desktop-nav a,
.header-message {
  position: relative;
  color: var(--ink-soft);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after,
.header-message::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brick);
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.header-message:hover::after,
.header-message:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-book {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem .9rem;
  background: var(--plum);
  color: var(--paper);
  font-size: .71rem;
  font-weight: 700;
  text-decoration: none;
}

.header-book:hover {
  background: var(--brick-dark);
}

/* Hero */
.hero {
  width: min(calc(100% - 64px), var(--max));
  min-height: calc(100svh - var(--header));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(3rem, 6.5vw, 7.5rem);
  align-items: center;
  padding-block: clamp(3.6rem, 7vw, 7.2rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.7rem;
  font-size: clamp(3.65rem, 5vw, 5.8rem);
  line-height: .91;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--plum);
  font-style: italic;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.hero-proof {
  margin: 2.4rem 0 0;
  padding-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem 1.2rem;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  min-width: 0;
}

.hero-proof dt {
  margin-bottom: .2rem;
  color: var(--ink-soft);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.25;
}

.hero-stage {
  min-width: 0;
  min-height: 0;
  height: clamp(570px, 66vh, 710px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, minmax(0, 1fr));
}

.hero-image-main {
  grid-column: 1 / 12;
  grid-row: 1 / 11;
  margin: 0;
  overflow: hidden;
  background: var(--canvas-deep);
  box-shadow: var(--shadow-soft);
}

.hero-image-main img,
.hero-image-main picture {
  width: 100%;
  height: 100%;
}

.hero-image-main img {
  object-fit: cover;
  object-position: 50% 61%;
  filter: saturate(.87) contrast(.98) brightness(.99);
}

.hero-image-detail {
  grid-column: 8 / 13;
  grid-row: 8 / 13;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 9px solid var(--canvas);
  background: var(--canvas-deep);
  box-shadow: var(--shadow-soft);
}

.hero-image-detail img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  filter: saturate(.88) contrast(.97);
}

.hero-room-card {
  grid-column: 1 / 7;
  grid-row: 10 / 13;
  z-index: 3;
  align-self: end;
  max-width: 320px;
  display: grid;
  gap: .45rem;
  padding: 1.25rem 1.4rem;
  background: var(--paper);
  border-left: 4px solid var(--ochre);
  box-shadow: 0 14px 35px rgba(47, 24, 36, .1);
}

.hero-room-card span {
  color: var(--brick-dark);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-room-card strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 470;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.hero-stamp {
  position: absolute;
  top: 1.2rem;
  right: .1rem;
  z-index: 4;
  width: 98px;
  height: 98px;
  display: grid;
  place-content: center;
  gap: .05rem;
  border: 1px solid rgba(255, 250, 243, .7);
  border-radius: 50%;
  background: rgba(47, 24, 36, .83);
  color: var(--paper);
  text-align: center;
  transform: rotate(6deg);
  backdrop-filter: blur(7px);
}

.hero-stamp span {
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1;
}

.hero-stamp small {
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .13em;
}

/* Threshold */
.threshold-band {
  position: relative;
  overflow: hidden;
  background: var(--plum-deep);
  color: var(--paper);
}

.threshold-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 51%;
  width: 1px;
  background: var(--light-line);
}

.threshold-inner {
  width: min(calc(100% - 64px), var(--max));
  min-height: 250px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 0 4rem;
  padding-block: 3.4rem 2rem;
}

.threshold-inner p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.threshold-inner p:last-of-type {
  color: #e8b25e;
  font-style: italic;
  text-align: right;
}

.threshold-inner span {
  grid-column: 1 / -1;
  padding-top: 1.8rem;
  border-top: 1px solid var(--light-line);
  color: rgba(255, 250, 243, .67);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Treatments */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .65fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.section-heading h2,
.inside-heading h2,
.about h2,
.visit h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(3.1rem, 5.4vw, 6.25rem);
  line-height: .94;
  text-wrap: balance;
}

.section-heading-aside > p {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.treatment-card {
  min-height: 350px;
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1.2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .24s ease, color .24s ease;
}

.treatment-card:nth-child(2n + 1) {
  border-right: 0;
}

.treatment-card:hover {
  background: var(--sage-soft);
}

.treatment-card.treatment-feature {
  grid-column: 1 / -1;
  min-height: 400px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  background: var(--plum);
  color: var(--paper);
  border-right: 0;
}

.treatment-card.treatment-feature:hover {
  background: var(--plum-deep);
}

.treatment-card.treatment-quiet {
  grid-column: 1 / -1;
  border-right: 0;
  background: rgba(215, 166, 58, .12);
}

.treatment-card.treatment-quiet:hover {
  background: rgba(215, 166, 58, .2);
}

.card-number {
  color: var(--brick-dark);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.treatment-feature .card-number {
  color: #f0bd6b;
}

.card-copy {
  align-self: end;
  max-width: 760px;
}

.card-kicker {
  margin-bottom: .55rem;
  color: var(--brick-dark);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.treatment-feature .card-kicker {
  color: #f0bd6b;
}

.treatment-card h3 {
  margin-bottom: .85rem;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .96;
}

.treatment-card p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.treatment-feature p:last-child {
  color: rgba(255, 250, 243, .72);
}

.treatment-card > a {
  align-self: start;
  color: inherit;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-underline-offset: .3em;
  text-transform: uppercase;
}

/* Interior gallery */
.inside {
  overflow: hidden;
  background: var(--plum-deep);
  color: var(--paper);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.inside-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.inside .eyebrow {
  color: #f0bd6b;
}

.inside-heading > p {
  margin-bottom: 0;
  color: rgba(255, 250, 243, .68);
  font-size: 1rem;
}

.room-gallery {
  width: min(calc(100% - 64px), 1560px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.room-photo {
  margin: 0;
  overflow: hidden;
}

.room-photo picture {
  display: block;
  overflow: hidden;
  background: #261720;
}

.room-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.98) brightness(.95);
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
}

.room-photo:hover img {
  transform: scale(1.018);
  filter: saturate(.95) contrast(1) brightness(.98);
}

.room-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .75rem;
  color: rgba(255, 250, 243, .72);
  font-family: var(--serif);
  font-size: .9rem;
}

.room-photo figcaption span {
  color: #f0bd6b;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.room-photo-tall {
  grid-column: 1 / 5;
  grid-row: 1 / span 2;
}

.room-photo-tall picture {
  aspect-ratio: 4 / 5.5;
}

.room-photo-wide {
  grid-column: 5 / 13;
  grid-row: 1;
  margin-top: clamp(2rem, 6vw, 6rem);
}

.room-photo-wide picture {
  aspect-ratio: 16 / 8.4;
}

.room-photo-small {
  grid-column: span 4;
}

.room-photo-small picture {
  aspect-ratio: 4 / 5;
}

.room-photo-medium {
  grid-column: 9 / 13;
  margin-top: clamp(-6rem, -4vw, -2rem);
}

.room-photo-medium picture {
  aspect-ratio: 4 / 5.4;
}

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, .7fr) minmax(260px, .34fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-statement,
.about-copy,
.about-book {
  min-width: 0;
}

.about h2 {
  font-size: clamp(3.1rem, 5vw, 5.7rem);
}

.about-lead {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.34;
  letter-spacing: -.025em;
}

.about-copy > p:not(.about-lead) {
  color: var(--ink-soft);
}

.about-signature {
  margin-top: 3rem;
  padding-top: 1.2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.about-signature span {
  color: var(--brick-dark);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.about-signature small {
  color: var(--ink-soft);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-book {
  padding: 1.6rem;
  background: var(--sage-soft);
  border-top: 5px solid var(--sage);
}

.about-book-number {
  display: block;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: .82;
  letter-spacing: -.07em;
}

.about-book p {
  margin: 1.4rem 0 1.8rem;
  font-size: .88rem;
}

.about-book .button {
  width: 100%;
}

/* Visit */
.visit {
  display: grid;
  grid-template-columns: minmax(400px, .9fr) minmax(0, 1.1fr);
  min-height: 900px;
  background: var(--canvas-deep);
}

.visit-image {
  min-height: 760px;
  position: relative;
  overflow: hidden;
}

.visit-image picture,
.visit-image img {
  height: 100%;
}

.visit-image img {
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(.74) contrast(.96);
}

.visit-image span {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: .72rem .85rem;
  background: var(--paper);
  color: var(--plum-deep);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.visit-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.visit-copy > * {
  position: relative;
  z-index: 2;
}

.visit h2 {
  max-width: 760px;
}

.visit address {
  margin: 2.4rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-style: normal;
  line-height: 1.48;
  letter-spacing: -.02em;
}

.visit address strong {
  color: var(--plum);
  font-weight: 540;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.visit-index {
  position: absolute;
  right: -4vw;
  bottom: -2vw;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  color: rgba(78, 41, 57, .08);
  transform: rotate(-6deg);
}

.visit-index b {
  font-family: var(--serif);
  font-size: clamp(10rem, 22vw, 24rem);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.08em;
}

.visit-index span {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: .86;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header) + 2rem);
}

.faq h2 {
  font-size: clamp(3.2rem, 5vw, 5.6rem);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 76px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.2rem 3.6rem 1.2rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -.025em;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: .4rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--brick-dark);
  font-family: var(--sans);
  font-size: 1.15rem;
  transition: transform .2s ease, background .2s ease;
}

details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: rgba(152, 75, 64, .08);
}

details p {
  max-width: 760px;
  margin: -.2rem 4rem 1.8rem 0;
  color: var(--ink-soft);
}

/* Final call to action */
.final-cta {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--plum);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 10rem) 32px;
}

.final-cta-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  color: #f0bd6b;
}

.final-cta h2 {
  max-width: 1050px;
  font-size: clamp(4.2rem, 8vw, 9.2rem);
  color: var(--paper);
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 630px;
  margin-top: 1.8rem;
  color: rgba(255, 250, 243, .72);
  font-size: 1.08rem;
}

.final-signature {
  position: absolute;
  right: -2vw;
  bottom: -7vw;
  display: flex;
  color: rgba(255, 250, 243, .055);
  font-family: var(--serif);
  font-size: clamp(15rem, 35vw, 40rem);
  line-height: .58;
  letter-spacing: -.19em;
  pointer-events: none;
}

/* Privacy */
.privacy-shell {
  width: min(calc(100% - 64px), 1120px);
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.privacy-hero {
  max-width: 900px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line-strong);
}

.privacy-hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: .93;
}

.privacy-hero > p:last-child {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.privacy-summary {
  align-self: start;
  position: sticky;
  top: calc(var(--header) + 2rem);
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 250, 243, .42);
}

.privacy-summary address {
  color: var(--ink-soft);
  font-style: normal;
}

.privacy-summary a,
.privacy-content a {
  color: var(--brick-dark);
  font-weight: 700;
  text-underline-offset: .24em;
}

.privacy-summary small {
  padding-top: .8rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.privacy-content {
  display: grid;
  gap: 0;
}

.privacy-content section {
  padding-block: 0 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--line);
}

.privacy-content h2 {
  margin-bottom: .9rem;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.privacy-content p {
  max-width: 720px;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr .8fr auto;
  gap: 2rem 4rem;
  align-items: start;
  padding-block: 3.2rem 6rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand > div {
  display: grid;
  gap: .25rem;
}

.footer-brand strong {
  font-size: .82rem;
}

.footer-brand > div span {
  color: var(--ink-soft);
  font-size: .69rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
}

.footer-links a,
.footer-contact a {
  font-size: .71rem;
  font-weight: 700;
  text-underline-offset: .25em;
}

.footer-contact {
  justify-content: flex-end;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .66rem;
}

.mobile-booking {
  display: none;
}

/* Reveal language */
@keyframes reveal-failsafe {
  to {
    opacity: 1;
    transform: none;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-failsafe .01s linear 1.5s forwards;
  transition: opacity .72s cubic-bezier(.2, .7, .2, 1), transform .72s cubic-bezier(.2, .7, .2, 1);
}

.js .reveal[data-delay="1"] {
  transition-delay: .11s;
}

.js .reveal[data-delay="2"] {
  transition-delay: .2s;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
  animation: none;
}

@media (max-width: 1180px) {
  :root {
    --header: 76px;
  }

  .header-inner {
    grid-template-columns: minmax(260px, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    gap: 3rem;
  }

  .hero-stage {
    min-height: 590px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.5vw, 5.6rem);
  }

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

  .about-book {
    grid-column: 2;
  }

  .visit-copy {
    padding: clamp(3rem, 6vw, 6rem);
  }
}

@media (max-width: 900px) {
  .section,
  .hero,
  .header-inner,
  .threshold-inner,
  .room-gallery,
  .site-footer {
    width: min(calc(100% - 40px), var(--max));
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-block: 4.2rem 5rem;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(4.2rem, 10.7vw, 7.2rem);
  }

  .hero-stage {
    min-height: 680px;
  }

  .section-heading,
  .inside-heading,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-heading-aside,
  .inside-heading > p {
    max-width: 660px;
  }

  .treatment-card {
    min-height: 320px;
  }

  .room-photo-tall {
    grid-column: 1 / 6;
  }

  .room-photo-wide {
    grid-column: 6 / 13;
  }

  .room-photo-small {
    grid-column: span 6;
  }

  .room-photo-medium {
    grid-column: 7 / 13;
    margin-top: 0;
  }

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

  .about-statement {
    grid-column: 1 / -1;
  }

  .about-book {
    grid-column: auto;
  }

  .visit {
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    min-height: 760px;
  }

  .visit-image {
    min-height: 720px;
  }

  .faq-heading {
    position: static;
    max-width: 660px;
  }

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

  .footer-links {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 70px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  body::before {
    opacity: .035;
  }

  .section,
  .hero,
  .header-inner,
  .threshold-inner,
  .room-gallery,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding-block: 5.5rem;
  }

  .privacy-shell {
    width: min(calc(100% - 28px), 1120px);
    padding-block: 4.5rem;
  }

  .privacy-hero h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .privacy-summary {
    position: static;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    justify-self: end;
  }

  .brand-seal {
    width: 58px;
    height: 36px;
  }

  .brand-seal b {
    font-size: 1.02rem;
  }

  .brand-copy strong {
    font-size: .67rem;
  }

  .brand-copy small,
  .header-message {
    display: none;
  }

  .header-actions {
    gap: .5rem;
  }

  .header-book {
    min-height: 44px;
    padding-inline: .8rem;
    font-size: .67rem;
  }

  .hero {
    gap: 2.8rem;
    padding-block: 3.2rem 4rem;
  }

  .hero h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(3.25rem, 14.6vw, 4.75rem);
    line-height: .91;
  }

  .hero-lead {
    font-size: .98rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.6rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: .55rem;
    margin-top: 1.8rem;
    padding-top: 1rem;
  }

  .hero-proof dt {
    font-size: .52rem;
  }

  .hero-proof dd {
    font-size: .92rem;
  }

  .hero-stage {
    min-height: 0;
    height: auto;
    display: block;
    padding-bottom: 0;
  }

  .hero-image-main {
    height: auto;
    aspect-ratio: 4 / 4.8;
  }

  .hero-image-main img {
    object-position: 50% 54%;
  }

  .hero-image-detail,
  .hero-stamp {
    display: none;
  }

  .hero-room-card {
    width: calc(100% - 28px);
    max-width: none;
    margin: -2.4rem 14px 0;
    position: relative;
  }

  .threshold-band::before {
    display: none;
  }

  .threshold-inner {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: .4rem;
    padding-block: 4rem 2rem;
  }

  .threshold-inner p {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .threshold-inner p:last-of-type {
    text-align: left;
  }

  .threshold-inner span {
    margin-top: 2rem;
    font-size: .56rem;
    line-height: 1.5;
  }

  .section-heading,
  .inside-heading {
    gap: 1.6rem;
    margin-bottom: 3rem;
  }

  .section-heading h2,
  .inside-heading h2,
  .about h2,
  .visit h2,
  .faq h2 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

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

  .treatment-card,
  .treatment-card.treatment-feature,
  .treatment-card.treatment-quiet {
    grid-column: 1;
    min-height: 310px;
    grid-template-columns: 38px 1fr;
    gap: .9rem;
    padding: 1.5rem 1rem;
    border-right: 0;
  }

  .treatment-card > a {
    grid-column: 2;
    align-self: end;
    justify-self: start;
  }

  .treatment-card h3 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .inside {
    padding-bottom: 5rem;
  }

  .inside-heading {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }

  .room-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: .9rem;
    padding-bottom: 1.2rem;
  }

  .room-photo,
  .room-photo-tall,
  .room-photo-wide,
  .room-photo-small,
  .room-photo-medium {
    min-width: 0;
    width: 100%;
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }

  .room-photo picture,
  .room-photo-tall picture,
  .room-photo-wide picture,
  .room-photo-small picture,
  .room-photo-medium picture {
    aspect-ratio: 4 / 5;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-statement,
  .about-book {
    grid-column: auto;
  }

  .about-signature {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-book {
    padding: 1.5rem;
  }

  .visit {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .visit-image {
    min-height: 0;
    aspect-ratio: 4 / 4.5;
  }

  .visit-copy {
    padding: 5.5rem 20px;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visit-actions .button {
    width: 100%;
  }

  .visit-index {
    display: none;
  }

  .faq {
    gap: 3rem;
  }

  summary {
    min-height: 70px;
    padding-right: 3rem;
    font-size: 1.35rem;
  }

  details p {
    margin-right: 1rem;
  }

  .final-cta {
    min-height: 640px;
    padding-inline: 14px;
  }

  .final-cta h2 {
    font-size: clamp(4rem, 16vw, 6rem);
  }

  .final-signature {
    right: 4vw;
    bottom: 2rem;
    font-size: 16rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-block: 2.8rem 3rem;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .footer-note {
    grid-column: 1;
  }

  .mobile-booking {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    min-height: calc(68px + env(safe-area-inset-bottom));
    display: grid;
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: .45rem;
    padding: .45rem .45rem calc(.45rem + env(safe-area-inset-bottom));
    background: rgba(255, 250, 243, .96);
    border-top: 1px solid var(--line-strong);
    backdrop-filter: blur(12px);
    transition: transform .2s ease;
  }

  .booking-active .mobile-booking,
  .hero-active .mobile-booking {
    transform: translateY(120%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-booking a {
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-booking .primary {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--paper);
  }
}

@media (max-width: 380px) {
  .brand-copy {
    display: none;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .section-heading h2,
  .inside-heading h2,
  .about h2,
  .visit h2,
  .faq h2,
  .final-cta h2 {
    font-size: 2.55rem;
    overflow-wrap: anywhere;
  }

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

  .hero-proof div:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .room-photo img {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .brand-seal,
  .header-book,
  .button-primary,
  .threshold-band,
  .inside,
  .final-cta,
  .mobile-booking .primary {
    forced-color-adjust: auto;
  }
}
