:root {
  --ink: #2d2521;
  --soft-ink: #6c5e56;
  --paper: #f8f3eb;
  --white: #fffaf3;
  --mist: #eee1cf;
  --sage: #855d61;
  --sage-dark: #69464b;
  --blue: #b6a294;
  --blue-dark: #6c5e56;
  --red: #995f62;
  --red-soft: #ead2cf;
  --cream: #f4eadc;
  --gold: #866d42;
  --line: rgba(73, 55, 45, 0.14);
  --shadow: 0 12px 32px rgba(73, 55, 45, 0.09);
  --lux-shadow: 0 20px 52px rgba(73, 55, 45, 0.12);
  --deep-shadow: 0 26px 68px rgba(73, 55, 45, 0.14), 0 5px 16px rgba(73, 55, 45, 0.06);
  --lift-shadow: 0 22px 56px rgba(73, 55, 45, 0.15), 0 8px 22px rgba(185, 130, 127, 0.09);
  --frame-line: rgba(73, 55, 45, 0.16);
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(248, 243, 235, 0.9), rgba(248, 243, 235, 0.92)),
    url("assets/luxury-detail-champagne-satin.webp") center top / cover fixed,
    radial-gradient(circle at 12% 8%, rgba(165, 138, 92, 0.14), transparent 32rem),
    radial-gradient(circle at 86% 18%, rgba(185, 130, 127, 0.13), transparent 34rem),
    linear-gradient(180deg, #fffaf3 0%, var(--paper) 48%, #eee1cf 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  color: white;
  background: var(--red);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 38vw;
  height: 38vw;
  min-width: 340px;
  min-height: 340px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
  opacity: 0.38;
  animation: ambientFloat 18s ease-in-out infinite alternate;
}

body::before {
  top: 8vh;
  left: -12vw;
  background: rgba(182, 162, 148, 0.28);
}

body::after {
  right: -10vw;
  bottom: 12vh;
  background: rgba(185, 130, 127, 0.22);
  animation-duration: 23s;
}

.instruction-page {
  width: min(100% - 28px, 960px);
  margin: 0 auto;
  padding: 48px 0;
}

.instruction-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: var(--shadow);
}

.instruction-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.instruction-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.instruction-card p {
  color: var(--soft-ink);
}

.instruction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.instruction-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.instruction-note {
  margin: 0;
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(rgba(13, 10, 8, 0.42), rgba(13, 10, 8, 0.74)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/Facetune_14-06-2026-18-14-42-13c8a5d.jpeg/:/rs=w:1535,m") center/cover;
}

.age-gate.hidden {
  display: none;
}

.age-card {
  width: min(530px, 100%);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 44px);
  color: white;
  background: rgba(18, 14, 12, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.age-logo {
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 28;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(73, 55, 45, 0.48);
  backdrop-filter: blur(12px);
}

.newsletter-popup.hidden {
  display: none;
}

.newsletter-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(26px, 5vw, 44px);
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
  background:
    linear-gradient(rgba(45, 37, 33, 0.82), rgba(73, 55, 45, 0.74)),
    url("assets/luxury-detail-black-stone-linen.webp") center/cover;
}

.newsletter-card h2 {
  color: var(--red-soft);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.newsletter-card p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.84);
}

.popup-close,
.text-button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.16);
  font-size: 1.8rem;
  line-height: 1;
}

.popup-close:hover {
  background: rgba(255, 250, 243, 0.26);
}

.popup-form {
  margin-inline: 0;
  background: rgba(255, 250, 243, 0.16);
}

.text-button {
  display: block;
  margin: 18px auto 0;
  padding: 8px 10px;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(73, 55, 45, 0.08);
  backdrop-filter: blur(20px) saturate(145%);
}

.brand,
nav,
.hero-actions,
.age-actions,
.impression-heading,
footer {
  display: flex;
  align-items: center;
}

.centered-action-pair,
.contact-direct-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-direct-dialog {
  width: min(560px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  background: rgba(255, 250, 243, 0.98);
  box-shadow: var(--deep-shadow);
}

.contact-direct-dialog::backdrop {
  background: rgba(73, 55, 45, 0.56);
  backdrop-filter: blur(5px);
}

.contact-direct-dialog .modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-direct-dialog h2 {
  margin: 0;
}

.contact-direct-dialog p {
  margin: 0 0 12px;
  color: var(--soft-ink);
}

.contact-direct-dialog .icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.appointment-request-dialog {
  width: min(720px, calc(100% - 28px));
}

.request-intro {
  line-height: 1.6;
}

.appointment-request-form {
  display: grid;
  gap: 18px;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.request-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.request-grid input,
.request-grid select,
.request-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.request-grid textarea {
  resize: vertical;
}

.request-grid .full {
  grid-column: 1 / -1;
}

.request-status {
  min-height: 24px;
  font-weight: 800;
}

.request-actions {
  justify-content: flex-start;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.brand {
  width: 64px;
  justify-content: center;
  gap: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
}

nav {
  justify-content: center;
  gap: 5px;
  width: fit-content;
  justify-self: center;
  padding: 6px;
  background: rgba(238, 225, 207, 0.72);
  border: 1px solid rgba(73, 55, 45, 0.08);
  border-radius: 999px;
}

nav a,
.header-book,
.text-link,
footer a {
  text-decoration: none;
}

nav a {
  color: var(--soft-ink);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(73, 55, 45, 0.08);
}

.header-book {
  min-width: 88px;
  padding: 12px 18px;
  color: white;
  background: var(--sage);
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
}

.hero {
  min-height: calc(86vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45, 37, 33, 0.9), rgba(105, 70, 75, 0.7)),
    url("assets/luxury-detail-satin-bedding.webp") center 46% / cover,
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/BM1%20(1).jpg/:/rs=w:1535,m") center/cover;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(238, 225, 207, 0.18), transparent 28rem),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  mix-blend-mode: screen;
  animation: slowSheen 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-image {
  min-height: 640px;
}

.hero-image img {
  filter: saturate(0.9) contrast(0.96);
}

.hero-image img,
.booking > img,
.image-break > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  align-self: center;
  padding: clamp(34px, 5vw, 72px);
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy h1 {
  color: var(--red-soft);
  font-size: clamp(1.8rem, 3.7vw, 3.65rem);
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.07;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 5vw, 5.1rem);
}

h2 {
  font-size: clamp(1.95rem, 3.9vw, 4rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-copy p:not(.eyebrow),
.intro > p,
.image-break p,
.booking-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-actions,
.age-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button.primary {
  color: white;
  background: var(--sage);
  box-shadow: 0 10px 24px rgba(105, 70, 75, 0.16);
}

.button.primary:hover,
.header-book:hover {
  background: var(--sage-dark);
  box-shadow: 0 14px 32px rgba(105, 70, 75, 0.2);
  transform: translateY(-1px);
}

.button.soft {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
}

.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.photo-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 310px;
}

.photo-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-ribbon-spaced {
  margin-top: 0;
}

.single-photo-break {
  max-width: 820px;
  margin: 34px auto 0;
}

.single-photo-break img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
}

.about-photo img {
  max-height: 760px;
  object-position: center 35%;
}

.appearance-note {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.74);
  box-shadow: var(--shadow);
}

.appearance-note h3 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.appearance-note p {
  color: var(--soft-ink);
}

.appearance-note p:last-child {
  margin-bottom: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: clamp(68px, 8vw, 108px) clamp(18px, 5vw, 70px);
}

.section-title,
.compact-title {
  margin-inline: auto;
  text-align: center;
}

.section-title p,
.compact-title p {
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.92)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/BM1%20(1).jpg/:/rs=w:1535,m") center/cover;
}

.intro::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(182, 162, 148, 0.18);
  filter: blur(10px);
}

.intro > * {
  position: relative;
  z-index: 1;
}

.intro > p {
  margin: 0;
  color: var(--soft-ink);
}

.section-title {
  max-width: 850px;
  margin-bottom: 34px;
}

.gallery-section {
  background: var(--paper);
}

.photo-cluster {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(34px, 6vw, 74px) clamp(18px, 5vw, 70px);
}

.photo-cluster-dark {
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(73, 55, 45, 0.94), rgba(105, 70, 75, 0.86)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/BM1%20(1).jpg/:/rs=w:1535,m") center/cover;
}

.photo-cluster-dark::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 70% 20%, rgba(182, 162, 148, 0.18), transparent 28rem);
  animation: ambientDrift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.photo-cluster-dark > * {
  position: relative;
  z-index: 1;
}

.photo-cluster-light {
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 0.75fr) minmax(260px, 0.8fr);
  align-items: center;
  background:
    linear-gradient(rgba(255, 250, 243, 0.88), rgba(255, 250, 243, 0.88)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/BM1%20(1).jpg/:/rs=w:1535,m") center/cover;
}

.cluster-copy {
  max-width: 620px;
}

.cluster-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.photo-cluster-dark .cluster-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.cluster-copy .button,
.image-break .button {
  margin-top: 18px;
}

.look-stack {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.look-label {
  margin: 0 0 14px;
  color: var(--soft-ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.look-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.look-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.look-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.look-grid.seven {
  grid-template-columns: repeat(4, 1fr);
}

.look-grid.feature {
  grid-template-columns: 1.12fr repeat(3, 1fr);
}

.look-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--cream);
}

.look-grid .tall {
  grid-row: span 2;
}

.experiences {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(248, 243, 235, 0.94), rgba(248, 243, 235, 0.94)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/BM1%20(1).jpg/:/rs=w:1535,m") center/cover;
  color: var(--ink);
}

.experiences::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -110px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(182, 162, 148, 0.16);
  filter: blur(10px);
}

.experiences::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  right: clamp(18px, 5vw, 70px);
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--blue), var(--red));
  opacity: 0.55;
}

.experiences > * {
  position: relative;
  z-index: 1;
}

.experience-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-layout article {
  overflow: hidden;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(73, 55, 45, 0.1);
  box-shadow: 0 16px 44px rgba(73, 55, 45, 0.1);
}

.experience-layout img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
}

.experience-layout h3,
.experience-layout p {
  padding: 0 24px;
}

.experience-layout h3 {
  margin-top: 24px;
  color: var(--ink);
}

.experience-layout p {
  margin: 12px 0 26px;
  color: var(--soft-ink);
}

.image-break {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  min-height: 560px;
  background:
    linear-gradient(135deg, rgba(105, 70, 75, 0.94), rgba(185, 130, 127, 0.78)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/BM1%20(1).jpg/:/rs=w:1535,m") center/cover;
  color: white;
}

.image-break div {
  align-self: center;
  padding: clamp(34px, 6vw, 78px);
}

.rates {
  background: var(--mist);
}

.rate-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.rate-grid > div {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rate-grid .featured-rate {
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.rate-grid p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.rate-grid h3 {
  margin-bottom: 16px;
}

.rate-grid strong {
  white-space: nowrap;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 20px 24px;
  color: white;
  background: var(--blue-dark);
}

.section-cta p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.curved-cta {
  max-width: 980px;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
}

.curved-cta .button.primary {
  background: var(--red);
}

.soft-cta {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
}

.soft-cta p {
  color: var(--soft-ink);
}

.trust-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(248, 243, 235, 0.88), rgba(255, 250, 243, 0.92)),
    url("assets/luxury-detail-towels-brass.webp") center 54% / cover;
}

.trust-grid,
.booking-checklist {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  gap: 14px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article,
.booking-checklist article {
  padding: 24px;
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(73, 55, 45, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(73, 55, 45, 0.1);
  backdrop-filter: blur(12px);
}

.trust-grid span {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.trust-grid p,
.booking-checklist p {
  margin-bottom: 0;
  color: var(--soft-ink);
}

.booking-checklist {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 28px;
}

.booking-checklist article {
  min-height: 150px;
}

.booking-checklist span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.impressions {
  overflow: hidden;
  background: var(--white);
}

.etiquette {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(73, 55, 45, 0.9), rgba(105, 70, 75, 0.76)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/Facetune_14-06-2026-18-33-47.jpeg/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1535,m") center/cover;
  color: white;
}

.etiquette::before {
  content: "";
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 250, 243, 0.18), transparent 24rem),
    linear-gradient(100deg, transparent, rgba(255, 250, 243, 0.12), transparent);
  animation: slowSheen 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.etiquette > * {
  position: relative;
  z-index: 1;
}

.etiquette-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.etiquette .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.etiquette h2 {
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
  text-align: center;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.policy-grid article {
  min-height: auto;
  padding: 22px;
  background: rgba(255, 250, 243, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

.policy-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.message-demo {
  padding: 24px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.phone-label {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.message-bubble {
  max-width: 92%;
  margin-bottom: 14px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 4px;
}

.message-bubble.reply {
  margin-left: auto;
  color: white;
  background: var(--sage);
  border-color: transparent;
  border-radius: 18px 18px 4px 18px;
}

.message-demo .button {
  width: 100%;
  margin-top: 12px;
}

.faq {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid details {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-grid summary {
  color: var(--ink);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--soft-ink);
}

.ads {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 250, 243, 0.84), rgba(238, 225, 207, 0.86)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/IMG_9127.jpeg/:/cr=t:0%25,l:6.61%25,w:86.77%25,h:100%25/rs=w:1400,h:1000,cg:true") center 34% / cover;
}

.ads::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sage), var(--blue), var(--red));
  opacity: 0.72;
}

.ads::after {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  width: auto;
  border-radius: 0;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 250, 243, 0.7), rgba(238, 225, 207, 0.78)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/IMG_9127.jpeg/:/cr=t:0%25,l:6.61%25,w:86.77%25,h:100%25/rs=w:1400,h:1000,cg:true") center 34% / cover;
  box-shadow: none;
  transform: translate3d(0, var(--depth-shift, 0px), 0) scale(1.04);
  transition: transform 120ms linear;
  pointer-events: none;
}

.ads > * {
  position: relative;
  z-index: 1;
}

.ad-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.ad-links a {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(73, 55, 45, 0.1);
  box-shadow: 0 16px 42px rgba(73, 55, 45, 0.1);
  border-radius: var(--radius);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  text-decoration: none;
}

.ad-links a::after {
  content: "Open";
  color: var(--red);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ad-links a:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.impression-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.scroll-buttons {
  display: flex;
  gap: 10px;
}

.scroll-buttons button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-size: 1.2rem;
  cursor: pointer;
}

.review-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--red) var(--mist);
}

.review-track blockquote {
  flex: 0 0 min(430px, 82vw);
  min-height: 230px;
  margin: 0;
  padding: 30px;
  scroll-snap-align: start;
  color: var(--soft-ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: Georgia, serif;
  font-size: 1.32rem;
}

.review-links {
  max-width: 960px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.review-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(73, 55, 45, 0.1);
  font-weight: 800;
}

.review-links a::after {
  content: "Open";
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 130, 127, 0.34);
  background: var(--white);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  min-height: 650px;
  background:
    linear-gradient(135deg, rgba(73, 55, 45, 0.96), rgba(105, 70, 75, 0.84)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/BM1%20(1).jpg/:/rs=w:1535,m") center/cover;
  color: white;
}

.booking-panel {
  align-self: center;
  padding: clamp(34px, 6vw, 78px);
  text-align: center;
}

.booking-panel .button {
  margin: 14px 0 18px;
}

.text-link {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  overflow-wrap: anywhere;
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--soft-ink);
  border-top: 1px solid var(--line);
}

.atlas-credit {
  justify-content: center;
  gap: 18px;
  padding: 22px;
  text-align: center;
}

.atlas-credit span,
.atlas-credit a {
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.simple-page {
  min-height: 100vh;
}

.wishlist-page {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(73, 55, 45, 0.88), rgba(105, 70, 75, 0.76)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/IMG_9126.jpeg/:/rs=w:1535,m") center/cover;
  color: white;
}

.wishlist-copy {
  max-width: 880px;
}

.wishlist-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.wishlist-links {
  margin-top: 30px;
}

.spoil-page {
  background: var(--paper);
}

.spoil-hero {
  min-height: calc(92vh - 82px);
  display: grid;
  align-items: end;
  padding: clamp(70px, 12vw, 145px) clamp(18px, 5vw, 70px) clamp(44px, 7vw, 78px);
  color: white;
  background:
    linear-gradient(135deg, rgba(73, 55, 45, 0.7), rgba(105, 70, 75, 0.42)),
    url("assets/wishlist-shopping-bags.png") center 48% / cover;
}

.spoil-hero-copy {
  max-width: 740px;
}

.spoil-hero h1 {
  color: var(--red-soft);
  font-size: clamp(2.7rem, 6vw, 6.1rem);
}

.spoil-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.spoil-intro {
  background:
    linear-gradient(rgba(255, 250, 243, 0.9), rgba(248, 243, 235, 0.93)),
    url("assets/luxury-detail-marble-brass.webp") center / cover;
}

.wishlist-portrait-section {
  background:
    linear-gradient(rgba(255, 250, 243, 0.9), rgba(248, 243, 235, 0.93)),
    url("assets/luxury-detail-marble-brass.webp") center / cover;
}

.wishlist-portrait-card {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(73, 55, 45, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
  backdrop-filter: blur(14px);
}

.wishlist-portrait-card img {
  width: 100%;
  min-height: 520px;
  max-height: 700px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: calc(var(--radius) - 8px);
  box-shadow: 0 22px 60px rgba(73, 55, 45, 0.16);
}

.wishlist-portrait-card h2 {
  color: var(--red);
}

.wishlist-portrait-card p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.spoil-feature-grid,
.spoil-grid {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  gap: 16px;
}

.spoil-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.spoil-feature-grid article,
.spoil-grid article {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 250, 243, 0.86);
  border: 1px solid rgba(73, 55, 45, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
  backdrop-filter: blur(14px);
}

.spoil-feature-grid span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.spoil-feature-grid h3,
.spoil-grid h3 {
  margin-top: 12px;
  color: var(--red);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.spoil-feature-grid p,
.spoil-grid p,
.spoil-note p {
  color: var(--soft-ink);
}

.spoil-links-section {
  background:
    linear-gradient(rgba(238, 225, 207, 0.9), rgba(255, 250, 243, 0.92)),
    url("assets/luxury-detail-champagne-satin.webp") center / cover;
}

.spoil-grid {
  grid-template-columns: repeat(3, 1fr);
}

.curated-spoil-grid {
  align-items: start;
}

.spoil-link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.spoil-grid a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 12px 16px;
  color: white;
  background: var(--sage);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.spoil-grid a::after {
  content: "Open";
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}

.spoil-grid a:hover {
  background: var(--sage-dark);
}

.spoil-note {
  min-height: 520px;
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(73, 55, 45, 0.84), rgba(185, 130, 127, 0.38)),
    url("assets/wishlist-shopping-bags.png") center 55% / cover;
}

.spoil-note > div {
  max-width: 760px;
}

.spoil-note h2 {
  color: var(--red-soft);
}

.spoil-note p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}

.dashboard-page {
  background:
    linear-gradient(rgba(248, 243, 235, 0.84), rgba(238, 225, 207, 0.9)),
    url("assets/luxury-detail-satin-bedding.webp") center top / cover fixed;
}

.dashboard-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: clamp(70px, 12vw, 140px) clamp(18px, 5vw, 70px) clamp(42px, 7vw, 74px);
  color: white;
  background:
    linear-gradient(135deg, rgba(45, 37, 33, 0.86), rgba(105, 70, 75, 0.58)),
    url("assets/luxury-detail-black-stone-linen.webp") center 44% / cover;
}

.dashboard-hero > div {
  max-width: 760px;
}

.dashboard-hero h1 {
  color: var(--red-soft);
}

.dashboard-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.dashboard-shell {
  padding: clamp(34px, 6vw, 74px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(rgba(255, 250, 243, 0.8), rgba(248, 243, 235, 0.88)),
    url("assets/luxury-detail-marble-brass.webp") center / cover;
}

.dashboard-stats {
  max-width: 1120px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dashboard-stats article,
.dashboard-drawer {
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(73, 55, 45, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
  backdrop-filter: blur(14px);
}

.dashboard-stats article {
  padding: 22px;
}

.dashboard-stats span {
  display: block;
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-stats strong {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 500;
}

.dashboard-drawer {
  max-width: 1120px;
  margin: 14px auto 0;
  padding: 24px;
}

.dashboard-drawer summary {
  cursor: pointer;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.dashboard-drawer p {
  color: var(--soft-ink);
}

.dashboard-table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.dashboard-table > div {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(238, 225, 207, 0.72);
  border-radius: 18px;
}

.dashboard-table [role="columnheader"] {
  color: var(--ink);
  font-weight: 900;
}

.dashboard-table span,
.dashboard-links a {
  color: var(--soft-ink);
}

.dashboard-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.dashboard-links a {
  padding: 18px;
  background: rgba(238, 225, 207, 0.72);
  border: 1px solid rgba(73, 55, 45, 0.08);
  border-radius: 18px;
  font-weight: 900;
  text-decoration: none;
}

.dashboard-marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.dashboard-marketing-grid article,
.dashboard-action-list p {
  padding: 18px;
  background: rgba(238, 225, 207, 0.72);
  border: 1px solid rgba(73, 55, 45, 0.08);
  border-radius: 18px;
}

.dashboard-marketing-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 900;
}

.dashboard-action-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-action-list p {
  margin: 0;
  color: var(--soft-ink);
}

/* GoDaddy structure rebuild */
.one-page-section {
  scroll-margin-top: 104px;
  position: relative;
  overflow: hidden;
}

.one-page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.92)),
    url("assets/luxury-detail-satin-bedding.webp") center/cover;
  opacity: 0.62;
  animation: backgroundBreathe 26s ease-in-out infinite alternate;
}

.one-page-section > * {
  position: relative;
  z-index: 1;
}

.depth-photo-bg::after {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  width: auto;
  border-radius: 0;
  opacity: 0.48;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  transform: translate3d(0, var(--depth-shift, 0px), 0) scale(1.04);
  transition: transform 120ms linear;
  pointer-events: none;
}

.compact-title {
  max-width: 840px;
}

.compact-title h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
}

.compact-title p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 1.03rem;
  max-width: 780px;
}

.massage-section {
  background: var(--paper);
}

.massage-menu-page .massage-section {
  padding-top: clamp(92px, 12vw, 140px);
}

.massage-teaser-section .section-cta {
  max-width: 760px;
}

.massage-section.portrait-full-bg::before {
  inset: -8%;
  background:
    linear-gradient(rgba(248, 243, 235, 0.72), rgba(255, 250, 243, 0.82)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/Facetune_14-06-2026-18-33-47.jpeg/:/rs=w:1200,h:900,cg:true,m/cr=w:1200,h:900") center 22% / cover;
  opacity: 1;
  transform: translate3d(0, var(--depth-shift, 0px), 0) scale(1.04);
  transition: transform 120ms linear;
}

.massage-section.portrait-full-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(182, 162, 148, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 34%, rgba(185, 130, 127, 0.16), transparent 32rem);
  pointer-events: none;
}

.gallery-section,
.services-section,
.reviews-section,
.faq {
  background: var(--white);
}

.schedule-section,
.date-ideas-section,
.ads {
  background: var(--mist);
}

.about-section::before,
.gallery-section::before {
  background:
    linear-gradient(rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.92)),
    url("assets/luxury-detail-sheer-curtains.webp") center/cover;
}

.massage-section::before,
.services-section::before {
  background:
    linear-gradient(rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.9)),
    url("assets/luxury-detail-towels-brass.webp") center 54% / cover;
}

.date-ideas-section::before,
.schedule-section::before {
  background:
    linear-gradient(rgba(248, 243, 235, 0.9), rgba(248, 243, 235, 0.92)),
    url("assets/luxury-detail-sheer-curtains.webp") center/cover;
}

.date-ideas-section::after {
  opacity: 0.42;
  background:
    linear-gradient(rgba(248, 243, 235, 0.72), rgba(255, 250, 243, 0.82)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/1.jpg/:/cr=t:8.45%25,l:0%25,w:100%25,h:83.1%25/rs=w:900,m");
  background-position: center 30%;
  background-size: cover;
}

.massage-grid,
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.massage-grid article,
.schedule-grid article {
  overflow: hidden;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
}

.massage-grid img {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.massage-grid h3,
.massage-grid p,
.schedule-grid h3,
.schedule-grid p {
  padding-inline: 22px;
}

.massage-grid h3,
.schedule-grid h3 {
  margin-top: 28px;
}

.massage-grid p,
.schedule-grid p {
  color: var(--soft-ink);
}

.massage-grid details {
  margin: 0 22px 24px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.massage-grid summary {
  cursor: pointer;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.massage-grid details p {
  padding-inline: 0;
}

.massage-prices {
  margin-top: 28px;
}

.details-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.details-stack details {
  padding: 20px 24px;
  background: rgba(255, 250, 243, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.details-stack summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.details-stack p {
  color: var(--soft-ink);
}

.fine-print {
  max-width: 860px;
  margin-top: 26px;
  color: var(--soft-ink);
  text-align: center;
}

.service-heading {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  text-align: center;
}

.lead-line {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem) !important;
}

.centered-button {
  width: fit-content;
  margin: 20px auto 0;
  display: flex;
}

.compact-title h1,
.compact-title h2,
.etiquette .eyebrow,
.reviews-section .eyebrow {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.etiquette .eyebrow {
  color: var(--red);
}

.compact-title .eyebrow {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq .compact-title h2 {
  color: var(--red);
}

.faq .compact-title .eyebrow {
  margin-bottom: 10px;
  color: var(--soft-ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: 0;
  text-transform: none;
}

.reviews-section .eyebrow {
  width: 100%;
  text-align: center;
}

.pricing-panel {
  max-width: 980px;
  margin: 30px auto 0;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(73, 55, 45, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
}

.pricing-panel h2,
.pricing-panel h3 {
  margin-top: 26px;
  color: var(--red);
  text-align: center;
}

.pricing-panel h2:first-child,
.pricing-panel h3:first-child {
  margin-top: 0;
}

.pricing-panel p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.pricing-panel h3 + p,
.pricing-panel .panel-note {
  border-top: 0;
}

.pricing-panel strong {
  color: var(--ink);
  white-space: nowrap;
}

.panel-booking-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.package-copy {
  display: grid;
  gap: 4px;
}

.package-tag {
  width: fit-content;
  padding: 3px 10px;
  color: var(--red);
  background: rgba(234, 210, 207, 0.3);
  border: 1px solid rgba(185, 130, 127, 0.22);
  border-radius: 999px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-note {
  display: block !important;
  text-align: center;
}

.services-panel {
  max-width: 1040px;
}

.girlfriend-panel {
  max-width: 1080px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.88)),
    url("assets/luxury-detail-marble-brass.webp") center/cover;
  border: 1px solid rgba(73, 55, 45, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
}

.girlfriend-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 58vw, 720px);
  border-radius: 0;
  box-shadow: 24px 0 70px rgba(73, 55, 45, 0.14);
}

.girlfriend-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.girlfriend-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
}

.girlfriend-panel h3 {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.girlfriend-panel p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.gallery-link-panel {
  max-width: 760px;
  margin: 34px auto 0;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  border: 1px solid rgba(255, 250, 243, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--lux-shadow);
  background:
    linear-gradient(rgba(73, 55, 45, 0.58), rgba(105, 70, 75, 0.62)),
    url("https://img1.wsimg.com/isteam/ip/c1ba76e2-5a3c-45c3-ae18-6f6f5c33363f/Facetune_16-06-2026-11-20-46.jpeg/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1535,m") center 28% / cover;
}

.date-ideas-list {
  max-width: 980px;
  margin: 34px auto 0;
  display: grid;
  gap: 14px;
}

.date-ideas-list details {
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(73, 55, 45, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(73, 55, 45, 0.1);
}

.date-ideas-list summary {
  cursor: pointer;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  list-style-position: inside;
}

.date-ideas-list p,
.date-ideas-list li {
  color: var(--soft-ink);
}

.date-ideas-list ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.newsletter-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(45, 37, 33, 0.8), rgba(73, 55, 45, 0.76)),
    url("assets/luxury-detail-black-stone-linen.webp") center/cover;
  color: white;
}

.newsletter-section .compact-title h2,
.newsletter-section .compact-title p {
  color: white;
}

.newsletter-section .compact-title h2 {
  color: var(--red);
  text-shadow: 0 2px 18px rgba(255, 250, 243, 0.28);
}

.newsletter-form {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 18px;
  background: rgba(255, 250, 243, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 50px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.92);
  font: inherit;
}

.hidden {
  display: none !important;
}

.gallery-stack {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  max-width: 1120px;
  margin: 34px auto 0;
}

.gallery-set {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(12px, 2vw, 24px);
  background: rgba(255, 250, 243, 0.42);
  border-radius: var(--radius);
}

.gallery-set.trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-set.duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-set.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-set img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(73, 55, 45, 0.12);
}

.gallery-set.trio img,
.gallery-set.duo img {
  aspect-ratio: 4 / 3.4;
  min-height: 250px;
}

 .gallery-set.six img {
  min-height: 360px;
}

.wishlist-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 250, 243, 0.64), rgba(238, 225, 207, 0.7)),
    url("assets/wishlist-shopping-bags.png") center 48% / cover;
  color: var(--ink);
}

.wishlist-section .compact-title h2,
.wishlist-section .compact-title p {
  color: var(--ink);
}

.site-header {
  box-shadow: 0 8px 26px rgba(73, 55, 45, 0.07);
}

nav {
  border: 1px solid rgba(73, 55, 45, 0.1);
  box-shadow:
    0 10px 28px rgba(73, 55, 45, 0.08),
    var(--inner-glow);
}

.button,
.scroll-buttons button {
  border-color: rgba(73, 55, 45, 0.16);
  box-shadow:
    0 8px 22px rgba(73, 55, 45, 0.08),
    var(--inner-glow);
}

.button.primary,
.curved-cta .button.primary,
.message-bubble.reply,
.booking-checklist span {
  box-shadow:
    0 11px 28px rgba(105, 70, 75, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.pricing-panel,
.massage-grid article,
.schedule-grid article,
.date-ideas-list details,
.details-stack details,
.faq-grid details,
.trust-grid article,
.booking-checklist article,
.policy-grid article,
.message-demo,
.ad-links a,
.review-track blockquote,
.rate-grid > div,
.section-cta,
.gallery-set,
.spoil-feature,
.spoil-card,
.wishlist-section .centered-button,
.dashboard-card,
.dashboard-drawer,
.dashboard-link-card,
.dashboard-marketing-card {
  border-color: var(--frame-line);
  box-shadow:
    var(--lux-shadow),
    var(--inner-glow),
    0 0 0 1px rgba(255, 250, 243, 0.36);
}

.age-card,
.girlfriend-panel,
.gallery-link-panel,
.wishlist-portrait-card,
.dashboard-hero {
  border-color: var(--frame-line);
  box-shadow:
    var(--deep-shadow),
    var(--inner-glow),
    0 0 0 1px rgba(255, 250, 243, 0.4);
}

.massage-grid article,
.schedule-grid article,
.pricing-panel,
.girlfriend-panel,
.gallery-link-panel,
.date-ideas-list details,
.faq-grid details,
.ad-links a,
.review-track blockquote,
.wishlist-portrait-card,
.spoil-card,
.dashboard-card,
.dashboard-drawer {
  position: relative;
}

.massage-grid article::after,
.pricing-panel::after,
.girlfriend-panel::after,
.date-ideas-list details::after,
.faq-grid details::after,
.review-track blockquote::after,
.wishlist-portrait-card::after,
.dashboard-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 250, 243, 0.4);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.massage-grid article,
.date-ideas-list details,
.faq-grid details,
.ad-links a,
.review-track blockquote,
.trust-grid article,
.booking-checklist article,
.spoil-card,
.dashboard-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.massage-grid article:hover,
.date-ideas-list details:hover,
.faq-grid details:hover,
.ad-links a:hover,
.review-track blockquote:hover,
.trust-grid article:hover,
.booking-checklist article:hover,
.spoil-card:hover,
.dashboard-card:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 130, 127, 0.34);
  box-shadow:
    var(--lift-shadow),
    var(--inner-glow),
    0 0 0 1px rgba(255, 250, 243, 0.46);
}

.massage-grid img,
.single-photo-break img,
.gallery-set img,
.girlfriend-image img,
.wishlist-portrait-card img {
  box-shadow:
    0 16px 42px rgba(73, 55, 45, 0.12),
    0 0 0 1px rgba(255, 250, 243, 0.42);
}

.massage-grid img {
  border: 10px solid rgba(255, 250, 243, 0.72);
  border-bottom-width: 8px;
}

.message-bubble {
  box-shadow:
    0 8px 22px rgba(73, 55, 45, 0.08),
    var(--inner-glow);
}

.reviews-section .impression-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--soft-ink);
}

.age-logo {
  width: 86px;
  height: 86px;
}

@media (max-width: 980px) {
  .massage-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes ambientFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(42px, 26px, 0) scale(1.08);
  }
}

@keyframes slowSheen {
  from {
    transform: translateX(-6%);
    opacity: 0.38;
  }
  to {
    transform: translateX(6%);
    opacity: 0.72;
  }
}

@keyframes backgroundBreathe {
  from {
    transform: scale(1);
    filter: saturate(0.92);
  }
  to {
    transform: scale(1.045);
    filter: saturate(1.05);
  }
}

@keyframes ambientDrift {
  from {
    transform: translate3d(-20px, 0, 0);
  }
  to {
    transform: translate3d(34px, 18px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .hero::before,
  .photo-cluster-dark::before,
  .one-page-section::before {
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .depth-photo-bg::after,
  .ads::after {
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  nav {
    flex-wrap: wrap;
    width: min(100%, 620px);
  }

  .hero,
  .intro,
  .image-break,
  .booking,
  .etiquette,
  .photo-cluster,
  .photo-cluster-dark,
  .photo-cluster-light {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: -1;
  }

  .hero-image {
    min-height: 56vh;
  }

  .photo-ribbon {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .photo-ribbon img {
    aspect-ratio: 1 / 1;
  }

  .look-grid,
  .experience-layout,
  .rate-grid,
  .policy-grid,
  .faq-grid,
  .trust-grid,
  .booking-checklist,
  .spoil-feature-grid,
  .spoil-grid,
  .wishlist-portrait-card,
  .dashboard-stats,
  .dashboard-links,
  .dashboard-marketing-grid,
  .girlfriend-panel,
  .review-links,
  .ad-links {
    grid-template-columns: 1fr;
  }

  .girlfriend-image {
    min-height: min(620px, 118vw);
  }

  .girlfriend-image img {
    object-position: center 14%;
  }

  .look-grid,
  .look-grid.two,
  .look-grid.three,
  .look-grid.six,
  .look-grid.seven,
  .look-grid.feature {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .look-grid img,
  .look-grid .tall {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-set {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking > img,
  .image-break > img {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
  }

  nav {
    gap: 6px;
    justify-content: center;
    overflow: visible;
    width: 100%;
    padding: 7px;
    border-radius: 18px;
    background: rgba(238, 225, 207, 0.48);
  }

  nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 11px;
    background: rgba(238, 225, 207, 0.82);
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3rem);
  }

  .section {
    padding-block: 64px;
  }

  .contact-direct-dialog {
    padding: 22px;
  }

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

  .request-grid .full {
    grid-column: auto;
  }

  .photo-ribbon {
    grid-template-columns: 1fr;
  }

  .gallery-set {
    grid-template-columns: 1fr;
  }

  .pricing-panel p {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pricing-panel strong {
    align-self: flex-end;
  }

  .section-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-table > div {
    grid-template-columns: 1fr;
  }

  .instruction-grid {
    grid-template-columns: 1fr;
  }

  .impression-heading,
  .section-cta,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #8c3158;
  outline-offset: 3px;
}
