@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap");

:root {
  --ink: #173d3c;
  --teal: #0f6063;
  --teal-dark: #0b4d50;
  --red: #b73535;
  --green: #38734f;
  --ivory: #f6f1e8;
  --cream: #eee6d8;
  --paper: #fffcf7;
  --gold: #af8a52;
  --line: rgba(23, 61, 60, 0.18);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 9999; top: 1rem; left: 1rem; padding: .8rem 1rem;
  color: white; background: var(--ink); transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 38px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 5.5rem); color: #f8f4ec; background: var(--ink);
  font-size: .67rem; text-transform: uppercase; letter-spacing: .18em;
}
.announcement p { display: flex; align-items: center; gap: .75rem; margin: 0; }
.announcement p span { color: #dfc79f; }
.announcement i { width: 3px; height: 3px; border-radius: 50%; background: #c8ac7e; }
.announcement a { transition: color .2s ease; }
.announcement a:hover { color: #dfc79f; }

.site-header {
  position: relative; z-index: 50; height: 94px; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(1.25rem, 5vw, 5.5rem);
  border-bottom: 1px solid var(--line); background: rgba(246,241,232,.96);
}
.brand { justify-self: start; display: flex; align-items: center; gap: .75rem; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; object-position: center; }
.brand span { display: flex; flex-direction: column; gap: .12rem; }
.brand strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; letter-spacing: .02em; }
.brand small { font-size: .55rem; text-transform: uppercase; letter-spacing: .19em; color: var(--gold); }
.primary-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.8vw, 3rem); }
.primary-nav a {
  position: relative; padding: .7rem 0; font-size: .69rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .16em;
}
.primary-nav a::after {
  content: ""; position: absolute; right: 0; bottom: .3rem; left: 0; height: 1px;
  background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .3s ease;
}
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end; display: inline-flex; align-items: center; gap: .8rem; padding: .78rem 1.15rem;
  border: 1px solid var(--ink); font-size: .66rem; text-transform: uppercase; letter-spacing: .15em;
  transition: color .25s ease, background .25s ease;
}
.header-cta:hover { color: white; background: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; cursor: pointer; }

.hero {
  position: relative; min-height: calc(100svh - 132px); display: grid; grid-template-columns: 48% 52%;
  overflow: hidden; background: var(--ivory);
}
.hero::before {
  content: ""; position: absolute; width: 25rem; height: 25rem; left: -14rem; bottom: -13rem;
  border: 1px solid rgba(175,138,82,.25); border-radius: 50%;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem) 4vw clamp(3rem, 5vw, 5rem) clamp(1.5rem, 8vw, 8.8rem);
}
.eyebrow {
  display: flex; align-items: center; gap: .8rem; margin: 0 0 1.3rem; color: var(--red);
  font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .24em;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.eyebrow.light { color: #d6bd94; }
.hero h1, .experience h2, .closing-cta h2, .ribbon-heading h2 {
  margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(3.65rem, 6.7vw, 7.3rem); line-height: .92; }
.hero h1 em, .experience h2 em, .closing-cta h2 em { color: var(--red); font-weight: 400; }
.hero-intro {
  max-width: 35rem; margin: 2.2rem 0 0; color: rgba(23,61,60,.74); font-size: clamp(.97rem, 1.15vw, 1.12rem); line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.15rem; }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 51px; padding: .8rem 1.4rem;
  font-size: .67rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em;
  transition: transform .2s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--teal); }
.button-primary:hover { background: var(--teal-dark); }
.text-link {
  display: inline-flex; align-items: center; gap: .7rem; padding-bottom: .35rem; border-bottom: 1px solid var(--line);
  font-size: .72rem; font-weight: 500; text-transform: uppercase; letter-spacing: .11em;
}
.text-link span { color: var(--red); font-size: 1rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-note { display: flex; align-items: center; gap: 1rem; margin-top: auto; padding-top: 2.5rem; }
.hero-note .line-art {
  display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold);
}
.hero-note p { margin: 0; color: rgba(23,61,60,.65); font-size: .7rem; line-height: 1.6; text-transform: uppercase; letter-spacing: .1em; }
.hero-note strong { color: var(--ink); font-weight: 500; }

.hero-visual { position: relative; min-height: 610px; padding: clamp(1.2rem, 2.2vw, 2.2rem) clamp(1.2rem, 2.2vw, 2.2rem) clamp(1.2rem, 2.2vw, 2.2rem) 0; }
.hero-image-frame { width: 100%; height: 100%; min-height: inherit; overflow: hidden; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s cubic-bezier(.2,.65,.25,1); }
.hero-visual:hover .hero-image-frame img { transform: scale(1.025); }
.hero-image-frame::after {
  content: ""; position: absolute; inset: clamp(1.2rem, 2.2vw, 2.2rem) clamp(1.2rem, 2.2vw, 2.2rem) clamp(1.2rem, 2.2vw, 2.2rem) 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,51,51,.32)); pointer-events: none;
}
.hero-monogram {
  position: absolute; top: 7%; left: -2.3rem; color: rgba(246,241,232,.92); font-family: var(--serif);
  font-size: clamp(5.5rem, 9vw, 10rem); line-height: 1; text-shadow: 0 7px 30px rgba(23,61,60,.12);
}
.hero-monogram span { margin-left: -.28em; color: rgba(183,53,53,.88); }
.hero-card {
  position: absolute; right: clamp(2.2rem, 4vw, 4rem); bottom: clamp(3rem, 5vw, 5rem); width: min(250px, 42%);
  padding: 1.45rem 1.5rem; color: white; background: rgba(15,96,99,.92); backdrop-filter: blur(10px);
}
.hero-card span, .hero-card small { display: block; font-size: .58rem; text-transform: uppercase; letter-spacing: .17em; opacity: .75; }
.hero-card strong { display: block; margin: .4rem 0 .35rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.image-index {
  position: absolute; left: 1.3rem; bottom: 3.7rem; z-index: 2; margin: 0; color: white; writing-mode: vertical-rl;
  font-size: .55rem; text-transform: uppercase; letter-spacing: .21em;
}

.service-ribbon { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); color: white; background: var(--ink); }
.ribbon-heading { padding: clamp(3.5rem, 5.5vw, 5.5rem) clamp(1.5rem, 5vw, 5rem); border-right: 1px solid rgba(255,255,255,.13); }
.ribbon-heading h2 { font-size: clamp(2.4rem, 3.6vw, 4rem); line-height: 1.05; }
.service-ribbon article {
  position: relative; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between;
  padding: 2.2rem clamp(1.4rem, 2.6vw, 2.5rem); border-right: 1px solid rgba(255,255,255,.13); transition: background .3s ease;
}
.service-ribbon article:hover { background: var(--teal); }
.service-number { color: #d6bd94; font-family: var(--serif); font-size: 1rem; }
.service-ribbon article h3 { margin: 0 0 .9rem; font-family: var(--serif); font-size: clamp(1.6rem, 2.2vw, 2.2rem); font-weight: 400; }
.service-ribbon article p { margin: 0; color: rgba(255,255,255,.63); font-size: .82rem; line-height: 1.75; }
.service-ribbon article a {
  position: absolute; right: 1.5rem; top: 1.8rem; display: grid; place-items: center; width: 37px; height: 37px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: .95rem; transition: transform .2s ease, background .2s ease;
}
.service-ribbon article:hover a { color: var(--ink); background: white; transform: rotate(45deg); }

.experience {
  display: grid; grid-template-columns: 47% 53%; gap: clamp(3rem, 8vw, 8rem); padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 8vw, 8.5rem);
  background: var(--paper);
}
.experience-visual { position: relative; align-self: start; }
.experience-visual::before {
  content: ""; position: absolute; top: -1.3rem; right: -1.3rem; width: 45%; height: 45%; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold);
}
.experience-visual img { width: 100%; aspect-ratio: 4/4.8; object-fit: cover; }
.experience-visual p {
  position: absolute; right: -1.8rem; bottom: 1.4rem; margin: 0; color: var(--red); font-family: var(--serif); font-size: 1.2rem;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.experience-copy { align-self: center; max-width: 660px; }
.experience h2 { font-size: clamp(3.2rem, 5.3vw, 6rem); line-height: .98; }
.experience-lead { margin: 2rem 0 1.1rem; color: var(--ink) !important; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.8rem) !important; line-height: 1.4 !important; }
.experience-copy > p:not(.eyebrow) { max-width: 34rem; color: rgba(23,61,60,.68); font-size: .92rem; line-height: 1.85; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.7rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-grid div { display: flex; align-items: center; gap: .75rem; padding: 1.1rem .5rem; border-right: 1px solid var(--line); }
.promise-grid div:last-child { border-right: 0; }
.promise-grid strong { color: var(--red); font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.promise-grid span { font-size: .61rem; text-transform: uppercase; letter-spacing: .12em; line-height: 1.45; }

.section-heading h2, .seasonal h2, .packages h2, .moments h2, .gift-section h2,
.booking-section h2, .visit-section h2, .faq-section h2 {
  margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em;
}
.section-heading h2, .packages h2, .moments h2, .booking-section h2, .visit-section h2, .faq-section h2 {
  font-size: clamp(3.2rem, 5.4vw, 6rem); line-height: .96;
}
.section-heading h2 em, .packages h2 em, .moments h2 em, .booking-section h2 em,
.visit-section h2 em, .faq-section h2 em { color: var(--red); font-weight: 400; }
.section-heading.centered { max-width: 780px; margin: 0 auto 3.3rem; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child {
  max-width: 560px; margin: 1.5rem auto 0; color: rgba(23,61,60,.65); font-size: .88rem; line-height: 1.8;
}

.treatment-menu { padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem); background: var(--cream); }
.treatment-tabs {
  display: flex; justify-content: center; align-items: center; gap: 0; max-width: 960px; margin: 0 auto 1.6rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.tab-button {
  position: relative; flex: 1; padding: 1.1rem .8rem; border: 0; color: rgba(23,61,60,.55); background: transparent;
  font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .17em; cursor: pointer;
}
.tab-button::after {
  content: ""; position: absolute; right: 20%; bottom: -1px; left: 20%; height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform .25s ease;
}
.tab-button:hover, .tab-button.is-active { color: var(--ink); }
.tab-button.is-active::after { transform: scaleX(1); }
.treatment-panels { max-width: 1240px; margin: 0 auto; }
.treatment-panel {
  display: grid; grid-template-columns: .88fr 1.25fr .85fr; min-height: 430px; border: 1px solid rgba(23,61,60,.15); background: var(--paper);
}
.treatment-panel[hidden] { display: none !important; }
.panel-story, .price-list, .menu-aside { padding: clamp(1.7rem, 3vw, 3rem); }
.panel-story { display: flex; flex-direction: column; justify-content: space-between; color: white; background: var(--teal); }
.panel-story > span { color: #d9c6a7; font-size: .58rem; text-transform: uppercase; letter-spacing: .2em; }
.panel-story h3 { margin: auto 0 1.2rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; line-height: 1.03; }
.panel-story p { margin: 0; color: rgba(255,255,255,.66); font-size: .8rem; line-height: 1.75; }
.price-list { display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.price-list > div { display: flex; align-items: baseline; gap: .8rem; padding: .82rem 0; border-bottom: 1px solid var(--line); }
.price-list > div:last-child { border-bottom: 0; }
.price-list span { font-family: var(--serif); font-size: clamp(1rem, 1.4vw, 1.23rem); }
.price-list i { flex: 1; border-bottom: 1px dotted rgba(23,61,60,.25); }
.price-list strong { color: var(--red); font-family: var(--serif); font-size: 1.05rem; font-weight: 400; white-space: nowrap; }
.menu-aside { display: flex; flex-direction: column; justify-content: center; background: #f8f3ea; }
.menu-aside h4 { margin: 0 0 1rem; color: var(--gold); font-size: .61rem; text-transform: uppercase; letter-spacing: .19em; }
.menu-aside > p { display: flex; justify-content: space-between; gap: 1rem; margin: 0; padding: .52rem 0; color: rgba(23,61,60,.68); font-size: .72rem; line-height: 1.6; border-bottom: 1px solid var(--line); }
.menu-aside > p b { color: var(--ink); font-weight: 500; white-space: nowrap; }
.menu-aside blockquote { margin: 1.5rem 0 0; color: var(--ink); font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; }
.mini-action {
  display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; padding: .9rem 0; border: 0; border-top: 1px solid var(--ink);
  color: var(--ink); background: transparent; font-size: .63rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; cursor: pointer;
}
.mini-action span { color: var(--red); transition: transform .2s ease; }
.mini-action:hover span { transform: translateX(4px); }
.image-aside { padding: 0; overflow: hidden; }
.image-aside img { width: 100%; height: 345px; object-fit: cover; object-position: top; }
.image-aside .mini-action { margin: auto 1.5rem 1.3rem; }
.pricing-note { max-width: 1240px; margin: 1rem auto 0; color: rgba(23,61,60,.55); font-size: .61rem; text-align: right; letter-spacing: .04em; }

.seasonal { display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; color: white; background: var(--teal-dark); }
.seasonal-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem, 8vw, 9rem); overflow: hidden; }
.seasonal-copy::after {
  content: "Spring"; position: absolute; left: -1.5rem; bottom: -.15em; color: rgba(255,255,255,.035);
  font-family: var(--serif); font-size: clamp(8rem, 17vw, 18rem); line-height: 1; pointer-events: none;
}
.season-tag { position: absolute; top: 3rem; right: 3rem; display: flex; flex-direction: column; padding-left: 1rem; border-left: 1px solid #d6bd94; }
.season-tag span { color: rgba(255,255,255,.6); font-size: .52rem; text-transform: uppercase; letter-spacing: .18em; }
.season-tag strong { margin-top: .25rem; color: #d6bd94; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.seasonal h2 { position: relative; z-index: 1; font-size: clamp(4rem, 6.5vw, 7.5rem); line-height: .88; }
.seasonal h2 em { color: #e5cda8; font-weight: 400; }
.seasonal-copy > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 31rem; margin: 2rem 0; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.85; }
.seasonal-copy .button { position: relative; z-index: 1; align-self: flex-start; border: 0; cursor: pointer; }
.seasonal-visual { position: relative; overflow: hidden; }
.seasonal-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(16,47,47,.22); pointer-events: none; }
.seasonal-visual img { width: 100%; height: 100%; object-fit: cover; }
.botanical-mark {
  position: absolute; right: 2rem; bottom: 2rem; z-index: 2; display: grid; place-items: center; width: 90px; height: 90px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: white; font-size: 2rem; backdrop-filter: blur(8px);
}

.packages { padding: clamp(6rem, 10vw, 10rem) 0; overflow: hidden; background: var(--paper); }
.packages-intro { display: grid; grid-template-columns: 1fr 1.3fr 1fr; align-items: end; gap: 2rem; padding: 0 clamp(1.25rem, 6vw, 6rem) 3.5rem; }
.packages-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -.4rem; }
.packages-intro h2 { grid-column: 1; }
.packages-intro > p:not(.eyebrow) { align-self: end; max-width: 29rem; margin: 0; color: rgba(23,61,60,.65); font-size: .88rem; line-height: 1.8; }
.package-arrows { justify-self: end; display: flex; align-items: center; gap: .7rem; }
.package-arrows span { margin-right: .4rem; color: rgba(23,61,60,.55); font-size: .56rem; text-transform: uppercase; letter-spacing: .15em; }
.package-arrows b { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; font-weight: 400; }
.package-scroller {
  display: flex; gap: 1px; overflow-x: auto; padding: 0 clamp(1.25rem, 6vw, 6rem) 1.2rem; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.package-card {
  flex: 0 0 min(360px, 82vw); min-height: 475px; display: flex; flex-direction: column; padding: 2rem;
  border: 1px solid var(--line); background: var(--ivory); scroll-snap-align: start; transition: color .3s ease, background .3s ease;
}
.package-card:hover, .package-featured { color: white; background: var(--ink); }
.package-no { color: var(--red); font-family: var(--serif); font-size: 1.1rem; }
.package-card:hover .package-no, .package-featured .package-no { color: #d6bd94; }
.package-card > p { margin: auto 0 .6rem; color: rgba(23,61,60,.54); font-size: .57rem; text-transform: uppercase; letter-spacing: .16em; }
.package-card:hover > p, .package-featured > p { color: rgba(255,255,255,.55); }
.package-card h3 { margin: 0; font-family: var(--serif); font-size: 2.35rem; font-weight: 400; line-height: 1.05; }
.package-card ul { min-height: 105px; margin: 1.3rem 0; padding: 1.1rem 0 0; border-top: 1px solid currentColor; list-style: none; opacity: .68; }
.package-card li { position: relative; padding: .22rem 0 .22rem .9rem; font-size: .69rem; line-height: 1.5; }
.package-card li::before { content: "·"; position: absolute; left: 0; color: var(--red); }
.package-card > div { display: flex; justify-content: space-between; align-items: center; }
.package-card > div strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.package-card > div button { border: 0; color: inherit; background: transparent; font-size: .58rem; text-transform: uppercase; letter-spacing: .15em; cursor: pointer; }
.package-card > div button span { margin-left: .4rem; color: var(--red); }
.package-card:hover > div button span, .package-featured > div button span { color: #d6bd94; }
.getaway-note {
  display: grid; grid-template-columns: .4fr 2fr auto; align-items: center; gap: 2rem; margin: 2.5rem clamp(1.25rem, 6vw, 6rem) 0;
  padding: 1.7rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.getaway-note > span { color: var(--red); font-size: .59rem; text-transform: uppercase; letter-spacing: .17em; }
.getaway-note p { margin: 0; color: rgba(23,61,60,.65); font-size: .75rem; line-height: 1.7; }
.getaway-note p strong { color: var(--ink); font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.getaway-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.getaway-note button { border: 0; border-bottom: 1px solid var(--ink); color: var(--ink); background: transparent; font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; cursor: pointer; }

.moments { padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6rem); background: var(--ivory); }
.split-heading { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 3rem; margin-bottom: 3rem; }
.split-heading > p { max-width: 30rem; margin: 0 0 .4rem; color: rgba(23,61,60,.64); font-size: .87rem; line-height: 1.8; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 270px 340px; gap: .9rem; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; color: white; background: var(--ink); cursor: zoom-in; }
.gallery-item-tall { grid-row: 1 / 3; }
.gallery-item-wide { grid-column: 2 / 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.25,1), opacity .3s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(12,45,45,.65)); }
.gallery-item:hover img { transform: scale(1.04); opacity: .92; }
.gallery-item > span { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; z-index: 2; display: flex; align-items: center; gap: .7rem; font-size: .6rem; text-transform: uppercase; letter-spacing: .16em; }
.gallery-item > span b { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }

.gift-section { display: grid; grid-template-columns: .95fr 1.05fr; color: white; background: var(--ink); }
.gift-visual { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; background: var(--teal); }
.gift-visual::before, .gift-visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.gift-visual::before { width: 38rem; height: 38rem; }
.gift-visual::after { width: 24rem; height: 24rem; }
.gift-orbit { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; font-family: var(--serif); font-size: clamp(5rem, 10vw, 10rem); line-height: .65; }
.gift-orbit b { margin-left: 1em; color: #e4caa2; font-size: .48em; font-style: italic; font-weight: 400; }
.gift-visual > p { position: absolute; left: 3rem; bottom: 2.5rem; z-index: 2; margin: 0; color: rgba(255,255,255,.68); font-size: .66rem; line-height: 1.65; text-transform: uppercase; letter-spacing: .13em; }
.gift-copy { align-self: center; padding: clamp(4.5rem, 8vw, 8rem); }
.gift-section h2 { font-size: clamp(3.8rem, 6.2vw, 7rem); line-height: .94; }
.gift-section h2 em { color: #e4caa2; font-weight: 400; }
.gift-copy > p:not(.eyebrow) { max-width: 32rem; margin: 1.8rem 0 2rem; color: rgba(255,255,255,.62); font-size: .87rem; line-height: 1.85; }
.voucher-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-bottom: 1.3rem; }
.voucher-option { display: flex; flex-direction: column; align-items: flex-start; min-height: 135px; padding: 1rem; border: 1px solid rgba(255,255,255,.2); color: white; background: transparent; cursor: pointer; transition: border .2s ease, background .2s ease; }
.voucher-option span { color: rgba(255,255,255,.5); font-size: .5rem; text-transform: uppercase; letter-spacing: .15em; }
.voucher-option strong { margin: .35rem 0 auto; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.voucher-option small { color: #e4caa2; font-size: .53rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.voucher-option:hover, .voucher-option.is-active { border-color: #e4caa2; background: rgba(228,202,162,.1); }
.button-gold { border: 0; color: var(--ink); background: #e4caa2; cursor: pointer; }

.booking-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 8vw, 8.5rem); background: var(--paper); }
.booking-intro { align-self: start; position: sticky; top: 2rem; }
.booking-intro > p:not(.eyebrow) { max-width: 32rem; margin: 1.7rem 0 2.5rem; color: rgba(23,61,60,.64); font-size: .88rem; line-height: 1.85; }
.booking-contact { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.booking-contact span { color: var(--gold); font-size: .56rem; text-transform: uppercase; letter-spacing: .18em; }
.booking-contact a { font-family: var(--serif); font-size: 1.35rem; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.7rem 1.2rem; padding: clamp(1.6rem, 3.5vw, 3.5rem); border: 1px solid var(--line); background: var(--ivory); }
.form-field { display: flex; flex-direction: column; gap: .7rem; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: .61rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.form-field label span { color: rgba(23,61,60,.45); font-weight: 400; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .88rem 0; border: 0; border-bottom: 1px solid rgba(23,61,60,.28); border-radius: 0; color: var(--ink); outline: 0; background: transparent;
  font-family: var(--serif); font-size: 1.15rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: var(--red); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(23,61,60,.38); }
.form-field textarea { resize: vertical; }
.form-submit { grid-column: 1 / -1; justify-content: space-between; width: 100%; border: 0; cursor: pointer; }
.form-submit span { font-size: 1rem; }
.form-note { grid-column: 1 / -1; margin: -.7rem 0 0; color: rgba(23,61,60,.52); font-size: .59rem; text-align: center; }

.visit-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 750px; background: var(--cream); }
.visit-map { position: relative; overflow: hidden; background: #d9d7c7; }
.map-lines { position: absolute; inset: 0; transform: rotate(-10deg) scale(1.2); }
.map-lines span { position: absolute; display: block; border: 1px solid rgba(23,61,60,.16); border-radius: 48%; }
.map-lines span:nth-child(1) { width: 85%; height: 26%; top: 10%; left: -10%; }
.map-lines span:nth-child(2) { width: 110%; height: 42%; top: 39%; left: 5%; }
.map-lines span:nth-child(3) { width: 60%; height: 78%; top: 4%; left: 32%; }
.visit-map::before, .visit-map::after { content: ""; position: absolute; background: rgba(255,255,255,.3); }
.visit-map::before { width: 140%; height: 80px; top: 30%; left: -10%; transform: rotate(28deg); }
.visit-map::after { width: 80px; height: 140%; top: -20%; left: 26%; transform: rotate(14deg); }
.map-pin { position: absolute; z-index: 2; left: 54%; top: 45%; display: grid; grid-template-columns: auto auto; align-items: center; column-gap: .8rem; padding: .9rem 1.1rem; color: white; background: var(--teal); box-shadow: 0 15px 40px rgba(23,61,60,.22); }
.map-pin i { grid-row: 1 / 3; width: 12px; height: 12px; border: 3px solid white; border-radius: 50%; }
.map-pin b { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.map-pin small { font-size: .5rem; text-transform: uppercase; letter-spacing: .15em; opacity: .65; }
.visit-map > p { position: absolute; left: 2.5rem; bottom: 2rem; z-index: 2; margin: 0; font-family: var(--serif); font-size: 2.5rem; line-height: .9; }
.visit-map > p span { font-family: var(--sans); font-size: .55rem; text-transform: uppercase; letter-spacing: .16em; }
.visit-copy { align-self: center; padding: clamp(4.5rem, 8vw, 8rem); }
.visit-copy > p:not(.eyebrow) { max-width: 34rem; margin: 1.7rem 0 2.3rem; color: rgba(23,61,60,.65); font-size: .88rem; line-height: 1.85; }
.visit-copy dl { margin: 0; }
.visit-copy dl div { display: grid; grid-template-columns: .6fr 1.4fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.visit-copy dt { color: var(--gold); font-size: .57rem; text-transform: uppercase; letter-spacing: .17em; }
.visit-copy dd { margin: 0; font-family: var(--serif); font-size: 1rem; line-height: 1.55; }
.visit-copy dd a { border-bottom: 1px solid rgba(23,61,60,.25); }
.social-row { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.7rem; }
.social-row a { font-size: .58rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 9vw, 9rem); padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 8vw, 8.5rem); background: var(--paper); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem 0; font-family: var(--serif); font-size: clamp(1.05rem, 1.5vw, 1.35rem); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; min-width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--red); font-family: var(--sans); font-size: 1rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 44rem; margin: -.3rem 3.5rem 1.5rem 0; color: rgba(23,61,60,.63); font-size: .8rem; line-height: 1.8; }

.gallery-dialog { width: min(92vw, 950px); max-height: 90vh; padding: 0; border: 0; color: white; background: var(--ink); box-shadow: 0 25px 80px rgba(0,0,0,.35); }
.gallery-dialog::backdrop { background: rgba(8,29,29,.82); backdrop-filter: blur(6px); }
.gallery-dialog img { width: 100%; max-height: 78vh; object-fit: contain; background: #091f1f; }
.gallery-dialog p { margin: 0; padding: 1rem 1.4rem; font-size: .66rem; text-transform: uppercase; letter-spacing: .15em; }
.dialog-close { position: absolute; z-index: 2; right: .8rem; top: .8rem; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: white; background: rgba(15,60,60,.55); font-size: 1.5rem; cursor: pointer; backdrop-filter: blur(8px); }

.closing-cta {
  position: relative; overflow: hidden; padding: clamp(5.5rem, 9vw, 9rem) 1.5rem; color: white; text-align: center; background: var(--teal);
}
.closing-cta::before, .closing-cta::after {
  content: ""; position: absolute; width: 28rem; height: 28rem; border: 1px solid rgba(255,255,255,.13); border-radius: 50%;
}
.closing-cta::before { left: -16rem; top: -11rem; }
.closing-cta::after { right: -15rem; bottom: -14rem; }
.closing-cta .eyebrow { justify-content: center; }
.closing-cta h2 { font-size: clamp(3.6rem, 7vw, 7.5rem); line-height: .92; }
.closing-cta h2 em { color: #ecd8b6; }
.closing-cta > p:not(.eyebrow) { margin: 1.6rem auto 2rem; color: rgba(255,255,255,.7); font-size: .9rem; }
.closing-cta > div { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; gap: 2rem; }
.button-light { color: var(--ink); background: var(--paper); }
.text-link-light { color: white; border-color: rgba(255,255,255,.35); }
.text-link-light span { color: #ecd8b6; }

.site-footer {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 2rem; padding: 4rem clamp(1.5rem, 6vw, 6rem) 1.5rem;
  color: rgba(255,255,255,.7); background: #102f2f;
}
.footer-brand img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; }
.footer-brand p { margin: .8rem 0; font-size: .65rem; text-transform: uppercase; letter-spacing: .16em; }
.site-footer > div:not(.footer-bottom) > strong { display: block; margin-bottom: 1rem; color: #d6bd94; font-size: .61rem; text-transform: uppercase; letter-spacing: .19em; }
.site-footer > div:not(.footer-bottom) > p, .site-footer > div:not(.footer-bottom) > a { display: block; margin: 0 0 .4rem; font-size: .78rem; line-height: 1.7; }
.site-footer a:hover { color: white; }
.footer-bottom {
  grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12); font-size: .61rem; text-transform: uppercase; letter-spacing: .12em;
}
.footer-bottom a { color: #d6bd94; }

.floating-book { display: none; }

.reveal { opacity: 0; transform: translateY(16px); animation: reveal .8s cubic-bezier(.2,.65,.25,1) forwards; }
.reveal-delay-1 { animation-delay: .12s; }
.reveal-delay-2 { animation-delay: .24s; }
.reveal-delay-3 { animation-delay: .36s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .service-ribbon { grid-template-columns: 1fr 1fr; }
  .ribbon-heading { grid-row: span 2; }
  .service-ribbon article { min-height: 280px; }
}

@media (max-width: 760px) {
  .announcement { min-height: 34px; padding: 0 1rem; }
  .announcement p i, .announcement p:not(span) { gap: .45rem; }
  .announcement p { font-size: .56rem; letter-spacing: .12em; }
  .announcement p span { display: none; }
  .announcement a { font-size: .56rem; }
  .site-header { height: 76px; grid-template-columns: 1fr auto; padding: 0 1rem; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .46rem; }
  .header-cta { display: none; }
  .menu-toggle { z-index: 4; display: flex; flex-direction: column; gap: 5px; }
  .menu-toggle > span:not(.sr-only) { width: 24px; height: 1px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav {
    position: fixed; inset: 34px 0 0; z-index: 3; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 4rem 2rem; background: var(--ivory); transform: translateX(100%); transition: transform .35s ease;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { font-family: var(--serif); font-size: 2.25rem; font-weight: 400; text-transform: none; letter-spacing: -.02em; }
  .primary-nav a::after { bottom: .2rem; }
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .hero-copy { padding: 4.5rem 1.25rem 2.5rem; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 5.2rem); }
  .hero-intro { margin-top: 1.5rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .hero-note { margin-top: 1.5rem; padding-top: 1.5rem; }
  .hero-visual { min-height: 78svh; padding: 0; }
  .hero-image-frame::after { inset: 0; }
  .hero-monogram { left: auto; right: .4rem; top: -2.8rem; font-size: 6.5rem; }
  .hero-card { right: 1rem; bottom: 1rem; width: 62%; }
  .image-index { left: .8rem; bottom: 1.5rem; }
  .service-ribbon { grid-template-columns: 1fr; }
  .ribbon-heading { grid-row: auto; padding: 4rem 1.25rem; }
  .service-ribbon article { min-height: 230px; padding: 1.7rem 1.25rem; border-top: 1px solid rgba(255,255,255,.13); }
  .experience { grid-template-columns: 1fr; gap: 4rem; padding: 5.5rem 1.25rem; }
  .experience-visual { width: calc(100% - 1rem); }
  .experience h2 { font-size: clamp(3.1rem, 14vw, 4.8rem); }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-grid div:last-child { border-bottom: 0; }
  .closing-cta { padding: 6rem 1.25rem; }
  .closing-cta h2 { font-size: clamp(3.25rem, 15vw, 5rem); }
  .closing-cta > div { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 3.5rem 1.25rem 5.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .8rem; line-height: 1.5; }
  .floating-book {
    position: fixed; z-index: 45; right: .9rem; bottom: .9rem; display: flex; align-items: center; gap: .7rem; min-height: 48px;
    padding: .45rem .5rem .45rem 1.1rem; border-radius: 999px; color: white; background: var(--red); box-shadow: 0 10px 30px rgba(42,42,31,.22);
    font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  }
  .floating-book b { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--red); background: white; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .treatment-panel { grid-template-columns: .8fr 1.2fr; }
  .menu-aside { grid-column: 1 / -1; }
  .menu-aside:not(.image-aside) { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 1.5rem; }
  .menu-aside h4, .menu-aside .mini-action, .menu-aside blockquote { grid-column: 1 / -1; }
  .image-aside { display: grid; grid-template-columns: 1fr 1fr; }
  .image-aside img { height: 260px; }
  .seasonal { min-height: 700px; }
  .packages-intro { grid-template-columns: 1fr 1fr; }
  .package-arrows { display: none; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .visit-copy { padding: 4rem; }
  .gift-copy { padding: 4rem; }
}

@media (max-width: 760px) {
  .section-heading h2, .packages h2, .moments h2, .booking-section h2, .visit-section h2, .faq-section h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .treatment-menu { padding: 5.5rem 1.25rem; }
  .treatment-tabs { justify-content: flex-start; overflow-x: auto; }
  .tab-button { flex: 0 0 auto; padding: 1rem 1.15rem; white-space: nowrap; }
  .treatment-panel { grid-template-columns: 1fr; }
  .panel-story { min-height: 300px; }
  .price-list { border-right: 0; }
  .menu-aside { grid-column: auto; }
  .menu-aside:not(.image-aside) { display: flex; }
  .image-aside { display: flex; }
  .image-aside img { height: 360px; }
  .pricing-note { text-align: left; line-height: 1.5; }
  .seasonal { grid-template-columns: 1fr; min-height: 0; }
  .seasonal-copy { min-height: 650px; padding: 6rem 1.25rem; }
  .season-tag { top: 1.5rem; right: 1.25rem; }
  .seasonal h2 { font-size: clamp(4rem, 19vw, 6rem); }
  .seasonal-visual { height: 85svh; }
  .packages { padding: 6rem 0; }
  .packages-intro { display: block; padding: 0 1.25rem 2.5rem; }
  .packages-intro > p:not(.eyebrow) { margin-top: 1.5rem; }
  .package-scroller { padding-inline: 1.25rem; }
  .getaway-note { grid-template-columns: 1fr; gap: .8rem; margin-inline: 1.25rem; }
  .getaway-actions { margin-top: .4rem; }
  .moments { padding: 6rem 1.25rem; }
  .split-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 230px 280px; }
  .gallery-item-tall { grid-column: 1 / -1; grid-row: 1; }
  .gallery-item-wide { grid-column: 1 / -1; grid-row: 3; }
  .gift-section { grid-template-columns: 1fr; }
  .gift-visual { min-height: 560px; }
  .gift-copy { padding: 5rem 1.25rem; }
  .gift-section h2 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .voucher-options { grid-template-columns: 1fr; }
  .voucher-option { min-height: 112px; }
  .booking-section { padding: 6rem 1.25rem; gap: 3rem; }
  .booking-form { grid-template-columns: 1fr; padding: 1.5rem 1.1rem; }
  .form-field, .form-field-wide, .form-submit, .form-note { grid-column: 1; }
  .visit-section { grid-template-columns: 1fr; min-height: 0; }
  .visit-map { min-height: 520px; }
  .visit-copy { padding: 5rem 1.25rem; }
  .visit-copy dl div { grid-template-columns: .7fr 1.3fr; }
  .faq-section { grid-template-columns: 1fr; padding: 6rem 1.25rem; gap: 3rem; }
}
