:root {
  --color-bg: #F7F5F1;
  --color-surface: #FDFCFA;
  --color-dark: #1C1410;
  --color-accent: #5B7A63;
  --color-accent-hover: #4A6A52;
  --color-accent-deep: #3D5C47;
  --color-sage: #8FA898;
  --color-muted: #7A6A62;
  --color-white: #FFFFFF;
  --color-gold: #C4A265;
  --color-line: #DDD8D0;
  --color-line-light: #EBE7E1;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --ease-entry: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --pad: clamp(72px, 9vw, 120px);
  --container: min(1140px, 88vw);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-dark);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

main {
  overflow-x: clip;
}

.container {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
}

.section--bg {
  background: var(--color-bg);
}

.section--surface {
  background: var(--color-surface);
}

.section {
  padding: var(--pad) 0;
}

.feature--tech.section--bg {
  border-top: 1px solid var(--color-line-light);
  border-bottom: 1px solid var(--color-line-light);
}

/* Typography */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  margin-bottom: 1rem;
}

.eyebrow--light {
  color: rgba(138, 158, 140, 0.7);
}

.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-title--light {
  color: var(--color-white);
}

.section-intro {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 640px;
}

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, color 200ms ease, border-color 200ms ease;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

.btn-pill--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-pill--primary:hover {
  background: var(--color-accent-hover);
  transform: scale(1.02);
}

.btn-pill--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-white);
}

.btn-pill--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.02);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(247, 245, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(91, 122, 99, 0.15);
  box-shadow: 0 4px 24px rgba(28, 20, 16, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 101;
  justify-self: start;
}

.nav-logo-u2 {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.03em;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.header:not(.scrolled) .nav-logo-u2,
.header:not(.scrolled) .nav-logo-sub {
  color: var(--color-white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.header:not(.scrolled) .nav-links > li > a,
.header:not(.scrolled) .nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.header:not(.scrolled) .nav-links > li > a:hover,
.header:not(.scrolled) .nav-dropdown-trigger:hover,
.header:not(.scrolled) .nav-links > li > a.active,
.header:not(.scrolled) .nav-dropdown-trigger.active {
  color: var(--color-white);
}

.header:not(.scrolled) .nav-dropdown-menu a {
  color: var(--color-dark);
  text-shadow: none;
}

.header:not(.scrolled) .nav-dropdown-menu a:hover,
.header:not(.scrolled) .nav-dropdown-menu a.active {
  color: var(--color-accent);
}

.header:not(.scrolled) .nav-cta {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-self: center;
  grid-column: 2;
  align-items: center;
}

.nav-links > li > a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-dark);
  transition: color 0.25s ease;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-chevron {
  font-size: 0.6rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  list-style: none;
  min-width: 196px;
  margin: 0;
  padding: 0.45rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(28, 20, 16, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 120;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-dark);
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  text-shadow: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--color-accent);
  background: rgba(91, 122, 99, 0.08);
}

.page-about .nav-dropdown-trigger.active {
  color: var(--color-accent);
}

.page-about .header:not(.scrolled) .nav-dropdown-trigger.active {
  color: var(--color-white);
}

.nav-cta {
  z-index: 101;
  flex-shrink: 0;
  justify-self: end;
  grid-column: 3;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header:not(.scrolled) .nav-toggle span {
  background: var(--color-white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.nav-overlay.open {
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 16, 0.3);
  opacity: 0;
  transition: opacity 400ms ease;
}

.nav-overlay.open .nav-overlay-backdrop {
  opacity: 1;
}

.nav-overlay-panel {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line-light);
  box-shadow: 0 12px 32px rgba(28, 20, 16, 0.1);
  padding: 1.25rem clamp(1.25rem, 5vw, 2rem) 1.5rem;
  transform: translateY(calc(-100% - var(--header-h)));
  transition: transform 400ms ease;
}

.nav-overlay.open .nav-overlay-panel {
  transform: translateY(0);
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.nav-overlay-links a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-dark);
  min-height: 44px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
}

.nav-overlay-subnav {
  display: grid;
  gap: 0.1rem;
  width: 100%;
  max-width: 280px;
  margin-bottom: 0.25rem;
}

.nav-overlay-subnav a {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-muted);
  min-height: 38px;
  justify-content: center;
}

.nav-overlay-subnav a:hover {
  color: var(--color-accent);
}

.nav-overlay-visit {
  margin-top: 0.65rem;
  text-align: center;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 5vw, 3rem) 4rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 20, 16, 0.55) 0%,
    rgba(28, 20, 16, 0.25) 60%,
    rgba(28, 20, 16, 0.45) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-block {
  position: relative;
  display: block;
  width: min(560px, 100%);
  padding: 2rem 2.25rem 2.25rem;
}

.hero-brand-diamond {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transform: rotate(45deg) scale(0.98);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-brand-diamond {
    animation: diamondPulse 5s ease-in-out infinite;
  }
}

@keyframes diamondPulse {
  0%, 100% { opacity: 0.45; transform: rotate(45deg) scale(0.98); }
  50% { opacity: 0.85; transform: rotate(45deg) scale(1); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.hero-brand {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem 1rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.hero-brand-u2 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.hero-brand-script {
  font-family: var(--font-script);
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1;
}

.hero-tagline {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.hero-sub {
  position: relative;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.4s ease;
}

.hero-scroll.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-scroll-line {
  display: block;
  width: 2px;
  height: 40px;
  background: rgba(91, 122, 99, 0.6);
  transform-origin: top;
}

.hero-scroll-chevron {
  font-size: 1.25rem;
  color: rgba(91, 122, 99, 0.6);
  line-height: 1;
}

/* Hero load animations */
.hero-animate {
  opacity: 0;
}

.hero.loaded .hero-block.hero-animate {
  animation: heroFadeUp 700ms var(--ease-entry) forwards;
  animation-delay: 200ms;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.3); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-scroll-line {
    animation: scrollPulse 2s ease-in-out infinite;
  }
}

/* Compact page hero (about & inner pages) */
.page-hero {
  min-height: clamp(320px, 44svh, 460px);
  scroll-margin-top: var(--header-h);
  padding: calc(var(--header-h) + 1.5rem) clamp(1.25rem, 5vw, 3rem) 3rem;
}

.page-hero .hero-block {
  width: min(640px, 100%);
  padding: 1.5rem 1.75rem 1.75rem;
}

.page-hero .hero-brand-u2 {
  font-size: clamp(2.15rem, 4.5vw, 3.25rem);
}

.page-hero .hero-brand-script {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.page-hero .hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  margin-bottom: 0.75rem;
}

.page-hero .hero-sub {
  max-width: 540px;
  margin-inline: auto;
}

.page-hero .hero-scroll {
  margin-top: 0;
  text-decoration: none;
}

.page-hero .hero-scroll.section-scroll-cue {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.55);
}

.page-hero .hero-scroll-chevron {
  color: rgba(255, 255, 255, 0.55);
}

.services-intro .inline-link {
  color: var(--color-accent);
  font-weight: 400;
  transition: color 0.2s ease;
}

.services-intro .inline-link:hover {
  color: var(--color-accent-deep);
  text-decoration: underline;
}

/* Section scroll cues */
.section-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  padding-bottom: 0.15rem;
  color: rgba(91, 122, 99, 0.38);
  text-decoration: none;
  transition: opacity 0.45s ease, color 0.25s ease;
}

.section-scroll-cue:hover {
  color: rgba(91, 122, 99, 0.62);
}

.section-scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.section-scroll-cue--span {
  grid-column: 1 / -1;
  justify-self: center;
  padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.section-scroll-cue-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-scroll-cue-chevron {
  font-size: 1.05rem;
  line-height: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .section-scroll-cue-chevron {
    animation: sectionCueBlink 2.6s ease-in-out infinite;
  }
}

@keyframes sectionCueBlink {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 0.65; transform: translateY(4px); }
}

/* Experience cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exp-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 2px 20px rgba(28, 20, 16, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 3px 3px 0 0;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(28, 20, 16, 0.12);
}

.exp-card h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.exp-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.exp-callout {
  margin-top: 1rem !important;
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--color-accent) !important;
}

/* Private rooms */
.private-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.parallax-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(28, 20, 16, 0.1);
  height: clamp(360px, 50vh, 520px);
}

.parallax-wrap img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
}

.private-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-block;
  background: var(--color-surface);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  padding: 4px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
}

.private-body p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.private-body strong {
  font-weight: 500;
  color: var(--color-dark);
}

.pull-quote {
  margin-top: 2rem;
  border-left: 2px solid var(--color-accent);
  padding-left: 20px;
}

.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.pull-quote cite {
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  color: var(--color-muted);
}

/* Feature sections (AI curing) */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.feature--reverse .feature-visual {
  order: 2;
  flex-direction: row-reverse;
  padding-right: clamp(32px, 4vw, 48px);
  padding-left: clamp(16px, 2vw, 24px);
}

.feature--reverse .feature-content {
  order: 1;
}

.feature--reverse .feature-visual-detail {
  margin-left: 0;
  margin-right: -1.25rem;
}

.feature-visual {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 520px;
  padding: clamp(32px, 4vw, 48px);
  padding-right: clamp(16px, 2vw, 24px);
  overflow: hidden;
  min-width: 0;
}

.feature-visual-main {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.feature-visual-main img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-entry);
}

.feature-visual:hover .feature-visual-main img {
  transform: scale(1.02);
}

.feature-visual-detail {
  flex-shrink: 0;
  width: clamp(140px, 20vw, 220px);
  margin-left: -1.25rem;
  border: 4px solid var(--color-surface);
  box-shadow: 0 12px 40px rgba(28, 20, 16, 0.14);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.feature-visual-detail img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.feature-content {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  min-width: 0;
}

.feature-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.feature-body p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.feature-body strong {
  font-weight: 500;
  color: var(--color-dark);
}

.feature-body em {
  font-style: italic;
  color: var(--color-dark);
}

.feature-points {
  list-style: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line);
}

.feature-points li {
  font-size: 0.85rem;
  color: var(--color-dark);
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.feature-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Services */
.services-intro {
  margin-top: 1rem;
  font-size: 15px;
  color: var(--color-muted);
  max-width: 52ch;
  line-height: 1.65;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.35rem;
  background: var(--color-bg);
  border-radius: 999px;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.service-tab {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  white-space: nowrap;
}

.service-tab.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.service-panel {
  display: none;
  opacity: 0;
}

.service-panel.active {
  display: block;
  animation: panelFadeIn 200ms ease forwards;
}

@keyframes panelFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2.5rem, 8vw, 6rem);
  row-gap: 0;
}

.menu-list--single {
  grid-template-columns: 1fr;
  max-width: 50%;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line-light);
  font-size: 0.9rem;
}

.menu-row span:first-child {
  color: var(--color-dark);
  padding-right: 1rem;
  min-width: 0;
}

.menu-row span:last-child {
  color: var(--color-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.popular-badge {
  margin-left: 0.35rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: normal;
  text-transform: none;
}

/* Spa tier cards */
.spa-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-surface);
}

.spa-heading,
.lash-heading,
.kids-heading {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.spa-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.spa-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-surface);
}

.spa-card--mid {
  box-shadow: 0 4px 16px rgba(28, 20, 16, 0.06);
}

.spa-card--golden {
  border: 1px solid var(--color-gold);
  box-shadow: 0 8px 24px rgba(28, 20, 16, 0.1);
}

.spa-card-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.spa-card-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.spa-card-desc {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.kids-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

/* Gallery & reviews block */
.gallery-reviews-block {
  background: var(--color-bg);
  padding: clamp(36px, 5vw, 64px) 0;
}

.gallery-reviews-block.section--surface {
  background: var(--color-surface);
}

.gallery-reviews-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-reviews-block .gallery,
.gallery-reviews-block .testimonials {
  padding: 0;
}

.gallery-reviews-block .section-intro {
  margin-bottom: clamp(16px, 2.5vw, 22px);
}

.gallery-reviews-block .section-intro--compact {
  margin-bottom: clamp(14px, 2vw, 18px);
}

.gallery-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gallery-carousel {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  width: 100%;
}

.gallery-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-accent);
  cursor: pointer;
  transition: color 0.25s ease;
}

.gallery-nav:hover {
  color: var(--color-accent-deep);
}

.gallery-nav-icon {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  line-height: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-nav--prev .gallery-nav-icon {
    animation: galleryNavBlinkLeft 1.4s ease-in-out infinite;
  }

  .gallery-nav--next .gallery-nav-icon {
    animation: galleryNavBlinkRight 1.4s ease-in-out infinite;
  }
}

@keyframes galleryNavBlinkLeft {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-5px); }
}

@keyframes galleryNavBlinkRight {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

.gallery-strip {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.gallery-strip.dragging {
  cursor: grabbing;
}

.gallery-strip-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.gallery-strip-item {
  flex-shrink: 0;
  width: clamp(200px, 32vw, 300px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(28, 20, 16, 0.1);
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Testimonials */
.gallery-reviews-block .testimonials {
  margin-top: 0;
  padding-top: clamp(14px, 2vw, 20px);
  scroll-margin-top: calc(var(--header-h) + 12px);
}

#gallery {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.testimonials .section-title {
  margin-bottom: 0;
}

.testimonial-scroll-wrap {
  position: relative;
}

.testimonial-swipe-label {
  display: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.testimonial-scroll-hint {
  display: none;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 2px 16px rgba(28, 20, 16, 0.06);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(28, 20, 16, 0.1);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.stars span {
  font-size: 16px;
  line-height: 1;
  color: var(--color-gold);
}

.testimonial-card blockquote p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.testimonial-source {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.testimonials-link-wrap {
  text-align: right;
  margin-top: 0.85rem;
}

.testimonials-link {
  font-size: 13px;
  color: var(--color-accent);
  transition: color 0.2s ease;
}

.testimonials-link:hover {
  text-decoration: underline;
}

/* Visit */
.visit-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.visit-phone {
  font-size: 22px;
  margin: 1rem 0;
}

.visit-phone a {
  color: var(--color-accent);
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.visit-phone a:hover {
  opacity: 0.8;
}

.visit-address {
  font-size: 0.95rem;
  color: var(--color-dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.visit-floor {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.hours-block {
  margin-bottom: 1.5rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.hours-grid span:nth-child(odd) {
  color: var(--color-dark);
  font-weight: 400;
}

.hours-grid span:nth-child(even) {
  color: var(--color-muted);
}

.visit-payment {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.visit-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.visit-directions {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  line-height: 44px;
}

.visit-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(48px, 6vw, 72px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(40px, 5vw, 56px);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.footer-logo-u2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--color-accent);
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a,
.footer-social a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: var(--color-white);
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(91, 122, 99, 0.2);
  font-size: 12px;
}

.footer-bar a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bar a:hover {
  color: var(--color-white);
}

/* Scroll reveal */
.reveal,
.reveal-left,
.reveal-right,
.reveal-child {
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal,
  .reveal-child {
    transform: translateY(24px);
  }

  .reveal-left {
    transform: translateX(-24px);
  }

  .reveal-right {
    transform: translateX(24px);
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-child {
    transition: opacity 600ms var(--ease-entry), transform 600ms var(--ease-entry);
  }

  .reveal.visible,
  .reveal-left.visible,
  .reveal-right.visible,
  .reveal-child.visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-child,
  .hero-animate {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-scroll-line {
    animation: none !important;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .private-layout,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature--reverse .feature-visual,
  .feature--reverse .feature-content {
    order: unset;
  }

  .feature-visual {
    flex-direction: column;
    min-height: auto;
    padding: 24px 5vw;
  }

  .feature-visual-main img {
    min-height: 280px;
  }

  .feature-visual-detail {
    width: min(200px, 55vw);
    margin-left: 0;
    margin-right: 0;
    margin-top: -2rem;
    align-self: flex-end;
  }

  .feature--reverse .feature-visual-detail {
    align-self: flex-start;
    margin-right: 0;
  }

  .testimonial-scroll-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(6vw, calc((100vw - min(1140px, 88vw)) / 2));
    padding-right: max(6vw, calc((100vw - min(1140px, 88vw)) / 2));
  }

  .testimonial-swipe-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(91, 122, 99, 0.55);
    margin-bottom: 0.65rem;
  }

  .testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 min(85vw, 340px);
    scroll-snap-align: start;
  }

  .testimonial-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: max(6vw, calc((100vw - min(1140px, 88vw)) / 2));
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-accent);
    background: linear-gradient(to right, transparent, var(--color-bg) 50%);
    padding-right: 0.25rem;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .gallery-reviews-block.section--surface .testimonial-scroll-hint {
    background: linear-gradient(to right, transparent, var(--color-surface) 50%);
  }

  .testimonial-scroll-wrap.scrolled .testimonial-scroll-hint {
    opacity: 0;
    visibility: hidden;
  }

  .testimonials:has(.testimonial-scroll-wrap.scrolled) .testimonial-swipe-label {
    opacity: 0;
    visibility: hidden;
  }

  @media (prefers-reduced-motion: no-preference) {
    .testimonial-scroll-hint {
      animation: testimonialHintBlink 1.8s ease-in-out infinite;
    }
  }

  @keyframes testimonialHintBlink {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) translateX(0); }
    50% { opacity: 0.85; transform: translateY(-50%) translateX(5px); }
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-list--single {
    max-width: none;
  }

  .spa-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }

  .nav-logo {
    justify-self: auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    grid-column: auto;
    justify-self: auto;
  }

  .service-tabs {
    flex-wrap: nowrap;
  }

  .gallery-strip-item {
    width: clamp(180px, 58vw, 240px);
  }

  .hero-block {
    max-width: 100%;
    padding: 1.75rem 1.5rem 2rem;
  }

  .hero-brand {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }

  .visit-map iframe {
    height: 300px;
  }

  .kids-grid {
    grid-template-columns: 1fr;
  }
}
