@font-face {
  font-family: "Cormorant Infant";
  src: url("./fonts/CormorantInfant-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Infant";
  src: url("./fonts/CormorantInfant-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("./fonts/Mulish-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "Tangerine";
  src: url("./fonts/Tangerine-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tangerine";
  src: url("./fonts/Tangerine-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111210;
  --cream: #fff9f4;
  --beige: #efe4d4;
  --olive: #3f4b31;
  --olive-deep: #29321f;
  --gold: #caab6c;
  --gold-bright: #e5c378;
  --gold-deep: #9e7d56;
  --gold-line: linear-gradient(90deg, #e5c378 0%, #987449 32%, #f8df8a 71%, #9e7d56 100%);
  --terracotta: #b3442f;
  --radius: clamp(24px, 3vw, 44px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: "Mulish", sans-serif;
}

img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 76px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .1) 55%, transparent 100%);
}
.site-header::after {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 76px);
  right: clamp(24px, 5vw, 76px);
  bottom: 0;
  height: 1px;
  background: var(--gold-line);
  opacity: 0.72;
  pointer-events: none;
}

.brand { justify-self: start; grid-column: 1; }
.brand img {
  width: 190px;
  max-height: 52px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0, 0, 0, .4));
}
.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 24px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a,
.header-book {
  position: relative;
  display: inline-block;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5), 0 0 1px rgba(0, 0, 0, .35);
  transform-origin: center;
  transition: transform .28s ease, color .2s ease, text-shadow .2s ease;
}
.header-book {
  overflow: hidden;
}
.header-book::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 36%, rgba(255, 255, 255, .78) 50%, transparent 64%);
  transform: translateX(-120%);
  pointer-events: none;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.header-book:hover,
.header-book:focus-visible {
  color: #f6e4b4;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .9),
    0 2px 12px rgba(0, 0, 0, .55),
    0 0 14px rgba(229, 195, 120, .35);
  transform: scale(1.07);
}
.header-book:hover::after,
.header-book:focus-visible::after {
  animation: nav-shine-sweep 1.15s ease-in-out;
}
@keyframes nav-shine-sweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}
.header-book {
  position: relative;
  grid-column: 3;
  justify-self: end;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header-book::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;
  background: var(--gold-line);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.nav-book { border-radius: 999px; padding: 13px 22px; }
.menu-button {
  display: none;
  grid-column: 3;
  justify-self: end;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}
.scroll-nav {
  --gx: 50%;
  --gy: 8%;
  position: fixed;
  z-index: 24;
  top: 16px;
  right: max(18px, env(safe-area-inset-right, 0px));
  left: auto;
  bottom: auto;
  width: max-content;
  min-width: 0;
  max-width: min(240px, calc(100vw - 36px));
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.045);
  border: 0.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.72),
    inset 0 -0.5px 0 rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .32s ease, opacity .32s ease, visibility .32s ease, color .2s ease, border-radius .28s ease;
}
.scroll-nav-material {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  backdrop-filter: blur(5px) saturate(1.7) brightness(1.16) contrast(1.18);
  -webkit-backdrop-filter: blur(5px) saturate(1.7) brightness(1.16) contrast(1.18);
  backdrop-filter: url("#ester-liquid-glass") blur(5px) saturate(1.7) brightness(1.16) contrast(1.18);
  -webkit-backdrop-filter: url("#ester-liquid-glass") blur(5px) saturate(1.7) brightness(1.16) contrast(1.18);
  pointer-events: none;
  z-index: 0;
}
.scroll-nav::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    90px 34px at var(--gx) var(--gy),
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    transparent 70%
  );
  pointer-events: none;
  mix-blend-mode: plus-lighter;
  opacity: .75;
}
.scroll-nav::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 32%, transparent 70%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}
.scroll-nav a,
.scroll-nav-toggle {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 0.5px 8px rgba(0, 0, 0, 0.28);
  filter: none;
}
.scroll-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 44px;
  padding: 0 10px;
  white-space: nowrap;
  text-align: right;
  background: transparent;
  transition: color .2s ease;
}
.scroll-nav a:hover,
.scroll-nav a:focus-visible {
  color: #fff;
}
.scroll-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.scroll-nav-menu {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  filter: none;
  opacity: 0;
  pointer-events: none;
  transition: max-height .28s ease, opacity .22s ease, padding .28s ease;
}
.scroll-nav.is-open .scroll-nav-menu {
  max-height: 360px;
  padding: 0 0 6px;
  opacity: 1;
  pointer-events: auto;
}
.scroll-nav.is-visible {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.scroll-nav.is-open {
  min-width: 172px;
  padding: 6px 6px 4px;
  border-radius: 12px;
  background: transparent;
}
.scroll-nav.is-open,
.scroll-nav.is-open.on-light-surface {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.16),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.72);
}
.scroll-nav.is-open .scroll-nav-material {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
}
.scroll-nav.is-open .scroll-nav-toggle {
  width: 100%;
  min-height: 44px;
  font-size: 13px;
}
.scroll-nav.is-open,
.scroll-nav.is-open a,
.scroll-nav.is-open .scroll-nav-toggle,
.scroll-nav.is-open.on-light-surface a,
.scroll-nav.is-open.on-light-surface .scroll-nav-toggle {
  color: rgba(17, 18, 16, 0.92);
  text-shadow: none;
}
.scroll-nav.is-open a:hover,
.scroll-nav.is-open a:focus-visible,
.scroll-nav.is-open.on-light-surface a:hover,
.scroll-nav.is-open.on-light-surface a:focus-visible {
  color: #1c1c1a;
}
.scroll-nav.on-light-surface {
  color: rgba(17, 18, 16, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 12px 32px rgba(17, 18, 16, 0.1),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.85),
    inset 0 -0.5px 0 rgba(17, 18, 16, 0.04);
}
.scroll-nav.on-light-surface a,
.scroll-nav.on-light-surface .scroll-nav-toggle {
  color: rgba(17, 18, 16, 0.9);
  text-shadow: 0 0.5px 6px rgba(255, 255, 255, 0.35);
  filter: none;
}
.scroll-nav.on-light-surface a:hover,
.scroll-nav.on-light-surface a:focus-visible {
  color: #1c1c1a;
}

.mobile-nav {
  --gx: 50%;
  --gy: 8%;
  position: absolute;
  z-index: 25;
  top: 76px;
  right: max(18px, env(safe-area-inset-right, 0px));
  left: auto;
  width: max-content;
  min-width: 168px;
  max-width: min(260px, calc(100vw - 36px));
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.045);
  border: 0.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.72),
    inset 0 -0.5px 0 rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    90px 34px at var(--gx) var(--gy),
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    transparent 70%
  );
  pointer-events: none;
  mix-blend-mode: plus-lighter;
  opacity: .75;
}
.mobile-nav::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 32%, transparent 70%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}

@media (max-width: 980px) {
  .site-nav,
  .header-book { display: none; }
  .menu-button { display: inline-flex; }
}
@media (min-width: 981px) {
  .mobile-nav { display: none; }
}
.mobile-nav a,
.mobile-nav-book {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 0 10px;
  border-radius: 0;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 0.5px 8px rgba(0, 0, 0, 0.28);
  background: transparent;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  background: #080908;
  color: var(--gold-bright);
}
.hero-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .2) 38%, rgba(0, 0, 0, .62) 100%);
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 46%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  container-type: inline-size;
  container-name: hero-copy;
  width: min(92vw, 54rem);
  max-width: calc(100% - 2rem);
  padding: 0 clamp(16px, 4vw, 40px);
  margin: 0;
  overflow: visible;
}
.hero-gold-shine {
  position: relative;
  z-index: 1;
  color: #fff;
  background-image: linear-gradient(
    108deg,
    #ffffff 0%,
    #ffffff 34%,
    #f0e0c4 42%,
    #e5c378 48%,
    #fff6e8 50%,
    #e5c378 52%,
    #f0e0c4 58%,
    #ffffff 66%,
    #ffffff 100%
  );
  background-size: 240% 100%;
  background-position: 125% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .42));
  animation: hero-gold-shimmer 6s ease-in-out infinite;
}
.hero-categories {
  --cat-track: 0.64em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 clamp(8px, 1.4vw, 14px);
  padding: 0.62rem calc(clamp(0.9rem, 2.4vw, 1.8rem) - var(--cat-track)) 0.72rem clamp(0.9rem, 2.4vw, 1.8rem);
  font-family: "Mulish", sans-serif;
  font-size: clamp(13.5px, 1.4vw, 16.5px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--cat-track);
  text-transform: uppercase;
}
.hero-categories a {
  display: inline-block;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 600;
  transform-origin: center;
  transition: transform .55s ease, color .55s ease, -webkit-text-fill-color .55s ease, text-shadow .55s ease;
}
.hero-categories a:hover,
.hero-categories a:focus-visible {
  color: #f3e0b0;
  -webkit-text-fill-color: #f3e0b0;
  font-weight: 600;
  transform: scale(1.035);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}
.hero-cat-dot {
  display: inline-block;
  margin: 0 0.15em;
  pointer-events: none;
}
.hero-copy h1.hero-gold-shine,
.hero-tagline-ink.hero-gold-shine {
  background-image: linear-gradient(
    108deg,
    #ffffff 0%,
    #ffffff 44%,
    #f6efe3 47.5%,
    #ead7ae 50%,
    #f6efe3 52.5%,
    #ffffff 56%,
    #ffffff 100%
  );
  background-size: 280% 100%;
  animation-duration: 12s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.hero-copy h1.hero-gold-shine {
  animation-name: hero-gold-headline;
  animation-delay: 0s;
  overflow: visible;
}
.hero-tagline-ink.hero-gold-shine {
  animation-name: hero-gold-tagline;
  animation-delay: 0s;
}
.hero-tagline {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: block;
  width: fit-content;
  max-width: min(420px, 100%);
  margin: clamp(16px, 2.5vw, 22px) auto 0;
  font-size: clamp(19px, 2.25vw, 26px);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: default;
  isolation: isolate;
}
.hero-tagline-ink,
.hero-tagline-glow {
  display: inline-block;
}
.hero-tagline-ink.hero-gold-shine {
  z-index: 0;
}
.hero-tagline-glow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #e5c378;
  background-image: linear-gradient(108deg, #fffaf0 0%, #e5c378 42%, #fff6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  opacity: 0;
  -webkit-mask-image: radial-gradient(circle 52px at var(--mx) var(--my), #000 0%, transparent 72%);
  mask-image: radial-gradient(circle 52px at var(--mx) var(--my), #000 0%, transparent 72%);
}
.hero-tagline:hover .hero-tagline-glow {
  opacity: 1;
}
@keyframes hero-gold-shimmer {
  0%, 100% {
    background-position: 125% center;
  }
  50% {
    background-position: -25% center;
  }
}
@keyframes hero-gold-headline {
  0% {
    background-position: 0% center;
  }
  39% {
    background-position: 100% center;
  }
  39.01%, 100% {
    background-position: 0% center;
  }
}
@keyframes hero-gold-tagline {
  0%, 50% {
    background-position: 0% center;
  }
  89% {
    background-position: 100% center;
  }
  89.01%, 100% {
    background-position: 0% center;
  }
}
.hero-categories::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.85rem;
  padding: 1px;
  background: var(--gold-line);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.eyebrow { margin: 0 0 20px; text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 700; }
.ink { color: #68705d; }
h1, h2, h3 { font-family: "Cormorant Infant", serif; font-weight: 500; line-height: .94; margin: 0; }
h1 { font-size: clamp(58px, 7.4vw, 118px); }
.hero-copy h1 {
  font-size: clamp(2.75rem, 10.9cqi, 7.4rem);
  line-height: 1.12;
  padding: 0.04em 0.08em 0.2em;
  overflow: visible;
}
.hero-headline-line {
  display: inline-block;
  white-space: nowrap;
}
h2 { font-size: clamp(48px, 5vw, 82px); }
h3 { font-size: 32px; line-height: 1; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 27px; border-radius: 999px; font-weight: 750; font-size: 13px; }
.button-gold { color: var(--ink); background: var(--gold); box-shadow: 0 9px 24px rgba(0,0,0,.22); }

.section-light { background: var(--cream); }
.section-curve { position: relative; }
.section-wave { position: absolute; left: 0; width: 100%; height: 1px; top: 0; pointer-events: none; background: var(--gold-line); overflow: hidden; }
.section-wave path { display: none; }
.wave-hero { top: 0; left: 0; width: 100%; height: 1px; color: transparent; }
.intro { z-index: 2; padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 110px) 96px; }
.intro-inner {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) 1fr;
  grid-template-areas:
    "image lead"
    "image bio";
  gap: clamp(16px, 2.5vw, 28px) clamp(18px, 2.5vw, 40px);
  align-items: stretch;
  max-width: 1500px;
  margin-inline: auto;
}
.intro-image {
  grid-area: image;
  margin: 0;
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 0;
}
.intro-image img {
  display: block;
  width: auto;
  max-width: min(100%, 440px);
  height: 100%;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: top right;
}
.intro-lead { grid-area: lead; max-width: 720px; align-self: start; overflow: visible; }
.intro-bio { grid-area: bio; max-width: 720px; align-self: start; display: flex; flex-direction: column; }
.intro-image,
.intro-lead .eyebrow,
.intro-lead h2,
.intro-bio > p:not(.intro-name) {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(7px);
  transition:
    opacity .85s ease,
    transform .85s ease,
    filter .85s ease;
}
.intro.is-inview .intro-image {
  opacity: 1;
  transform: none;
  filter: none;
}
.intro.is-inview .intro-lead .eyebrow,
.intro.is-inview .intro-lead h2,
.intro.is-inview .intro-bio > p:not(.intro-name) {
  opacity: var(--exit-opacity, 1);
  transform: none;
  filter: blur(var(--exit-blur, 0px));
}
.intro.is-inview .intro-image { transition-delay: 0.05s; }
.intro.is-inview .intro-lead .eyebrow { transition-delay: 0.12s; }
.intro.is-inview .intro-lead h2 { transition-delay: 0.32s; }
.intro.is-inview .intro-bio > p:not(.intro-name):nth-of-type(1) { transition-delay: 0.52s; }
.intro.is-inview .intro-bio > p:not(.intro-name):nth-of-type(2) { transition-delay: 0.72s; }
.intro:not(.is-inview) .intro-image,
.intro:not(.is-inview) .intro-lead .eyebrow,
.intro:not(.is-inview) .intro-lead h2,
.intro:not(.is-inview) .intro-bio > p:not(.intro-name) {
  transition-delay: 0s;
  transition-duration: .4s;
}
.intro-lead .eyebrow {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.intro-lead .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    #e5c378 0%,
    #987449 28%,
    #f8df8a 58%,
    rgba(158, 125, 86, .35) 78%,
    transparent 100%
  );
  pointer-events: none;
  transform: scaleX(var(--gold-line-scale, 0.18));
  transform-origin: left center;
  opacity: var(--gold-line-opacity, 0);
}

@media (min-width: 761px) {
  .intro-inner {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(16px, 2vw, 32px);
  }
  .intro-image img {
    max-width: min(36vw, 420px);
  }
}
.intro-bio > p.intro-name {
  --mx: 50%;
  --my: 50%;
  position: relative;
  align-self: flex-end;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 32px 0 0;
  font-family: "Tangerine", cursive;
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.intro-name-ink,
.intro-name-glow {
  display: inline-block;
  white-space: nowrap;
}
.intro-name-ink {
  color: var(--ink);
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  background-image:
    linear-gradient(
      108deg,
      #111210 0%,
      #111210 36%,
      #caab6c 46%,
      #fff6e8 50%,
      #e5c378 54%,
      #111210 64%,
      #111210 100%
    ),
    linear-gradient(#111210, #111210);
  background-size: 260% 100%, 100% 100%;
  background-position: 130% center, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: clip-path 1.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.intro.is-inview .intro-name-ink {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.82s;
  animation: intro-signature-shimmer 1.35s ease-in-out 1.72s 1 both;
}
.intro:not(.is-inview) .intro-name-ink {
  clip-path: inset(0 100% 0 0);
  transition-delay: 0s;
  transition-duration: .35s;
  animation: none;
}
.intro-name-glow {
  position: absolute;
  left: 0;
  top: 0;
  color: #e5c378;
  background-image: linear-gradient(108deg, #fffaf0 0%, #e5c378 42%, #fff6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  opacity: 0;
  -webkit-mask-image: radial-gradient(circle 48px at var(--mx) var(--my), #000 0%, transparent 72%);
  mask-image: radial-gradient(circle 48px at var(--mx) var(--my), #000 0%, transparent 72%);
}
.intro-name.is-signed {
  cursor: default;
}
.intro-name.is-signed .intro-name-ink {
  animation: none;
  overflow: visible;
}
.intro-name.is-signed:hover .intro-name-glow {
  opacity: 1;
}
@keyframes intro-signature-shimmer {
  0% { background-position: 130% center, 0 0; }
  100% { background-position: -30% center, 0 0; }
}
.intro-bio > p:not(.intro-name), .story-copy > p:not(.eyebrow) { color: #50534e; line-height: 1.8; font-size: 16px; }
.intro-bio > p:not(.intro-name) { font-weight: 700; }
.intro-bio > p:not(.intro-name) em { font-weight: 700; }
.intro-bio em { font-style: italic; }
.intro-bio > p + p { margin-top: 20px; }

.video-band {
  position: relative;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.video-band:has(.second-video) {
  padding-bottom: 0;
}
.video-signature { display: none; }
.video-band:not(:has(.second-video)) .video-signature {
  bottom: clamp(28px, 4vw, 56px);
}
.video-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--ink);
}
.video-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.6), transparent 50%, rgba(0,0,0,.4)); pointer-events: none; }
.video-shell video { width: 100%; aspect-ratio: 16 / 9; max-height: none; min-height: min(56vh, 820px); object-fit: cover; }
.video-kicker {
  align-self: stretch;
  width: 100%;
  margin: 0 0 clamp(22px, 3vw, 36px);
  padding-inline: clamp(24px, 5vw, 76px);
  color: #fff;
}
.video-signature {
  --mx: 50%;
  --my: 50%;
  position: absolute;
  z-index: 2;
  right: clamp(24px, 7vw, 110px);
  bottom: clamp(82px, 10vw, 148px);
  display: block;
  width: fit-content;
  max-width: calc(100% - clamp(48px, 10vw, 152px));
  margin: 0;
  font-family: "Tangerine", cursive;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #efe8dc;
  isolation: isolate;
  cursor: default;
  opacity: var(--exit-opacity, 1);
  filter: blur(var(--exit-blur, 0px));
}
.video-signature-ink,
.video-signature-glow {
  display: inline-block;
  white-space: nowrap;
  font-weight: 400;
  font-synthesis: none;
}
.video-signature-ink {
  color: #efe8dc;
}
.video-signature-glow {
  position: absolute;
  left: 0;
  top: 0;
  color: #e5c378;
  background-image: linear-gradient(108deg, #fffaf0 0%, #e5c378 42%, #fff6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  opacity: 0;
  -webkit-mask-image: radial-gradient(circle 48px at var(--mx) var(--my), #000 0%, transparent 72%);
  mask-image: radial-gradient(circle 48px at var(--mx) var(--my), #000 0%, transparent 72%);
}
.video-signature:hover .video-signature-glow {
  opacity: 1;
}

.services {
  z-index: 2;
  margin-top: 0;
  padding: clamp(72px, 8vw, 124px) 0 140px;
  color: var(--cream);
  background: var(--olive);
}
.wave-services-top { top: 0; height: 1px; color: transparent; }
.wave-services-bottom { top: auto; bottom: 0; height: 1px; color: transparent; }
.section-heading { max-width: 620px; margin: 0 0 42px; }
.services-heading {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 42px;
  padding-inline: clamp(24px, 7vw, 110px);
  box-sizing: border-box;
}
.services-heading h2 { max-width: 820px; margin: 0; }
.light-heading p:last-child { color: rgba(255,255,255,.7); line-height: 1.7; max-width: 460px; }
.service-groups {
  max-width: 1500px;
  margin: 0 auto;
  padding: 8px clamp(24px, 4vw, 50px) 34px;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}
.service-group-title {
  margin: 0 0 18px;
  scroll-margin-top: 28px;
  font-family: "Mulish", sans-serif;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.service-rail-wrap {
  position: relative;
  overflow: visible;
}
.service-rail {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 18px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  user-select: none;
}
.service-rail::-webkit-scrollbar { display: none; }
.service-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.reviews-nav,
.rail-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: 0 6px 18px rgba(17, 18, 16, .12);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.reviews-nav-prev { left: -8px; }
.reviews-nav-next { right: -8px; }
.service-rail-wrap .rail-nav,
.reviews-rail-wrap .reviews-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.service-rail-wrap .rail-nav.is-active,
.reviews-rail-wrap .reviews-nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.service-rail-wrap .rail-nav-prev { left: -21px; }
.service-rail-wrap .rail-nav-next { right: -21px; }
.service-card {
  --photo-h: 218px;
  --card-radius: 22px;
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  max-width: none;
  height: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  scroll-snap-align: start;
  box-shadow: none;
  transition: transform .25s ease;
}
.service-card:hover,
.service-card:focus-within,
.service-card[open] { transform: translateY(-6px); }
.service-card.can-pop:not(.is-popped) {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition: none;
}
.service-card.can-pop.is-popped {
  opacity: 1;
  animation: service-card-pop 0.72s cubic-bezier(0.16, 0.84, 0.32, 1) backwards;
  animation-delay: var(--pop-delay, 0ms);
}
@keyframes service-card-pop {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.service-card summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  cursor: pointer;
  list-style: none;
}
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary img {
  position: relative;
  z-index: 1;
  height: var(--photo-h);
  border-radius: var(--card-radius);
  object-fit: cover;
  object-position: center 38%;
}
.service-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 108px;
  box-sizing: border-box;
  margin-top: 0;
  padding: 14px 14px 12px;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: var(--gold);
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  background: transparent;
  color: var(--cream);
  transition: margin-top .35s cubic-bezier(.22, 1, .36, 1), padding-top .35s cubic-bezier(.22, 1, .36, 1), background .35s ease, color .28s ease;
}
.service-card:hover .service-card-copy,
.service-card:focus-within .service-card-copy,
.service-card[open] .service-card-copy {
  margin-top: -54px;
  padding-top: 34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0px, #fff 36px, #fff 100%);
  color: var(--ink);
}
.service-card-desc {
  display: block;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  font-family: "Mulish", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: #3d403b;
  transition: max-height .35s cubic-bezier(.22, 1, .36, 1), opacity .28s ease, margin-top .35s ease;
}
.service-card:hover .service-card-desc,
.service-card:focus-within .service-card-desc,
.service-card[open] .service-card-desc {
  max-height: 4.8em;
  margin-top: 8px;
  opacity: 1;
}
.service-card-copy em {
  color: var(--gold-bright);
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .11em;
  display: block;
  width: 100%;
  margin-top: auto;
  padding-top: 8px;
  text-align: center;
  transition: color .28s ease;
}
.service-card:hover .service-card-copy em,
.service-card:focus-within .service-card-copy em,
.service-card[open] .service-card-copy em { color: #64675f; }
.service-card-copy strong {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.service-card-detail {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.text-link { display: inline-block; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 700; font-size: 13px; }
.light-link { color: var(--cream); }

.story {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 1180px;
  margin-inline: auto;
  padding: 140px clamp(24px, 7vw, 110px);
}
.story-kicker {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.story-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    #e5c378 0%,
    #987449 28%,
    #f8df8a 58%,
    rgba(158, 125, 86, .35) 78%,
    transparent 100%
  );
  pointer-events: none;
  transform: scaleX(var(--gold-line-scale, 0.18));
  transform-origin: left center;
  opacity: var(--gold-line-opacity, 0);
}
.story-kicker-label {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: inline-block;
  width: fit-content;
  isolation: isolate;
  cursor: default;
}
.story-kicker-ink,
.story-kicker-glow {
  display: inline-block;
  white-space: nowrap;
}
.story-kicker-glow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #e5c378;
  background-image: linear-gradient(108deg, #fffaf0 0%, #e5c378 42%, #fff6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  opacity: 0;
  -webkit-mask-image: radial-gradient(circle 42px at var(--mx) var(--my), #000 0%, transparent 72%);
  mask-image: radial-gradient(circle 42px at var(--mx) var(--my), #000 0%, transparent 72%);
}
.story-kicker-label:hover .story-kicker-glow {
  opacity: 1;
}
.story-heading {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  isolation: isolate;
  cursor: default;
}
.story-heading-ink,
.story-heading-glow {
  display: grid;
  grid-template-columns: max-content auto;
  width: max-content;
  max-width: 100%;
}
.story-heading-glow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  -webkit-mask-image: radial-gradient(circle 92px at var(--mx) var(--my), #000 0%, transparent 72%);
  mask-image: radial-gradient(circle 92px at var(--mx) var(--my), #000 0%, transparent 72%);
}
.story-heading-glow .story-heading-lead,
.story-heading-glow .story-heading-tail,
.story-heading-glow .story-heading-for,
.story-heading-glow .story-heading-eye {
  color: #e5c378;
  background-image: linear-gradient(108deg, #fffaf0 0%, #e5c378 42%, #fff6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-heading:hover .story-heading-glow {
  opacity: 1;
}
.story-heading-lead { grid-column: 1; grid-row: 1; }
.story-heading-eye {
  font-style: italic;
  font-weight: 500;
}
.story-heading-for {
  grid-column: 2;
  grid-row: 2;
  white-space: nowrap;
  padding-right: 0.18em;
  letter-spacing: 0.01em;
}
.story .story-kicker,
.story .story-heading {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(7px);
  transition:
    opacity .85s ease,
    transform .85s ease,
    filter .85s ease;
}
.story.is-inview .story-kicker,
.story.is-inview .story-heading {
  opacity: var(--exit-opacity, 1);
  transform: none;
  filter: blur(var(--exit-blur, 0px));
}
.story.is-inview .story-kicker { transition-delay: 0.12s; }
.story.is-inview .story-heading { transition-delay: 0.32s; }
.story:not(.is-inview) .story-kicker,
.story:not(.is-inview) .story-heading {
  transition-delay: 0s;
  transition-duration: .4s;
}
.scroll-fade {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(7px);
  transition:
    opacity .85s ease,
    transform .85s ease,
    filter .85s ease;
}
.is-inview .scroll-fade,
.scroll-fade.is-arrived {
  opacity: var(--exit-opacity, 1);
  transform: none;
  filter: blur(var(--exit-blur, 0px));
}
.exit-blur {
  --exit-opacity: 1;
  --exit-blur: 0px;
}
.hero-copy.exit-blur {
  opacity: var(--exit-opacity, 1);
  filter: blur(var(--exit-blur, 0px));
}
.service-group-title,
.intro-name,
footer span {
  opacity: var(--exit-opacity, 1);
  filter: blur(var(--exit-blur, 0px));
}
.is-settled .exit-blur,
.hero .exit-blur,
.video-signature.exit-blur,
footer .exit-blur {
  transition: none;
}
.is-settled .scroll-fade,
.scroll-fade.is-arrival-settled,
.is-settled .story-kicker,
.is-settled .story-heading,
.is-settled .intro-lead .eyebrow,
.is-settled .intro-lead h2,
.is-settled .intro-bio > p:not(.intro-name) {
  transition: none;
}
.video-band:not(.is-inview) .scroll-fade,
.reviews:not(.is-inview) .scroll-fade,
.visit:not(.is-inview) .scroll-fade,
.booking:not(.is-inview) .scroll-fade,
.services:not(.is-inview) .scroll-fade {
  transition-delay: 0s;
  transition-duration: .4s;
}
.portfolio.is-inview .portfolio-heading .scroll-fade:nth-child(1) { transition-delay: 0.12s; }
.portfolio.is-inview .portfolio-heading .scroll-fade:nth-child(2) { transition-delay: 0.32s; }
.portfolio.is-inview .ba-compare.scroll-fade { transition-delay: 0.28s; }
.video-band.is-inview .scroll-fade:nth-child(1) { transition-delay: 0.12s; }
.video-band.is-inview .scroll-fade:nth-child(2) { transition-delay: 0.28s; }
.reviews.is-inview .reviews-heading .scroll-fade:nth-child(1) { transition-delay: 0.12s; }
.reviews.is-inview .reviews-heading .scroll-fade:nth-child(2) { transition-delay: 0.32s; }
.reviews.is-inview .reviews-rail .scroll-fade:nth-child(1) { transition-delay: 0.22s; }
.reviews.is-inview .reviews-rail .scroll-fade:nth-child(2) { transition-delay: 0.32s; }
.reviews.is-inview .reviews-rail .scroll-fade:nth-child(3) { transition-delay: 0.42s; }
.reviews.is-inview .reviews-rail .scroll-fade:nth-child(4) { transition-delay: 0.52s; }
.reviews.is-inview .reviews-rail .scroll-fade:nth-child(5) { transition-delay: 0.62s; }
.reviews.is-inview > .text-link.scroll-fade { transition-delay: 0.58s; }
.faq:not(.is-inview) .scroll-fade {
  transition-delay: 0s;
  transition-duration: .4s;
}
.faq.is-inview .faq-heading .scroll-fade:nth-child(1) { transition-delay: 0.12s; }
.faq.is-inview .faq-heading .scroll-fade:nth-child(2) { transition-delay: 0.32s; }
.faq.is-inview .faq-item:nth-child(1) { transition-delay: 0.22s; }
.faq.is-inview .faq-item:nth-child(2) { transition-delay: 0.32s; }
.faq.is-inview .faq-item:nth-child(3) { transition-delay: 0.42s; }
.faq.is-inview .faq-item:nth-child(4) { transition-delay: 0.52s; }
.faq.is-inview .faq-item:nth-child(5) { transition-delay: 0.62s; }
.faq.is-inview .faq-item:nth-child(6) { transition-delay: 0.72s; }
.faq.is-inview .faq-item:nth-child(7) { transition-delay: 0.82s; }
.faq.is-inview .faq-item:nth-child(8) { transition-delay: 0.92s; }
.faq.is-inview .faq-item:nth-child(9) { transition-delay: 1.02s; }
.faq.is-inview .faq-item:nth-child(10) { transition-delay: 1.12s; }
.faq.is-inview .faq-item:nth-child(11) { transition-delay: 1.22s; }
.visit.is-inview .visit-heading .scroll-fade { transition-delay: 0.12s; }
.visit.is-inview .visit-info.scroll-fade { transition-delay: 0.28s; }
.visit.is-inview .visit-location.scroll-fade { transition-delay: 0.42s; }
.booking.is-inview > .scroll-fade:not(.booking-action) { transition-delay: 0.12s; }
.booking.is-inview .booking-action.scroll-fade { transition-delay: 0.32s; }
.services.is-inview .services-heading .scroll-fade:nth-child(1) { transition-delay: 0.12s; }
.services.is-inview .services-heading .scroll-fade:nth-child(2) { transition-delay: 0.32s; }

.portfolio {
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(88px, 10vw, 140px) 0 clamp(40px, 5vw, 72px);
  background: var(--beige);
}
.wave-portfolio-top {
  top: 0;
  height: 1px;
}
.portfolio-heading {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 64px;
  padding-inline: clamp(24px, 7vw, 110px);
  box-sizing: border-box;
}
.ba-compare {
  --reveal: 52%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 4vw, 72px);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(24px, 7vw, 110px);
  box-sizing: border-box;
}
.ba-stage {
  flex: 0 0 auto;
  width: min(48%, 520px);
}
.ba-frame {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #1a1816;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}
.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 84%;
  pointer-events: none;
}
.ba-after-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}
.ba-handle {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 249, 244, 0.92);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 249, 244, 0.16);
  border: 1.5px solid rgba(255, 249, 244, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}
.ba-handle-knob::before,
.ba-handle-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #fff9f4;
  border-right: 1.5px solid #fff9f4;
}
.ba-handle-knob::before {
  left: 11px;
  transform: translateY(-50%) rotate(-135deg);
}
.ba-handle-knob::after {
  right: 11px;
  transform: translateY(-50%) rotate(45deg);
}
.ba-label {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(17, 18, 16, 0.42);
  color: #fff9f4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }
.ba-caption {
  margin: 12px 0 0;
  text-align: left;
  color: #6b675f;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.ba-copy {
  flex: 1 1 220px;
  max-width: 340px;
}
.ba-copy .eyebrow { margin-bottom: 14px; }
.ba-copy h3 {
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 0.92;
  margin: 0 0 18px;
}
.ba-copy p:last-child {
  margin: 0;
  max-width: 26ch;
  color: #50534e;
  font-size: 17px;
  line-height: 1.65;
}
.ba-frame:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.second-video { margin-bottom: 0; }

.faq {
  z-index: 2;
  padding: 116px 0 280px;
  text-align: left;
  background: var(--beige);
}
.wave-faq-top {
  top: 0;
  height: 1px;
}
.faq-heading {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 36px;
  padding-inline: clamp(24px, 7vw, 110px);
  box-sizing: border-box;
}
.faq-heading h2 { max-width: 820px; margin: 0; padding: 0; }
.faq-list {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(24px, 7vw, 110px);
  box-sizing: border-box;
}
.faq-item {
  max-width: 820px;
  border-bottom: 1px solid rgba(202, 171, 108, .32);
}
.faq-item:first-child { border-top: 1px solid rgba(202, 171, 108, .32); }
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 18px 2px;
  list-style: none;
  cursor: pointer;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary::after {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1.5px 14px no-repeat;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.faq-answer {
  padding: 0 36px 18px 0;
}
.faq-answer p {
  margin: 0;
  max-width: 68ch;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #50534e;
}

.reviews { padding: 120px 0 150px; text-align: left; }
.reviews-heading {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 36px;
  padding-inline: clamp(24px, 7vw, 110px);
  box-sizing: border-box;
}
.reviews-heading h2 { max-width: 820px; margin: 0; padding: 0; }
.reviews > .text-link { margin-left: clamp(24px, 7vw, 110px); }
.reviews-rail-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 36px;
}
.reviews-rail {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px clamp(24px, 7vw, 110px) 18px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  user-select: none;
}
.reviews-rail.is-dragging,
.service-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.reviews-rail::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(202, 171, 108, .28);
  cursor: pointer;
  text-align: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .reviews.is-inview .review-card.scroll-fade:hover,
  .review-card:hover {
    transform: translateY(-5px) scale(1.025);
    box-shadow: 0 16px 34px rgba(17, 18, 16, .08);
  }
}
.review-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.review-photo,
.review-photo-fallback {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(202, 171, 108, .45);
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.review-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(202, 171, 108, .18);
  color: #7a5c2e;
  font-family: "Cormorant Infant", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.review-card blockquote { margin: 0; }
.review-card blockquote p {
  font-family: "Cormorant Infant", serif;
  font-size: 22px;
  line-height: 1.28;
  color: var(--ink);
}
.review-name {
  margin: auto 0 0;
  min-height: 2.7em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.35;
}
.review-source {
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8a8478;
}
.review-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 18, 16, .28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.review-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.review-overlay[hidden] { display: none; }
.review-overlay.is-open[hidden] { display: flex; }
.review-pop {
  position: relative;
  width: min(460px, 100%);
  padding: 36px 28px 28px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid rgba(202, 171, 108, .32);
  box-shadow: 0 24px 60px rgba(17, 18, 16, .18);
  text-align: center;
  transform: scale(.94) translateY(12px);
  opacity: 0;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}
.review-overlay.is-open .review-pop {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.review-dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.review-dialog-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.review-pop h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.review-dialog-stars {
  margin: -6px 0 12px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.review-dialog-quote {
  margin: 0 0 12px;
  font-family: "Cormorant Infant", serif;
  font-size: 24px;
  line-height: 1.35;
  white-space: pre-wrap;
}
.review-dialog-translated {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a8478;
}
.review-dialog-source {
  display: inline-block;
  margin: 0;
  padding-bottom: 4px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7a5c2e;
  border-bottom: 1px solid currentColor;
}

.visit {
  position: relative;
  z-index: 3;
  max-width: none;
  margin: 0;
  padding: 210px 0 48px;
  background: var(--terracotta);
  color: #fff;
}
.wave-visit-top {
  top: 0;
  height: 1px;
}
.visit-heading {
  display: block;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 88px;
  padding-inline: clamp(24px, 7vw, 110px);
  box-sizing: border-box;
}
.visit-heading h2 { max-width: min(560px, 54%); margin: 0; padding: 0; color: #fff; }
.visit-place { white-space: nowrap; }
.visit-mark {
  position: absolute;
  top: 42px;
  left: calc(50% + clamp(12px, 3vw, 56px));
  width: min(300px, 24vw);
  aspect-ratio: 1;
  margin: 0;
  z-index: 2;
}
.visit-mark-ring,
.visit-mark-core {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.visit-mark-ring {
  transform-origin: center;
}
@keyframes visit-ring-once {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.visit-mark-ring.is-settled {
  animation: visit-ring-once 8.5s cubic-bezier(0.16, 0.72, 0.2, 1) forwards;
}
.visit .eyebrow.ink,
.visit .story-kicker-ink,
.visit .story-kicker-glow {
  color: #fff;
}
.visit-grid {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(24px, 7vw, 110px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: stretch;
}
.visit-subhead {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
}
.visit-info .visit-subhead:not(:first-child),
.visit-location .visit-subhead {
  margin-top: 0;
}
.visit-info .visit-subhead:not(:first-child) {
  margin-top: 28px;
}
.visit-address, .visit-hours, .visit-note { color: #fff; line-height: 1.8; font-size: 16px; }
.visit-hours { margin: 0 0 4px; }
.visit-location .visit-address { margin: 0 0 14px; }
.visit-location {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.visit-map {
  position: relative;
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  filter: grayscale(1) contrast(1.08);
}
.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.visit-map-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
.visit-map-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.visit-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.visit-contact-line {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}
@media (hover: hover) and (pointer: fine) {
  .visit-contact-line:hover,
  .visit-contact-line:focus-visible {
    transform: translateY(-3px) scale(1.03);
  }
}
.visit-contact-line:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 4px;
}
button.visit-contact-line {
  background: none;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 18, 16, .28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-overlay[hidden] { display: none; }
.contact-overlay.is-open[hidden] { display: flex; }
.contact-pop {
  position: relative;
  width: min(560px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: 36px 28px 28px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid rgba(202, 171, 108, .32);
  box-shadow: 0 24px 60px rgba(17, 18, 16, .18);
  color: var(--ink);
  text-align: left;
  transform: scale(.94) translateY(12px);
  opacity: 0;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}
.contact-overlay.is-open .contact-pop {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.contact-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.contact-pop h2 {
  max-width: 14ch;
  margin: 0 28px 8px 0;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
}
.contact-lead {
  margin: 0;
  color: #5c584f;
  font-size: 16px;
  line-height: 1.6;
}
.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-field {
  display: grid;
  gap: 6px;
}
.contact-field > span,
.contact-sms span {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.contact-optional {
  font-weight: 400;
  color: #6d675f;
}
.contact-required {
  color: var(--terracotta);
  text-decoration: none;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 18, 16, .16);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 12px 14px;
}
.contact-field textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-field input:focus-visible,
.contact-field textarea:focus-visible,
.contact-sms input:focus-visible,
.contact-close:focus-visible,
.contact-send:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.contact-field.is-invalid input,
.contact-field.is-invalid textarea {
  border-color: var(--terracotta);
}
.contact-sms {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  cursor: pointer;
}
.contact-sms input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--olive);
}
.contact-sms span {
  font-size: 13px;
  font-weight: 400;
  color: #3c3a34;
}
.contact-sms a {
  color: #7a5c2e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.contact-status.is-error { color: var(--terracotta); }
.contact-status.is-ok { color: var(--olive); }
.contact-status a { color: inherit; text-decoration: underline; }
.contact-send {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font-family: "Mulish", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-send:disabled { opacity: .6; cursor: wait; }
.visit-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.visit-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .12);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.visit-social a:hover,
.visit-social a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .22);
}
.visit-social a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.visit-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
.visit-note { margin: 18px 0 0; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }

.booking { position: relative; z-index: 4; display: grid; grid-template-columns: 1.15fr minmax(0, .95fr); align-items: start; gap: 70px; padding: 130px clamp(24px, 7vw, 110px); color: var(--cream); background: var(--ink); overflow-x: hidden; }
.wave-booking { top: 0; height: 1px; }
.wave-booking .wave-booking-fill { fill: var(--ink); }
.wave-booking .wave-booking-line { fill: none; stroke: var(--gold); stroke-width: 3; vector-effect: non-scaling-stroke; }
.booking-action { position: relative; z-index: 2; max-width: min(100%, 640px); min-width: 0; }
.booking-action p { color: rgba(255,255,255,.68); line-height: 1.7; }
.booking-widget {
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
}
.booking-widget .vagaro {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-align: left !important;
}
.booking-widget .vagaro a {
  color: rgba(255, 255, 255, .42) !important;
  font-size: 11px !important;
  letter-spacing: .04em;
}
footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 28px;
  padding: 28px clamp(24px, 7vw, 110px) 92px;
  color: #c9c2b7;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
footer span:first-child { justify-self: start; }
footer span:last-child { justify-self: end; text-align: right; }
.footer-legal { justify-self: center; text-align: center; }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--gold-bright); }
.footer-legal a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.liquid-glass-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.floating-book {
  --gx: 50%;
  --gy: 8%;
  position: fixed;
  z-index: 30;
  overflow: hidden;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.045);
  border: 0.5px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.72),
    inset 0 -0.5px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) translateY(calc(100% + 28px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: center;
  transition: transform .32s ease, opacity .32s ease, visibility .32s ease, color .2s ease;
}
.floating-book-material {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  backdrop-filter: blur(5px) saturate(1.7) brightness(1.16) contrast(1.18);
  -webkit-backdrop-filter: blur(5px) saturate(1.7) brightness(1.16) contrast(1.18);
  backdrop-filter: url("#ester-liquid-glass") blur(5px) saturate(1.7) brightness(1.16) contrast(1.18);
  -webkit-backdrop-filter: url("#ester-liquid-glass") blur(5px) saturate(1.7) brightness(1.16) contrast(1.18);
  pointer-events: none;
}
.floating-book-label {
  position: relative;
  z-index: 2;
  text-shadow: 0 0.5px 8px rgba(0, 0, 0, 0.28);
}
.floating-book::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    90px 34px at var(--gx) var(--gy),
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    transparent 70%
  );
  pointer-events: none;
  mix-blend-mode: plus-lighter;
  opacity: .75;
}
.floating-book::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 32%, transparent 70%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}
.floating-book.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
html.review-open,
html.review-open body,
html.contact-open,
html.contact-open body {
  overflow: hidden;
  overscroll-behavior: none;
  scroll-behavior: auto;
}
body.review-open .floating-book,
body.contact-open .floating-book {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.floating-book.is-visible:hover,
.floating-book.is-visible:focus-visible {
  transform: translateX(-50%) translateY(0) scale(1.04);
  color: #fff;
}
.floating-book.on-light-surface {
  color: rgba(17, 18, 16, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 12px 32px rgba(17, 18, 16, 0.1),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.85),
    inset 0 -0.5px 0 rgba(17, 18, 16, 0.04);
}
.floating-book.on-light-surface .floating-book-label {
  text-shadow: 0 0.5px 6px rgba(255, 255, 255, 0.35);
}
.floating-book.on-light-surface.is-visible:hover,
.floating-book.on-light-surface.is-visible:focus-visible {
  color: #1c1c1a;
}
.floating-book:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .site-header { height: 72px; padding: 0 18px; }
  .site-header::after { left: 18px; right: 18px; }
  .brand img { width: 150px; }
  .site-nav,
  .header-book { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-nav { top: 64px; }
  .scroll-nav a,
  .mobile-nav a,
  .mobile-nav-book {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
  .reviews-nav-prev { left: 8px; }
  .reviews-nav-next { right: 8px; }
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
    max-height: none;
  }
  .hero-stage {
    position: absolute;
    inset: 0;
    left: 0;
    width: 100%;
    transform: none;
  }
  .hero-image { position: absolute; inset: 0; object-fit: cover; object-position: 50% 34%; }
  .hero-shade {
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .22) 42%, rgba(9, 10, 9, .78) 100%);
  }
  .hero-copy {
    top: auto;
    bottom: 11%;
    left: 50%;
    transform: translateX(-50%);
    width: min(100% - 1.5rem, 28rem);
    padding: 0 16px;
  }
  .hero-categories {
    --cat-track: 0.42em;
    font-size: 16.5px;
    margin-bottom: 12px;
  }
  .hero-headline-line { white-space: normal; }
  .hero-copy h1 {
    font-size: clamp(3.75rem, 14.5vw, 5.2rem);
    line-height: 1.08;
  }
  .hero-tagline {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(20px, 5.4vw, 25px);
  }
  .section-wave { height: 1px; }
  .wave-hero, .wave-services-top, .wave-portfolio-top, .wave-faq-top, .wave-visit-top, .wave-booking { top: 0; }
  .wave-services-bottom { top: auto; bottom: 0; height: 1px; }
  h1 { font-size: clamp(53px, 16vw, 72px); }
  h2 { font-size: clamp(46px, 13vw, 64px); }
  .intro { padding-top: 82px; }
  .intro-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "image"
      "bio";
    gap: 28px;
    align-items: start;
  }
  .intro-image {
    align-self: auto;
    display: block;
    justify-content: center;
  }
  .intro-image img {
    width: 100%;
    max-width: min(100%, 360px);
    height: auto;
    margin-inline: auto;
    object-position: top center;
  }
  .intro-lead { align-self: auto; }
  .video-shell { width: 100%; border-radius: 0; }
  .video-shell video { aspect-ratio: 4 / 3; max-height: none; }
  .services { padding-bottom: 110px; }
  .services-heading { padding-inline: 20px; }
  .service-card { flex-basis: 180px; width: 180px; }
  .service-groups { padding-inline: 18px; }
  .service-rail-wrap .rail-nav-prev { left: -16px; }
  .service-rail-wrap .rail-nav-next { right: -16px; }
  .story {
    padding: 104px 20px;
    overflow-x: clip;
  }
  .story-heading,
  .story-heading-ink,
  .story-heading-glow {
    width: 100%;
    max-width: 100%;
  }
  .story-heading-ink,
  .story-heading-glow {
    display: block;
  }
  .story-heading-lead,
  .story-heading-tail {
    display: inline;
  }
  .story-heading-for {
    display: block;
    margin-top: 0.08em;
    padding-right: 0;
    white-space: normal;
  }
  .portfolio { padding-inline: 0; }
  .booking { grid-template-columns: 1fr; padding: 100px 22px 120px; }
  .portfolio-heading,
  .ba-compare,
  .reviews-heading,
  .visit-heading,
  .visit-grid {
    padding-inline: 20px;
  }
  .visit-heading {
    display: block;
  }
  .visit-heading h2 { max-width: 100%; }
  .visit-mark {
    position: absolute;
    top: 18px;
    right: 20px;
    left: auto;
    width: min(220px, 58vw);
    margin: 0;
  }
  .ba-compare { margin-bottom: 36px; flex-direction: column; align-items: flex-start; }
  .ba-stage { width: min(100%, 420px); }
  .ba-frame { max-height: none; }
  .faq { padding: 88px 0 150px; }
  .faq-heading,
  .faq-list { padding-inline: 20px; }
  .visit { padding: calc(18px + min(220px, 58vw) + 32px) 0 24px; }
  .visit-heading { margin-bottom: 36px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map {
    flex: none;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 14px;
    text-align: center;
  }
  footer span:first-child,
  footer span:last-child,
  .footer-legal { justify-self: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-rail,
  .service-rail { scroll-behavior: auto; }
  .review-overlay,
  .review-pop,
  .contact-overlay,
  .contact-pop { transition: none; }
  .scroll-fade,
  .review-card.scroll-fade:hover,
  .faq-item summary::after {
    transform: none;
    box-shadow: none;
    transition: none;
  }
  .visit-contact-line:hover,
  .visit-contact-line:focus-visible {
    transform: none;
  }
  .scroll-nav,
  .scroll-nav-menu { transition: none; }
  .deferred-video { display: none; }
  .video-shell::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111 center / cover no-repeat;
  }
  .video-shell:first-of-type::before { background-image: url("./media/originals/capa-ester-beauty.png"); }
  .video-shell.second-video::before { background-image: url("./media/Korean-Lash-Lifting1.jpg"); }
  .service-card,
  .service-card.can-pop.is-popped { transition: none; animation: none; opacity: 1; transform: none; }
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .header-book:hover,
  .header-book:focus-visible {
    animation: none;
    transform: none;
    color: #f6e4b4;
  }
  .header-book:hover::after {
    animation: none;
  }
  .floating-book.is-visible:hover,
  .floating-book.is-visible:focus-visible {
    transform: translateX(-50%) translateY(0);
    color: #fff;
  }
  .floating-book.on-light-surface.is-visible:hover,
  .floating-book.on-light-surface.is-visible:focus-visible {
    color: #7a5c2e;
  }
  .visit-mark-ring,
  .visit-mark-ring.is-settled { transform: none; animation: none; }
  .hero-gold-shine {
    animation: none;
    background: none;
    color: #fff;
    -webkit-text-fill-color: currentColor;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .42));
  }
  .hero-tagline-glow { display: none; }
  .hero-categories a:hover,
  .hero-categories a:focus-visible {
    transform: none;
  }
  .intro-image,
  .intro-lead .eyebrow,
  .intro-lead h2,
  .intro-name,
  .intro-bio > p:not(.intro-name) {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .gold-line::after {
    transform: scaleX(1);
    opacity: 1;
    transition: none;
  }
  .scroll-fade,
  .story-kicker,
  .story-heading {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .story-kicker-glow,
  .story-heading-glow { display: none; }
  .intro-bio > p.intro-name .intro-name-ink {
    clip-path: none;
    transition: none;
    animation: none;
    background: none;
    color: var(--ink);
    -webkit-text-fill-color: currentColor;
  }
  .video-signature-ink { color: #efe8dc; }
  .intro-name-glow,
  .video-signature-glow { display: none; }
}

.legal-page { background: var(--ink); color: #efe8dc; }
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 7vw, 110px);
}
.legal-header img {
  width: 168px;
  max-height: 46px;
  filter: brightness(0) invert(1);
}
.legal-back {
  color: #c9c2b7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.legal-back:hover,
.legal-back:focus-visible { color: var(--gold-bright); }
.legal-back:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.legal-main {
  max-width: 740px;
  margin: 0 auto;
  padding: 12px clamp(24px, 5vw, 40px) 88px;
}
.legal-kicker {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.legal-main h1 {
  max-width: 12ch;
  margin: 0 0 18px;
  font-size: clamp(46px, 6vw, 72px);
  line-height: .96;
}
.legal-updated {
  margin: 0 0 28px;
  color: #c9c2b7;
  font-size: 13px;
  letter-spacing: .04em;
}
.legal-main h2 {
  margin: 40px 0 10px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
}
.legal-main p,
.legal-main li {
  color: rgba(255, 249, 244, .82);
  font-size: 16px;
  line-height: 1.75;
}
.legal-main p { margin: 0 0 14px; }
.legal-main ul { margin: 0 0 14px; padding-left: 1.15em; }
.legal-main li + li { margin-top: 6px; }
.legal-main a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-main a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.legal-callout {
  margin: 8px 0 22px;
  padding: 20px 22px;
  border: 1px solid rgba(202, 171, 108, .45);
  background: rgba(255, 255, 255, .03);
}
.legal-callout p:last-child { margin-bottom: 0; }
.legal-footer {
  display: flex;
  justify-content: center;
  padding: 22px 24px 36px;
  color: #c9c2b7;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
}
.legal-footer span { justify-self: center; text-align: center; }
.legal-footer a:hover,
.legal-footer a:focus-visible { color: var(--gold-bright); }
