:root {
  --cream: #f6f0e6;
  --cream-deep: #ebe2d2;
  --ivory: #fbf7f0;
  --gold: #c4a36a;
  --gold-deep: #9a7b4a;
  --gold-soft: #e8d5b0;
  --gold-line: rgba(196, 163, 106, 0.45);
  --ink: #2c241c;
  --ink-muted: #6b5e50;
  --ink-dim: #9a8b7a;
  --white: #fffdf8;
  --shadow: 0 1px 2px rgba(44, 36, 28, 0.04);
  --shadow-hover: 0 10px 28px rgba(44, 36, 28, 0.08);
  --radius: 18px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  min-height: 100%;
  /* Match footer so short pages / overscroll don't flash cream below it */
  background: #2c241c;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.section-lead {
  color: var(--ink-muted);
  max-width: 42ch;
  margin: 0;
  font-size: 1.05rem;
}

.gold-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: 0;
  margin: 18px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s var(--ease) forwards;
}

.reveal[data-delay="1"] { animation-delay: 0.08s; }
.reveal[data-delay="2"] { animation-delay: 0.16s; }
.reveal[data-delay="3"] { animation-delay: 0.24s; }
.reveal[data-delay="4"] { animation-delay: 0.32s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes navLinkIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.page-main {
  padding-top: var(--header-h);
  animation: fadeUp 0.65s var(--ease) both;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid var(--gold-line);
  box-shadow: 0 10px 30px rgba(44, 36, 28, 0.06);
  transition:
    height 420ms var(--ease),
    transform 480ms var(--ease);
}

.header.is-scrolled {
  height: 72px;
}

.header.is-hidden {
  transform: translateY(-110%);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: transparent;
  transition: height 420ms var(--ease);
}

body:has(.header.is-scrolled) .nav {
  height: 72px;
}

.nav-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  pointer-events: auto;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(196, 163, 106, 0.28);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(44, 36, 28, 0.04);
}

.nav-pill {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(44, 36, 28, 0.1);
  pointer-events: none;
  transition: transform 0.5s var(--ease), width 0.5s var(--ease), background 320ms ease;
  z-index: 0;
}

.nav-track a {
  position: relative;
  z-index: 1;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  transition: color 220ms ease;
}

.nav-track a.is-active {
  font-weight: 500;
}

.nav-track a:hover,
.nav-track a.is-active,
.nav-track a:focus-visible {
  color: var(--ink);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-emblem {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.brand-wordmark {
  height: 48px;
  width: auto;
  max-width: min(240px, 46vw);
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

.wordmark span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 4px;
}

.header-cta {
  transition: transform 220ms var(--ease), background 150ms ease, box-shadow 220ms var(--ease);
}

.header-cta:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.btn:focus-visible,
.nav a:focus-visible,
.chip:focus-visible,
.time-slot:focus-visible,
.date-cell:focus-visible,
.date-nav:focus-visible,
.footer a:focus-visible {
  outline: 2px solid rgba(196, 163, 106, 0.7);
  outline-offset: 2px;
}

.btn-gold {
  background: var(--gold);
  color: #2c241c;
  box-shadow: 0 2px 8px rgba(196, 163, 106, 0.28);
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(251, 247, 240, 0.45);
}

.btn-ghost:hover {
  background: rgba(251, 247, 240, 0.1);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 90;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.6px;
  background: var(--ink);
  margin: 5px auto;
  transform-origin: center;
  transition: transform 320ms var(--ease), opacity 220ms ease, background 320ms ease;
}

.nav-open .menu-toggle span {
  background: var(--ink);
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.6px) rotate(-45deg);
}

.page-home .hero {
  min-height: 100svh;
}

.page-home .hero-content {
  padding-top: 108px;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-media-soft {
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  filter: blur(8px);
  -webkit-mask-image: radial-gradient(ellipse 62% 78% at 50% 46%, #000 28%, transparent 72%);
  mask-image: radial-gradient(ellipse 62% 78% at 50% 46%, #000 28%, transparent 72%);
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 62% at 50% 46%, rgba(44, 36, 28, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(44, 36, 28, 0.28) 0%, rgba(44, 36, 28, 0.48) 45%, rgba(44, 36, 28, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 24px 96px;
}

.hero-logo {
  margin: 0;
}

.hero-logo img {
  width: min(268px, 70vw);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 10px 28px rgba(44, 36, 28, 0.3));
}

.hero-english {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  letter-spacing: 0.01em;
  color: var(--gold-soft);
  margin: 10px auto 0;
  max-width: 22ch;
}

.hero-proof {
  margin: 12px auto 0;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  max-width: none;
}

.hero-proof span {
  color: rgba(251, 247, 240, 0.62);
  letter-spacing: 0.04em;
  margin-left: 8px;
}

.hero-tagline {
  margin: 18px 0 8px;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, 0.7);
}

.highlights {
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--gold-line);
  padding: 40px 0 44px;
}

.highlights-head {
  max-width: 36rem;
  margin-bottom: 24px;
  text-align: center;
  margin-inline: auto;
}

.highlights-head .section-title {
  margin-bottom: 0;
}

.highlights-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 12px;
  align-items: start;
  max-width: 880px;
  margin-inline: auto;
  justify-items: center;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  color: var(--ink);
  min-width: 0;
  width: 100%;
  max-width: 128px;
}

.highlight-orb {
  width: min(118px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: transform 200ms var(--ease), filter 200ms var(--ease);
}

.highlight-orb--photo {
  width: min(118px, 100%);
}

.highlight-orb--photo img,
.highlight-orb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.highlight-item:hover .highlight-orb {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 12px rgba(44, 36, 28, 0.12));
}

.highlight-orb-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  background:
    radial-gradient(120% 90% at 30% 20%, #fff9f0 0%, #f3e6d2 55%, #ead7bb 100%);
  border: 1px solid rgba(196, 163, 106, 0.45);
  box-shadow: inset 0 0 0 2px rgba(255, 253, 248, 0.45);
  color: var(--gold-deep);
}

.highlight-orb-inner svg,
.highlight-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.highlight-label {
  display: none;
}

.team {
  background: var(--cream);
  padding-top: 72px;
  padding-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(196, 163, 106, 0.22);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.team-card--lead {
  background:
    linear-gradient(165deg, #fffdf8 0%, #f7efe3 100%);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #ebe2d2;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo.is-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(90% 70% at 50% 30%, rgba(196, 163, 106, 0.22), transparent 60%),
    linear-gradient(160deg, #f0e5d4 0%, #e2d3bc 100%);
  border: 1px dashed rgba(196, 163, 106, 0.45);
  color: var(--gold-deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-copy h3 {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.team-role {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.team-bio {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.svc-hero {
  position: relative;
  min-height: min(92svh, 820px);
  display: grid;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
  background: #2c241c;
}

.svc-hero-media {
  position: absolute;
  inset: 0;
}

.svc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: svcHeroZoom 18s var(--ease) both;
}

.svc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 22, 16, 0.35) 0%, rgba(28, 22, 16, 0.55) 42%, rgba(28, 22, 16, 0.88) 100%),
    radial-gradient(900px 420px at 18% 20%, rgba(196, 163, 106, 0.22), transparent 60%);
}

.svc-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 72px) 0 88px;
}

.svc-hero-brand {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.01em;
}

.svc-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.svc-hero-lead {
  margin: 18px 0 0;
  max-width: 38ch;
  color: rgba(251, 247, 240, 0.78);
  font-size: 1.05rem;
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.svc-hero-meta {
  position: absolute;
  z-index: 1;
  right: max(20px, calc((100% - 1120px) / 2));
  bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, 0.55);
}

@keyframes svcHeroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.04); }
}

.svc-explore {
  padding: 88px 0 40px;
  background:
    linear-gradient(180deg, #efe6d8 0%, var(--cream) 48%, var(--cream) 100%);
}

.svc-explore-head {
  max-width: 42rem;
  margin-bottom: 36px;
}

.svc-explore-orbs {
  max-width: 880px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.svc-hubs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.svc-hub {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  color: var(--ivory);
  isolation: isolate;
  min-height: 220px;
  aspect-ratio: 3 / 4;
}

.svc-hub-media,
.svc-hub-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.svc-hub-media img {
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.svc-hub::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 22, 16, 0.05) 35%, rgba(28, 22, 16, 0.78) 100%);
  transition: background 280ms var(--ease);
}

.svc-hub-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 22px;
}

.svc-hub h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.15;
}

.svc-hub-count {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.svc-hub:hover img {
  transform: scale(1.04);
}

.svc-hub:hover::after {
  background: linear-gradient(180deg, rgba(28, 22, 16, 0.02) 25%, rgba(28, 22, 16, 0.84) 100%);
}

.svc-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.svc-panel .svc-results {
  margin: 0 0 22px;
}

.svc-gallery {
  margin: 0 4px 14px;
}

.svc-gallery > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 14px;
  margin: 0;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--gold-deep);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}

.svc-gallery > summary::-webkit-details-marker {
  display: none;
}

.svc-gallery > summary:hover,
.svc-gallery[open] > summary {
  background: var(--gold);
  color: var(--ink);
}

.svc-gallery-body {
  padding-top: 12px;
}

.svc-gallery--results {
  margin: 0 0 22px;
}

.svc-gallery--results .svc-results {
  margin: 0;
}

.svc-results figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  background: #ebe2d2;
}

.svc-results img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.svc-results figure:hover img {
  transform: scale(1.05);
}

.svc-proof {
  margin: 0 4px 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196, 163, 106, 0.2);
  background: var(--white);
}

.svc-proof img {
  width: 100%;
  height: auto;
  display: block;
}

.svc-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 16px;
}

.svc-item > .svc-proof,
.svc-item > .svc-proof-grid,
.svc-gallery-body > .svc-proof,
.svc-gallery-body > .svc-proof-grid {
  padding: 0 4px 12px;
  margin: 0;
}

.svc-catalog {
  padding: 48px 0 96px;
  background: var(--cream);
}

.svc-catalog-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.svc-rail {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(196, 163, 106, 0.22);
  backdrop-filter: blur(12px);
}

.svc-rail a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.svc-rail a em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-dim);
}

.svc-rail a:hover,
.svc-rail a.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.svc-rail a.is-active em {
  color: var(--gold-deep);
}

.svc-panel {
  scroll-margin-top: calc(var(--header-h) + 28px);
  padding-bottom: 56px;
}

.svc-panel + .svc-panel {
  border-top: 1px solid rgba(196, 163, 106, 0.22);
  padding-top: 56px;
}

.svc-panel-head {
  margin-bottom: 28px;
  max-width: 40rem;
}

.svc-panel-head h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.svc-panel-head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.svc-list {
  display: flex;
  flex-direction: column;
}

.svc-group {
  margin: 28px 0 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.svc-item {
  border-bottom: 1px solid rgba(196, 163, 106, 0.18);
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.svc-item-row,
.svc-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px;
}

.svc-item-row h3,
.svc-item-name {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  color: var(--ink);
}

.svc-item summary {
  cursor: pointer;
  list-style: none;
}

.svc-item summary::-webkit-details-marker {
  display: none;
}

.svc-item-hint {
  flex-shrink: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(196, 163, 106, 0.35);
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.svc-item--rich[open] .svc-item-hint,
.svc-item summary:hover .svc-item-hint {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.svc-item-body {
  padding: 0 4px 28px;
  animation: fadeUp 0.45s var(--ease) both;
}

.svc-item-body > p {
  margin: 0 0 18px;
  color: var(--ink-muted);
  max-width: 62ch;
  font-size: 0.98rem;
}

.svc-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.svc-facts > div,
.svc-subs > div,
.svc-callout {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(196, 163, 106, 0.16);
  border-radius: 16px;
  padding: 18px 18px 16px;
}

.svc-facts-span {
  grid-column: 1 / -1;
}

.svc-facts h4,
.svc-subs h4,
.svc-callout h4 {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.svc-facts p,
.svc-subs p,
.svc-callout p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.svc-subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.svc-subs h4 {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  font-family: Outfit, sans-serif;
  color: var(--ink);
}

.svc-callout {
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(196, 163, 106, 0.14), rgba(255, 253, 248, 0.7));
}

.svc-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}

.svc-book:hover,
.svc-book--solid {
  background: var(--gold);
  color: var(--ink);
}

.svc-book--solid {
  margin-top: 4px;
}

.svc-book-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.svc-book-row .svc-book--solid {
  margin-top: 0;
}

.svc-cta {
  border-top: 1px solid rgba(196, 163, 106, 0.18);
}

.services {
  background: var(--cream);
}

.service-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 8px;
}

.service-jump a {
  border: 1px solid rgba(196, 163, 106, 0.35);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.86rem;
  color: var(--ink-muted);
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}

.service-jump a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.service-category {
  margin-top: 52px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.service-category h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin: 0 0 6px;
}

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.treatment {
  background: var(--white);
  border: 1px solid rgba(196, 163, 106, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.treatment-head,
.treatment summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}

.treatment summary {
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 500;
}

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

.treatment summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-family: Outfit, sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}

.treatment[open] summary::after {
  content: "–";
}

.treatment-head h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 500;
  margin: 0;
}

.treatment-body {
  padding: 0 20px 20px;
  color: var(--ink-muted);
}

.treatment-body p {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.treatment-body h5,
.treatment-sub h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 16px 0 6px;
}

.treatment-sub {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(196, 163, 106, 0.16);
}

.treatment-sub h5 {
  margin-top: 10px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  font-family: Outfit, sans-serif;
  color: var(--ink);
}

.treatment-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.treatment-body .treatment-book {
  margin-top: 8px;
}

.treatment-book:hover {
  background: var(--gold);
  color: var(--ink);
}

.treatment-list .group-label {
  margin: 18px 0 6px;
}

.group-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 42px 0 16px;
}

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

.card {
  background: var(--white);
  border: 1px solid rgba(196, 163, 106, 0.18);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196, 163, 106, 0.12);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.cards-featured {
  grid-template-columns: 1fr;
}

.cards-featured .card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: start;
  max-width: 640px;
}

.cards-featured .card-icon {
  grid-row: 1 / 3;
  margin-bottom: 0;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
}

.atmosphere {
  background: var(--ivory);
  padding-bottom: 24px;
}

.page-home .atmosphere {
  padding-bottom: 16px;
}

.atm {
  margin-top: 36px;
}

.atm-stage {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(100%, 920px);
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  margin-inline: -2px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  cursor: grab;
}

.atm-stage.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.atm-stage::-webkit-scrollbar {
  height: 6px;
}

.atm-stage::-webkit-scrollbar-thumb {
  background: rgba(196, 163, 106, 0.55);
  border-radius: 999px;
}

.atm-slide {
  position: relative;
  margin: 0;
  height: min(68vh, 620px);
  border-radius: 24px;
  overflow: hidden;
  background: #2c241c;
  scroll-snap-align: center;
  box-shadow: 0 18px 48px rgba(44, 36, 28, 0.1);
}

.atm-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.atm-rail {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.atm-rail button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(196, 163, 106, 0.28);
  cursor: pointer;
  transition: width 320ms var(--ease), background 220ms ease;
}

.atm-rail button.is-active {
  width: 44px;
  background: var(--gold-deep);
}

.atm-rail button:focus-visible {
  outline: 2px solid rgba(196, 163, 106, 0.7);
  outline-offset: 3px;
}

.cta-band {
  padding: 64px 0;
  background:
    radial-gradient(800px 240px at 80% 0%, rgba(196, 163, 106, 0.18), transparent 60%),
    var(--cream);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band .section-title {
  margin-bottom: 0;
}

.booking {
  background:
    radial-gradient(1200px 400px at 80% 0%, rgba(196, 163, 106, 0.14), transparent 60%),
    var(--cream);
}

.booking-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 36px;
  background: var(--white);
  border: 1px solid rgba(196, 163, 106, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.booking-copy {
  padding: 40px 36px;
  background:
    linear-gradient(180deg, rgba(44, 36, 28, 0.18) 0%, rgba(44, 36, 28, 0.58) 100%),
    url("../images/booking.jpg") 55% 20%/cover no-repeat;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
}

.booking-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 10px;
}

.booking-copy p {
  margin: 0 0 18px;
  color: rgba(251, 247, 240, 0.84);
}

.booking-form {
  padding: 32px 32px 28px;
  min-width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  min-width: 0;
}

.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}

.field label .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.75;
}

.field input,
.field select,
.field textarea {
  appearance: none;
  border: 1px solid rgba(196, 163, 106, 0.35);
  background: var(--ivory);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.date-picker {
  border: 1px solid rgba(196, 163, 106, 0.35);
  background: var(--ivory);
  border-radius: 16px;
  padding: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.date-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  min-width: 0;
}

.date-picker-month {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 4.2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-align: center;
  min-width: 0;
  flex: 1;
}

.date-nav {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(196, 163, 106, 0.28);
  background: var(--cream);
  border-radius: 10px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.date-nav:hover:not(:disabled) {
  background: rgba(196, 163, 106, 0.18);
  border-color: rgba(196, 163, 106, 0.5);
}

.date-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.date-picker-weekdays,
.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
}

.date-picker-weekdays {
  margin-bottom: 8px;
}

.date-picker-weekdays span {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
  padding: 2px 0;
  min-width: 0;
}

.date-picker-weekdays .is-muted {
  opacity: 0.45;
}

.date-cell {
  aspect-ratio: 1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 10px;
  color: var(--ink);
  font-size: clamp(0.82rem, 3.4vw, 0.95rem);
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.date-cell.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.date-cell:hover:not(:disabled) {
  background: rgba(196, 163, 106, 0.14);
  border-color: rgba(196, 163, 106, 0.28);
}

.date-cell.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.date-cell.is-weekend,
.date-cell.is-disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.date-picker-hint {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--ink-dim);
  text-align: center;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  margin-top: 2px;
  font-size: 0.95rem;
  color: var(--ink);
}

.service-meta-offer {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(196, 163, 106, 0.22);
  color: var(--gold-deep, #9a7b4a);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-meta-price {
  font-weight: 600;
  color: var(--ink);
}

.service-meta-sep {
  color: var(--ink-dim);
}

.service-meta-duration {
  color: var(--ink-dim);
}

.times-hint {
  margin: 0 0 8px;
  font-size: 0.84rem;
  color: var(--ink-dim);
}

.times {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.time-slot {
  border: 1px solid rgba(196, 163, 106, 0.28);
  background: var(--ivory);
  border-radius: 999px;
  padding: 9px 4px;
  cursor: pointer;
  font-size: 0.88rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.time-slot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.time-slot:disabled,
.time-slot.is-taken {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--ink-dim);
  text-align: center;
}

.why {
  background: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.why-item {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(196, 163, 106, 0.16);
}

.why-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: var(--gold-deep);
}

.why-item h3 {
  margin: 8px 0 8px;
  font-size: 1.15rem;
}

.why-item p {
  margin: 0;
  color: var(--ink-muted);
}

.location {
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(196, 163, 106, 0.18);
}

.info-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 8px;
}

.google-proof {
  color: var(--gold-deep) !important;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0 0 16px !important;
}

.info-card p,
.info-card li {
  color: var(--ink-muted);
}

.info-card ul {
  padding-left: 18px;
}

.map-wrap {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196, 163, 106, 0.18);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.85) sepia(0.12);
}

.contact {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

.contact-links a span {
  color: var(--gold-deep);
}

.footer {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: auto;
  background:
    radial-gradient(720px 280px at 6% 0%, rgba(196, 163, 106, 0.14), transparent 58%),
    #2c241c;
  color: rgba(251, 247, 240, 0.78);
  padding: 72px 0 36px;
  font-size: 0.92rem;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(196, 163, 106, 0.22);
}

.footer-tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1.2;
  color: var(--gold-soft);
  margin: 0;
  max-width: 22ch;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.05fr 0.85fr;
  gap: 40px 32px;
}

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

.footer-blurb {
  margin: 0 0 20px;
  max-width: 32ch;
  color: rgba(251, 247, 240, 0.62);
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-social:hover {
  color: var(--ivory);
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col address {
  font-style: normal;
  margin: 0;
  line-height: 1.7;
}

.footer-col address a {
  color: rgba(251, 247, 240, 0.78);
  transition: color 180ms ease;
}

.footer-col address a:hover,
.footer-menu a:hover,
.footer-bottom a:hover {
  color: var(--gold-soft);
}

.footer-phone {
  display: block;
  margin: 14px 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.footer-phone + .footer-phone {
  margin-top: 4px;
  margin-bottom: 10px;
}

.footer-phone:hover {
  color: var(--ivory);
}

.footer-proof {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 240, 0.5);
}

.footer-hours {
  margin: 0;
}

.footer-hours div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(251, 247, 240, 0.08);
}

.footer-hours div:first-child {
  padding-top: 0;
}

.footer-hours dt {
  font-weight: 400;
  color: rgba(251, 247, 240, 0.58);
}

.footer-hours dd {
  margin: 0;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.footer-menu a {
  display: block;
  width: fit-content;
  padding: 5px 0;
  color: rgba(251, 247, 240, 0.72);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-menu a:hover {
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(196, 163, 106, 0.18);
  font-size: 0.82rem;
  color: rgba(251, 247, 240, 0.46);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.footer-bottom a {
  color: rgba(251, 247, 240, 0.62);
  transition: color 180ms ease;
}

.footer-credit {
  letter-spacing: 0.02em;
}

.footer .brand-wordmark {
  height: 52px;
}

.footer .brand-emblem {
  height: 48px;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
}

.mobile-cta.is-hidden {
  display: none !important;
}

.mobile-cta .btn {
  width: 100%;
  box-shadow: 0 8px 24px rgba(44, 36, 28, 0.18);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--ivory);
  padding: 14px 18px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 220ms var(--ease);
  z-index: 60;
  max-width: min(420px, calc(100% - 32px));
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.page-booking .mobile-cta,
.page-contact .mobile-cta {
  display: none !important;
}

.nav-open {
  overflow: hidden;
}

.nav-open .nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-open .mobile-cta {
  display: none !important;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    position: fixed;
    inset: 0;
    height: auto !important;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 16px) 24px 32px;
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 320ms var(--ease), visibility 320ms var(--ease);
  }

  .nav-track {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 12px 0;
    gap: 2px;
  }

  .nav-pill {
    display: none;
  }

  .nav-track a {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    line-height: 1.2;
    padding: 10px 16px;
    color: var(--ink);
    opacity: 0;
    transform: translateY(14px);
  }

  .nav-open .nav-track a {
    animation: navLinkIn 0.45s var(--ease) forwards;
  }

  .nav-open .nav-track a:nth-child(2) { animation-delay: 0.04s; }
  .nav-open .nav-track a:nth-child(3) { animation-delay: 0.08s; }
  .nav-open .nav-track a:nth-child(4) { animation-delay: 0.12s; }
  .nav-open .nav-track a:nth-child(5) { animation-delay: 0.16s; }
  .nav-open .nav-track a:nth-child(6) { animation-delay: 0.2s; }
  .nav-open .nav-track a:nth-child(7) { animation-delay: 0.24s; }

  .nav-track a.is-active {
    color: var(--gold-deep);
  }

  .menu-toggle {
    display: block;
  }

  .header .header-cta {
    display: none;
  }

  .highlights {
    padding: 28px 0 32px;
  }

  .highlights-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
    max-width: 340px;
    overflow: visible;
    padding-bottom: 0;
  }

  .highlight-item {
    max-width: 108px;
    flex: 0 0 calc((100% - 40px) / 3);
  }

  .highlight-orb,
  .highlight-orb--photo {
    width: 96px;
  }

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

  .cards,
  .why-grid,
  .location-grid,
  .contact-grid,
  .booking-shell {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .booking-form {
    padding: 22px 16px 20px;
  }

  .date-picker {
    padding: 10px 8px;
  }

  .date-nav {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

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

  .time-slot {
    font-size: 0.82rem;
    padding: 9px 2px;
  }

  .mobile-cta {
    display: block;
  }

  .footer {
    padding: 56px 0 96px;
  }

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

  .booking-copy {
    min-height: 240px;
    padding: 28px;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .atm-stage {
    grid-auto-columns: 85%;
    gap: 12px;
  }

  .atm-slide {
    height: min(52vh, 420px);
    border-radius: 18px;
  }

  .svc-hero {
    min-height: 78svh;
  }

  .svc-hero-content {
    padding: calc(var(--header-h) + 48px) 0 72px;
  }

  .svc-hero-meta {
    display: none;
  }

  .svc-hubs {
    grid-template-columns: 1fr 1fr;
  }

  .svc-hub {
    min-height: 200px;
    aspect-ratio: 4 / 5;
  }

  .svc-results {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-catalog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-rail {
    top: var(--header-h);
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    padding: 8px;
    margin: 0 -4px;
    border-radius: 14px;
    z-index: 40;
  }

  .svc-rail a {
    white-space: nowrap;
    padding: 10px 14px;
  }

  .svc-facts,
  .svc-subs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 32px;
    margin-bottom: 36px;
  }

  .footer-cta .btn {
    width: 100%;
  }

  .footer-tagline {
    max-width: none;
  }

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

  .footer-bottom {
    margin-top: 36px;
  }

  .hero-logo img {
    width: min(220px, 78vw);
  }

  .brand-emblem {
    height: 36px;
  }

  .brand-wordmark {
    height: 38px;
  }

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

  .treatment-head,
  .treatment summary {
    padding: 14px 16px;
    gap: 10px;
  }

  .treatment summary {
    font-size: 1.12rem;
  }

  .treatment-head h4 {
    font-size: 1.12rem;
  }

  .svc-explore {
    padding: 56px 0 24px;
  }

  .svc-hubs {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .svc-hub {
    min-height: 180px;
    aspect-ratio: 3 / 4;
  }

  .svc-results {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .svc-item-row,
  .svc-item summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }

  .svc-book {
    align-self: flex-start;
  }

  .svc-item-hint {
    align-self: flex-start;
  }

  .svc-catalog {
    padding: 28px 0 72px;
  }
}
