@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ivory: #fbf8f1;
  --mist: #efeeec;
  --sage: #6f806a;
  --pine: #22372f;
  --ink: #1d2521;
  --clay: #b6965e;
  --gold: #c5a46a;
  --rose: #ead7d0;
  --crimson: #c2263d;
  --white: #ffffff;
  --line: rgba(34, 55, 47, 0.14);
  --shadow: 0 30px 90px rgba(34, 55, 47, 0.1);
  --serif: "EB Garamond", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.age-gate-open {
  overflow: hidden;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 220;
  width: 100%;
  height: 3px;
  background: var(--crimson);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

body.age-gate-open .scroll-progress {
  opacity: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 320;
  border: 2px solid var(--gold);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body:not([data-page="home"]) .site-header {
  background: rgba(251, 248, 241, 0.94);
  color: var(--pine);
  box-shadow: 0 12px 38px rgba(29, 37, 33, 0.08);
  backdrop-filter: blur(18px);
}

body[data-page="prices"] .site-header {
  background: rgba(29, 37, 33, 0.76);
  color: var(--white);
  box-shadow: none;
}

body[data-page="prices"] .site-header.is-scrolled {
  background: rgba(29, 37, 33, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: currentColor;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  display: block;
  max-width: 210px;
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.45vw, 22px);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header.is-scrolled .site-nav a.is-active,
body:not([data-page="home"]) .site-nav a.is-active {
  color: var(--crimson);
}

.site-header.is-scrolled .site-nav .nav-cta,
body:not([data-page="home"]) .site-nav .nav-cta {
  color: var(--white);
}

.site-nav .nav-cta {
  border: 1px solid var(--crimson);
  border-radius: 999px;
  background: var(--crimson);
  color: var(--white);
  padding: 9px 13px;
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-icon {
  grid-area: 1 / 1;
  display: inline-grid;
  width: 24px;
  height: 18px;
  align-content: space-between;
}

.nav-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.nav-open .nav-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

body.nav-open .nav-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 72px) 72px;
  color: var(--white);
}

.hero-home {
  margin-bottom: 0;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, var(--hero-drift, 0px), 0) scale(1.04);
  will-change: transform;
}

.hero-media {
  background-image: url("Asset/photo_4974509746358520849_y.jpg");
  background-position: center 19%;
}

.hero-video {
  width: 100%;
  height: 100%;
  background-image: url("Asset/photo_4974509746358520849_y.jpg");
  background-position: center 19%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 28, 25, 0.7), rgba(18, 28, 25, 0.42) 44%, rgba(18, 28, 25, 0.18)),
    linear-gradient(0deg, rgba(18, 28, 25, 0.54), rgba(18, 28, 25, 0.1) 42%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(78vh - 204px);
  align-items: end;
}

.hero-concierge {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.13);
  padding: 28px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.hero-concierge h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
}

.concierge-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.concierge-list p {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.concierge-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-concierge .text-link {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--crimson);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--rose);
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.15rem);
}

h3 {
  font-size: 1.12rem;
  font-weight: 750;
}

.hero-copy,
.page-hero-content p,
.page-title p {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  min-height: 190px;
  padding: clamp(22px, 4vw, 38px);
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--pine);
  font-size: 1rem;
  line-height: 1.2;
}

.proof-item p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(29, 37, 33, 0.72);
  font-size: 0.96rem;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 22px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.hero .button-primary,
.page-hero .button-primary {
  background: var(--crimson);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--white);
}

.button-outline {
  border-color: rgba(194, 38, 61, 0.42);
  color: var(--crimson);
}

.button-outline:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 24px);
}

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.92)),
    rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.age-gate-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(680px, calc(100svh - 28px));
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.94);
  color: var(--white);
  padding: clamp(24px, 4.5vw, 42px);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.46);
}

.age-gate-panel .eyebrow {
  margin-bottom: 14px;
  color: var(--white);
}

.age-gate-panel h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 0.98;
}

.age-gate-panel p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 1.45vw, 1.14rem);
  line-height: 1.5;
}

.age-gate-panel a {
  color: var(--white);
  border-bottom: 1px solid currentColor;
}

.age-gate-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.age-gate-policy a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.age-gate-policy a:hover,
.age-gate-policy a:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: #000000;
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.age-gate-open iframe {
  visibility: hidden !important;
}

.age-gate-actions .button-primary {
  border-color: var(--crimson);
  background: var(--crimson);
  color: var(--white);
}

.age-gate-actions .button-outline {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  color: var(--white);
}

.age-gate-actions .button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: #000000;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--pine);
  font-weight: 800;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.signature-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ivory);
}

.signature-marquee {
  display: flex;
  width: max-content;
  animation: signatureDrift 36s linear infinite;
}

.signature-marquee span {
  padding: 16px clamp(26px, 4vw, 52px);
  color: var(--crimson);
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  white-space: nowrap;
}

.prestige-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  padding: clamp(56px, 8vw, 94px) 0;
}

.prestige-panel h2,
.journey-copy h2 {
  margin-bottom: 0;
  color: var(--pine);
  font-size: clamp(2.25rem, 5vw, 5.2rem);
}

.prestige-copy p,
.journey-copy p {
  color: rgba(29, 37, 33, 0.74);
  font-size: 1.05rem;
}

.journey-section {
  background: var(--mist);
  padding: clamp(56px, 9vw, 108px) 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.journey-steps {
  display: grid;
  gap: 14px;
}

.journey-steps article {
  display: grid;
  grid-template-columns: 92px minmax(0, 0.56fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  padding: 20px;
}

.journey-steps span {
  color: var(--crimson);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-steps h3 {
  margin-bottom: 0;
  color: var(--pine);
}

.journey-steps p {
  margin-bottom: 0;
  color: rgba(29, 37, 33, 0.8);
}

[data-reveal] {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 920ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 920ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal] .reveal-child {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--child-delay, 0ms);
}

[data-reveal].is-visible .reveal-child {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.intro-band {
  background: var(--rose);
  color: var(--pine);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(44px, 7vw, 82px) 0;
}

.intro-grid .eyebrow {
  color: var(--crimson);
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.intro-grid p:last-child {
  margin: auto 0 0;
  color: rgba(29, 37, 33, 0.74);
  font-size: 1.05rem;
}

.section-block {
  padding: clamp(64px, 10vw, 122px) 0;
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--pine);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.feature-card,
.step-card,
.service-card,
.contact-panel,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.feature-card {
  min-height: 260px;
  padding: 28px;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 12px;
  color: var(--pine);
}

.feature-card p,
.step-card p,
.service-card p,
.care-grid p,
.detail-grid p,
.faq-grid p,
.contact-panel p,
.inquiry-form p {
  margin-bottom: 0;
  color: rgba(29, 37, 33, 0.8);
}

.care-grid,
.detail-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.detail-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-grid article,
.detail-grid article,
.faq-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.care-grid h3,
.detail-grid h3,
.faq-grid h3 {
  margin-bottom: 14px;
  color: var(--pine);
}

.review-section {
  padding-top: clamp(32px, 6vw, 82px);
}

.review-rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  max-width: 540px;
  margin: 14px 0 0;
  color: rgba(29, 37, 33, 0.72);
  font-size: 1rem;
}

.review-rating-summary strong {
  color: var(--crimson);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
}

.review-card {
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(251, 248, 241, 0.58)),
    var(--white);
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(29, 37, 33, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rating-stars {
  --rating-fill: 100%;
  display: inline-block;
  background: linear-gradient(90deg, var(--gold) var(--rating-fill), rgba(34, 55, 47, 0.22) var(--rating-fill));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-text-fill-color: transparent;
}

.rating-stars-large {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.rating-50 {
  --rating-fill: 100%;
}

.rating-47 {
  --rating-fill: 94%;
}

.rating-40 {
  --rating-fill: 80%;
}

.rating-score {
  color: var(--crimson);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0;
  color: rgba(29, 37, 33, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.2;
}

.review-meta {
  margin-top: 22px;
  color: rgba(29, 37, 33, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card p {
  margin-bottom: 0;
  color: rgba(29, 37, 33, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.18;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  background: var(--mist);
}

.editorial-image {
  min-height: 620px;
}

.editorial-image img,
.contact-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 8vw, 96px);
}

.editorial-copy h2 {
  margin-bottom: 24px;
  color: var(--pine);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.editorial-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(29, 37, 33, 0.78);
  font-size: 1.04rem;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.mini-gallery img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 12%;
}

.mini-gallery img:nth-child(2) {
  margin-top: 44px;
}

.booking-band {
  background: var(--rose);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 8vw, 86px) 0;
}

.booking-grid h2 {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--pine);
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.booking-actions {
  justify-content: flex-end;
}

.booking-actions p {
  width: 100%;
  margin: 0;
  color: rgba(29, 37, 33, 0.7);
  font-size: 0.92rem;
  text-align: right;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(42px, 7vw, 72px) clamp(20px, 5vw, 54px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(260px, 1.12fr) minmax(240px, 0.9fr) minmax(170px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand {
  margin-bottom: 22px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
  word-break: normal;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 64vh;
  overflow: hidden;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 72px) 70px;
  color: var(--white);
}

.about-hero .page-hero-media {
  background-image: url("Asset/photo_4974509746358520856_y.jpg");
  background-position: center 19%;
}

.services-hero .page-hero-media {
  background-image: url("Asset/photo_4974509746358520858_y.jpg");
  background-position: center 18%;
}

.page-hero h1,
.page-title h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
}

.page-title {
  padding: 152px 0 56px;
  background: var(--mist);
}

.page-title h1 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--pine);
}

.page-title p {
  color: rgba(29, 37, 33, 0.8);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.58fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  padding: clamp(62px, 9vw, 112px) 0;
}

.story-copy h2 {
  margin-bottom: 24px;
  color: var(--pine);
}

.story-copy p:not(.eyebrow) {
  color: rgba(29, 37, 33, 0.75);
  font-size: 1.04rem;
}

.portrait-frame {
  min-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.values-band {
  background: var(--rose);
  color: var(--pine);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(42px, 7vw, 74px) 0;
}

.values-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(34, 55, 47, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
}

.values-grid h2 {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 800;
}

.values-grid p {
  margin-bottom: 0;
  color: rgba(29, 37, 33, 0.72);
}

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

.step-card {
  min-height: 230px;
  padding: 28px;
}

.service-list {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-card:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  min-height: 420px;
  background: var(--mist);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 5vw, 64px) 0;
}

.service-card h2 {
  margin-bottom: 0;
  color: var(--pine);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.service-body p {
  max-width: 620px;
  font-size: 1.02rem;
}

.service-body .text-link {
  color: var(--crimson);
  margin-top: 24px;
}

.service-note-band {
  background: var(--rose);
  color: var(--pine);
}

.note-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(50px, 8vw, 88px) 0;
}

.note-grid .eyebrow {
  color: var(--crimson);
}

.note-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.note-grid p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(29, 37, 33, 0.74);
}

.gallery-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 clamp(76px, 10vw, 128px);
}

.gallery-grid {
  column-count: 3;
  column-gap: 26px;
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid rgba(34, 55, 47, 0.12);
  border-radius: 2px;
  background: var(--mist);
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: auto;
}

.gallery-item.wide {
  grid-column: auto;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: center;
  transition: filter 300ms ease, opacity 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.05) contrast(1.02);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 4px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(56px, 0.16fr) minmax(0, 1fr) minmax(56px, 0.16fr);
  gap: clamp(10px, 2vw, 24px);
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(18px, 4vw, 48px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-frame {
  display: grid;
  min-width: 0;
  max-width: min(1040px, 100%);
  max-height: 86vh;
  justify-self: center;
  margin: 0;
}

.gallery-lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: calc(86vh - 44px);
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox-frame figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: #000000;
}

.gallery-lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.45rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: clamp(46px, 5vw, 62px);
  height: clamp(62px, 8vw, 88px);
  border-radius: 999px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.gallery-lightbox-prev {
  justify-self: end;
}

.gallery-lightbox-next {
  justify-self: start;
}

.contact-title {
  background: var(--rose);
  color: var(--pine);
}

.contact-title h1 {
  color: var(--pine);
}

.contact-title p {
  color: rgba(29, 37, 33, 0.74);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  padding: clamp(54px, 8vw, 94px) 0;
}

.contact-panel,
.inquiry-form {
  padding: clamp(28px, 4vw, 48px);
}

.contact-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.inquiry-form {
  border: 0;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(34, 55, 47, 0.08);
}

.contact-panel h2 {
  margin-bottom: 26px;
  color: var(--pine);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-methods a,
.contact-methods p {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-weight: 800;
}

.contact-methods span {
  display: block;
  color: var(--crimson);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-note {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.contact-panel-image {
  margin-top: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border-radius: 2px;
  background: var(--mist);
}

.contact-panel-image img {
  width: 100%;
  height: clamp(300px, 36vw, 460px);
  object-fit: cover;
  object-position: center 12%;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--pine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(34, 55, 47, 0.26);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 13px 0;
}

textarea {
  border: 1px solid rgba(34, 55, 47, 0.26);
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--crimson);
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5em;
  color: var(--pine);
  font-weight: 700;
}

.form-honeypot {
  display: none;
}

.contact-image-band {
  height: clamp(320px, 46vw, 620px);
  overflow: hidden;
}

.contact-image-band img {
  object-position: center 12%;
}

.policy-page {
  padding: 148px 0 clamp(66px, 10vw, 120px);
  background: var(--ivory);
}

.policy-layout {
  max-width: 860px;
}

.policy-layout h1 {
  margin-bottom: 12px;
  color: var(--pine);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.policy-updated {
  margin-bottom: clamp(36px, 6vw, 64px);
  color: rgba(29, 37, 33, 0.76);
}

.policy-layout article {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.policy-layout article:last-child {
  border-bottom: 1px solid var(--line);
}

.policy-layout h2 {
  margin-bottom: 12px;
  color: var(--pine);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-layout p {
  color: rgba(29, 37, 33, 0.82);
}

.policy-layout a {
  color: var(--crimson);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-page {
  min-height: 100vh;
  padding: 128px clamp(16px, 4vw, 54px) 44px;
  background:
    radial-gradient(circle at 18% 18%, rgba(197, 164, 106, 0.18), transparent 32%),
    linear-gradient(135deg, #151d1a 0%, var(--ink) 42%, #2e221f 100%);
  color: var(--white);
}

.price-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.price-copy {
  max-width: 470px;
}

.price-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

.price-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.price-page .button-primary {
  background: var(--crimson);
  color: var(--white);
}

.price-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(8px, 1.5vw, 16px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.price-frame::before {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(197, 164, 106, 0.26);
  border-radius: 14px;
  content: "";
}

.price-menu-image {
  width: 100%;
  max-height: calc(100vh - 190px);
  border-radius: 8px;
  object-fit: contain;
}

@keyframes signatureDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  [data-reveal] .reveal-child {
    opacity: 1;
    transform: none;
  }

  .hero-media,
  .page-hero-media {
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 74px;
    padding: 16px 18px;
  }

  .brand small {
    max-width: 170px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 74px 12px auto 12px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 248, 241, 0.98);
    color: var(--pine);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    border: 0;
    border-radius: 0;
    padding: 16px 10px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    min-height: 74vh;
    padding: 112px 20px 48px;
  }

  .hero-layout,
  .prestige-panel,
  .journey-grid,
  .price-shell {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-concierge {
    max-width: 520px;
  }

  .hero-media {
    background-position: 42% 16%;
  }

  .intro-grid,
  .editorial-section,
  .story-layout,
  .service-card,
  .note-grid,
  .contact-layout,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) .service-image {
    order: 0;
  }

  .service-image {
    min-height: 360px;
  }

  .journey-steps article {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .service-preview-grid,
  .values-grid,
  .steps-grid,
  .care-grid,
  .review-list,
  .detail-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .editorial-image,
  .portrait-frame {
    min-height: 460px;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .mini-gallery img {
    height: 360px;
  }

  .mini-gallery img:nth-child(2) {
    margin-top: 0;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .booking-actions p {
    text-align: left;
  }

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

  .page-hero {
    min-height: 58vh;
    padding: 116px 20px 48px;
  }

  .gallery-grid {
    column-count: 2;
  }

  .price-page {
    padding-top: 104px;
  }

  .price-menu-image {
    max-height: none;
  }
}

@media (max-width: 560px) {
  .age-gate {
    align-items: start;
    padding: 12px;
  }

  .age-gate-panel {
    width: 100%;
    max-height: calc(100svh - 24px);
    padding: 28px 30px;
  }

  .age-gate-panel .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .age-gate-panel h2 {
    margin-bottom: 14px;
    font-size: clamp(2.5rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .age-gate-panel p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .age-gate-policy {
    gap: 8px;
    margin-bottom: 18px;
  }

  .age-gate-policy a {
    min-height: 38px;
    padding: 7px 13px;
    font-size: 0.68rem;
  }

  .age-gate-actions {
    gap: 10px;
  }

  .age-gate-actions .button {
    min-height: 44px;
    padding-block: 11px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    max-width: 142px;
    font-size: 0.58rem;
  }

  .hero-actions,
  .booking-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-card,
  .step-card,
  .service-card,
  .care-grid article,
  .detail-grid article,
  .faq-grid article,
  .contact-panel,
  .inquiry-form,
  .values-grid article {
    padding: 22px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .gallery-item {
    margin-bottom: 14px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    padding: max(12px, env(safe-area-inset-top)) 8px max(12px, env(safe-area-inset-bottom));
  }

  .gallery-lightbox-frame {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 24px);
    place-items: center;
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-lightbox-frame img {
    width: auto;
    max-height: calc(100dvh - 24px);
    border: 0;
    box-shadow: none;
  }

  .gallery-lightbox-frame figcaption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-top: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    padding: 6px 10px;
    transform: translateX(-50%);
  }

  .gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 58px;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.34);
    font-size: 2.6rem;
    transform: translateY(-50%);
  }

  .gallery-lightbox-prev {
    left: 8px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-lightbox-next {
    right: 8px;
    grid-column: auto;
    grid-row: auto;
  }

  .price-page {
    padding-inline: 8px;
  }

  .price-frame {
    padding: 6px;
  }

  .price-frame::before {
    inset: -5px;
  }
}
