:root {
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Optima, "Avenir Next", Inter, Jost, system-ui, sans-serif;
  --color-bg: #080e0a;
  --color-text: #f0ede6;
}

body.home {
  background: #080e0a;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

#page-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147482500;
  pointer-events: none;
  background: #080808;
  opacity: 1;
  animation: lfyOverlayFade 1.05s cubic-bezier(0.76, 0, 0.24, 1) 0.16s forwards;
}

#grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147482400;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.65) 0 0.6px, transparent 0.7px);
  background-size: 80px 80px, 110px 110px;
  mix-blend-mode: screen;
}

@keyframes lfyOverlayFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  z-index: 2147482600;
  border-radius: 999px;
  pointer-events: none;
  background: #fff;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

#cursor-dot.is-visible {
  opacity: 1;
}

#cursor-dot.is-large {
  width: 36px;
  height: 36px;
}

@media (pointer: coarse), (max-width: 1023px) {
  #cursor-dot {
    display: none;
  }
}

.lfy-cinematic-page {
  background: #080e0a;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #080e0a;
  color: #fff;
}

.hero__media,
.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  object-position: center;
  background: #080e0a;
}

/* LFY hero video hardening: keep cinematic.8 layout, make MP4 the visible background layer. */
.hero__media {
  z-index: 0;
  overflow: hidden;
  background: #080e0a url("images/welcome-bg.webp") center / cover no-repeat;
  pointer-events: none;
}

.hero__video {
  display: block;
  min-width: 100%;
  min-height: 100%;
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
}

.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 18%, rgba(197, 168, 128, 0.12), transparent 36%),
    linear-gradient(to bottom, rgba(8, 14, 10, 0.62) 0%, rgba(8, 14, 10, 0.36) 48%, rgba(8, 14, 10, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 92px 1.5rem 3rem;
  box-sizing: border-box;
  text-align: center;
}

.hero__eyebrow,
.stage-panel__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero__eyebrow {
  margin: 0 0 1.5rem;
}

.hero__heading {
  width: 100%;
  max-width: min(calc(100vw - 2.5rem), 1150px);
  margin: 0 0 2rem;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 9vw, 9.25rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}

.hero__heading .char {
  display: inline-block;
  will-change: transform, opacity;
}

.hero__heading .word {
  display: inline-block;
  white-space: nowrap;
}

.hero__subheading {
  max-width: 46rem;
  margin: 0 0 2.5rem;
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  max-width: min(100%, 48rem);
}

.btn {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn--primary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.btn--ghost {
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn--ghost:hover {
  color: #fff;
  transform: translateY(-2px);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.32);
  transform-origin: top;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(0.5);
  }
}

.lfy-cinematic-page .cinematic-hero {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
}

.cinematic-overlap-panel {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100svh;
  overflow: clip;
  background: #080e0a;
  color: #fff;
  clip-path: inset(0);
  transform: none;
  transform-origin: center bottom;
  box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.46);
  contain: paint;
  will-change: transform, opacity;
}

#stage-welcome {
  z-index: 2;
}

#stage-team {
  z-index: 3;
}

.stage-panel__bg,
.stage-panel__bg-img,
.stage-panel__bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-panel__bg-img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.stage-panel__bg-overlay {
  background:
    linear-gradient(135deg, rgba(8, 14, 10, 0.58) 0%, rgba(8, 14, 10, 0.36) 58%, rgba(8, 14, 10, 0.22) 100%),
    radial-gradient(circle at 18% 20%, rgba(197, 168, 128, 0.2), transparent 34%);
}

.stage-panel--team .stage-panel__bg-overlay {
  background:
    linear-gradient(225deg, rgba(8, 14, 10, 0.6) 0%, rgba(8, 14, 10, 0.38) 58%, rgba(8, 14, 10, 0.24) 100%),
    radial-gradient(circle at 82% 20%, rgba(197, 168, 128, 0.2), transparent 34%);
}

.stage-panel__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(100%, 54rem);
  height: 100%;
  padding: clamp(7.5rem, 22vh, 14rem) clamp(1.5rem, 6vw, 8rem) 5rem;
  box-sizing: border-box;
}

.stage-panel__inner--right {
  margin-left: auto;
}

.stage-panel__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.stage-panel__heading {
  width: 100%;
  max-width: min(calc(100vw - 3rem), 56rem);
  margin: 0 0 1.5rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  color: #fff;
}

.stage-panel__body {
  max-width: 32rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

.stage-panel__body--mt {
  margin-top: 1rem;
}

.stage-panel__actions {
  margin-top: 2rem;
}

.btn--section-primary {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn--section-primary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.cinematic-following-content,
.lfy-cinematic-page .section,
.lfy-cinematic-page .section-shell {
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__content {
    padding: 86px 1.25rem 3rem;
  }

  .hero__heading {
    max-width: calc(100vw - 2.5rem);
    font-size: clamp(2.35rem, 12vw, 4.5rem);
    line-height: 1.03;
  }

  .hero__eyebrow,
  .stage-panel__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    white-space: normal;
    text-align: center;
  }

  .hero__subheading {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 0.92rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    gap: 0.75rem;
    box-sizing: border-box;
  }

  .btn--primary,
  .btn--ghost,
  .btn--section-primary {
    width: 100%;
    max-width: 320px;
  }

  .stage-panel__inner {
    width: 100%;
    padding: 7.5rem 1.5rem 3rem;
  }

  .stage-panel__heading {
    max-width: calc(100vw - 3rem);
    font-size: clamp(2.4rem, 12vw, 4.6rem);
    line-height: 1.03;
  }

  .stage-panel__body {
    max-width: calc(100vw - 3rem);
    font-size: 0.94rem;
  }
}

/* Live button scale tuning: keep CTAs polished without oversized pills. */
:where(.button-primary, .button-secondary, .btn, .btn--primary, .btn--ghost, .btn--section-primary, .lfy-contact-form input[type=submit], .lfy-contact-form button[type=submit]) {
  --lfy-button-pad-y: clamp(14px, 1.2vw, 17px);
  --lfy-button-pad-x: clamp(24px, 3vw, 45px);
  min-width: 0;
  min-height: 0;
  width: fit-content;
  max-width: 100%;
  padding: var(--lfy-button-pad-y) var(--lfy-button-pad-x);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.66rem, 0.7vw, 0.76rem);
  line-height: 1;
  letter-spacing: 0.14em;
  white-space: nowrap;
  box-sizing: border-box;
}

:where(.button-primary--small, .header-booking) {
  min-width: 0;
  min-height: 0;
  padding: var(--lfy-button-pad-y) var(--lfy-button-pad-x);
  font-size: 0.64rem;
}

.hero__actions .btn {
  min-width: 0;
}

.stage-panel__actions .btn {
  min-width: 0;
}

.flyout-cta .button-primary {
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 767px) {
  :where(.button-primary, .button-secondary, .btn, .btn--primary, .btn--ghost, .btn--section-primary, .lfy-contact-form input[type=submit], .lfy-contact-form button[type=submit]) {
    --lfy-button-pad-y: 14px;
    --lfy-button-pad-x: clamp(22px, 7vw, 32px);
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

  .hero__actions .btn,
  .stage-panel__actions .btn,
  .flyout-cta .button-primary {
    width: fit-content;
    max-width: 100%;
  }

  :where(.button-primary--small, .header-booking) {
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #page-overlay {
    display: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  .lfy-cinematic-page .cinematic-hero,
  .cinematic-overlap-panel {
    position: relative;
    inset: auto;
    min-height: 100svh;
    height: auto;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .stage-panel__inner {
    min-height: 100svh;
  }
}

/* Premium Services page: editorial service menu and conversion path. */
.site-header,
.site-header * {
  box-sizing: border-box;
}

.site-header .hamburger-button {
  position: fixed !important;
  top: calc(0.65rem + env(safe-area-inset-top, 0px)) !important;
  right: calc(1rem + env(safe-area-inset-right, 0px)) !important;
  z-index: 2147483000;
  transform: translateX(min(0px, calc(430px - 100vw))) !important;
}

.services-page {
  --services-deep: #07110d;
  --services-jungle: #10241e;
  --services-linen: #f9f8f6;
  --services-muted: rgba(249, 248, 246, 0.72);
  --services-brass: #c5a880;
  background: var(--services-linen);
  color: #10241e;
  overflow-x: clip;
}

.services-page :where(a, button) {
  text-decoration: none;
}

.services-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: end start;
  overflow: clip;
  background: var(--services-deep);
  color: var(--services-linen);
  isolation: isolate;
}

.services-hero__video,
.services-hero__veil {
  position: absolute;
  inset: 0;
}

.services-hero__video {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.82) contrast(1.05);
}

.services-hero__veil {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(197, 168, 128, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(7, 17, 13, 0.88), rgba(7, 17, 13, 0.55) 52%, rgba(7, 17, 13, 0.36)),
    linear-gradient(180deg, rgba(7, 17, 13, 0.18), rgba(7, 17, 13, 0.82));
}

.services-hero__inner {
  width: min(100% - clamp(2rem, 7vw, 8rem), 78rem);
  margin-inline: auto;
  padding-block: clamp(9rem, 16vh, 13rem) clamp(4rem, 10vh, 7rem);
}

.services-kicker {
  margin: 0;
  font-family: var(--font-sans, Optima, Avenir Next, Inter, sans-serif);
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--services-brass);
}

.services-hero__title {
  max-width: 12ch;
  margin: 1.25rem 0 0;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.services-hero__title .word {
  display: inline-block;
  overflow: clip;
  vertical-align: top;
}

.services-hero__title .char {
  display: inline-block;
  will-change: transform, opacity;
}

.services-hero__copy {
  max-width: 38rem;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  color: var(--services-muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.85;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.services-button {
  display: inline-flex;
  min-height: 2.95rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.82rem 1.45rem;
  border: 1px solid rgba(197, 168, 128, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.services-button--light {
  background: var(--services-brass);
  color: var(--services-jungle);
}

.services-button--light:hover {
  background: transparent;
  color: var(--services-brass);
}

.services-button--ghost {
  background: transparent;
  color: var(--services-linen);
}

.services-button--ghost:hover {
  background: rgba(249, 248, 246, 0.1);
  color: var(--services-linen);
}

.services-menu {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
  background:
    linear-gradient(180deg, #f9f8f6 0%, #f1eee8 100%);
}

.services-menu__intro,
.services-proof__heading,
.services-booking__copy,
.services-final-cta__inner {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.services-menu__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.services-menu__intro h2,
.services-proof h2,
.services-booking h2,
.services-final-cta h2 {
  margin: 1rem 0 0;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.95;
  color: #10241e;
  text-wrap: balance;
}

.services-menu__intro p:not(.services-kicker),
.services-booking__copy p:not(.services-kicker) {
  margin: 0;
  color: #344039;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.85;
}

.services-menu__layout {
  display: grid;
  width: min(100%, 76rem);
  margin: clamp(3.5rem, 8vw, 7rem) auto 0;
  grid-template-columns: minmax(7rem, 0.24fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
}

.services-menu__rail {
  position: sticky;
  top: calc(var(--header-height, 88px) + 2rem);
  align-self: start;
  display: grid;
  gap: 1.2rem;
  padding-top: 1rem;
  color: #10241e;
}

.services-menu__rail span {
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(16, 36, 30, 0.48);
}

.services-menu__rail strong {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  color: #4a3728;
}

.services-list {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.services-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(4rem, 0.15fr) minmax(0, 1fr) minmax(12rem, 0.28fr);
  gap: clamp(1.25rem, 3.2vw, 3rem);
  align-items: start;
  min-height: clamp(18rem, 35vw, 26rem);
  padding: clamp(1.4rem, 3.4vw, 3rem);
  border: 1px solid rgba(16, 36, 30, 0.12);
  background:
    radial-gradient(circle at 94% 8%, rgba(197, 168, 128, 0.16), transparent 30%),
    rgba(249, 248, 246, 0.82);
  box-shadow: 0 24px 80px rgba(16, 36, 30, 0.08);
  overflow: clip;
  transform: translateZ(0);
}

.services-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.35rem;
  background: var(--services-brass);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 360ms ease;
}

.services-card.is-active::before {
  transform: scaleY(1);
}

.services-card__number {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.9;
  color: rgba(16, 36, 30, 0.22);
}

.services-card__mood {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a98757;
}

.services-card h3 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.92;
  color: #10241e;
}

.services-card p {
  margin: 1.1rem 0 0;
  max-width: 36rem;
  color: #344039;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.78;
}

.services-card__meta {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
}

.services-card__meta span {
  color: rgba(16, 36, 30, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-card__meta strong {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #4a3728;
}

.services-card__meta a {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  border: 1px solid rgba(16, 36, 30, 0.2);
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  color: #10241e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.services-card__meta a:hover {
  border-color: #10241e;
  background: #10241e;
  color: #f9f8f6;
}

.services-proof {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background: #10241e;
  color: #f9f8f6;
}

.services-proof h2,
.services-final-cta h2 {
  color: #f9f8f6;
}

.services-proof__grid {
  display: grid;
  width: min(100%, 76rem);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.services-quote {
  margin: 0;
  border-left: 1px solid rgba(197, 168, 128, 0.55);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(249, 248, 246, 0.04);
}

.services-quote blockquote {
  margin: 0;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.services-quote figcaption {
  margin-top: 1.5rem;
  color: var(--services-brass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-booking {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background: #f1eee8;
}

.services-booking__copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.services-booking__shortcode {
  width: min(100%, 76rem);
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: clamp(1rem, 2.5vw, 2rem);
  border: 1px solid rgba(16, 36, 30, 0.1);
  background: #f9f8f6;
}

.services-final-cta {
  min-height: 90svh;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 168, 128, 0.2), transparent 36%),
    linear-gradient(180deg, #10241e, #07110d);
  color: #f9f8f6;
}

.services-final-cta__inner {
  text-align: center;
}

.services-final-cta h2 {
  margin-inline: auto;
  max-width: 11ch;
}

.services-final-cta .services-button {
  margin-top: clamp(1.75rem, 4vw, 3rem);
}

.services-sticky-booking {
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 99990;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), 31rem);
  min-height: 3.4rem;
  padding: 0.55rem 0.65rem 0.55rem 1.1rem;
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: 999px;
  background: rgba(7, 17, 13, 0.9);
  color: #f9f8f6;
  box-shadow: 0 18px 60px rgba(7, 17, 13, 0.28);
  backdrop-filter: blur(18px);
  transform: translate3d(-50%, calc(100% + 2rem), 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.services-sticky-booking.is-visible {
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.services-sticky-booking span {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-sticky-booking a {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #c5a880;
  padding: 0.65rem 1rem;
  color: #10241e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .services-menu__intro,
  .services-menu__layout,
  .services-booking__copy {
    grid-template-columns: 1fr;
  }

  .services-menu__rail {
    display: none;
  }

  .services-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-card__meta {
    justify-items: start;
  }

  .services-proof__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header .site-header-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .site-header .hamburger-button {
    position: fixed !important;
    top: calc(0.65rem + env(safe-area-inset-top, 0px)) !important;
    right: calc(1rem + env(safe-area-inset-right, 0px)) !important;
    width: 2.65rem;
    height: 2.65rem;
    margin-right: 0;
    z-index: 2147483000;
  }

  .services-hero__inner {
    width: min(100% - 2rem, 78rem);
  }

  .services-hero__title {
    font-size: clamp(3.1rem, 17vw, 5.1rem);
  }

  .services-hero__actions,
  .services-sticky-booking {
    align-items: stretch;
  }

  .services-button,
  .services-hero__actions .services-button {
    width: min(100%, 20rem);
  }

  .services-sticky-booking {
    width: min(calc(100% - 1rem), 31rem);
    border-radius: 1.35rem;
  }

  .services-sticky-booking span {
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-page :where([data-services-reveal], [data-services-card], .services-hero__title .char) {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* Global typography normalization and inner-page expansion. */
:root {
  --lfy-type-h1-home: clamp(2.4rem, 6.6vw, 5.9375rem);
  --lfy-type-h1-page: clamp(2.7rem, 7vw, 5.9375rem);
  --lfy-type-h2: clamp(2.45rem, 5.2vw, 4.6875rem);
  --lfy-type-h3: clamp(1.9rem, 3.4vw, 3.4rem);
  --lfy-type-h4: clamp(1.4rem, 2.1vw, 2rem);
  --lfy-type-h5: clamp(1.05rem, 1.4vw, 1.35rem);
  --lfy-type-h6: clamp(0.78rem, 0.9vw, 0.88rem);
  --lfy-section-pad-x: clamp(1.25rem, 5vw, 5rem);
  --lfy-section-pad-y: clamp(5rem, 10vw, 9rem);
}

.lfy-cinematic-page :where(h1),
.lfy-inner-page :where(h1) {
  font-size: var(--lfy-type-h1-page);
}

.hero__heading {
  font-size: var(--lfy-type-h1-home);
}

.services-hero__title,
.inner-hero__title {
  font-size: var(--lfy-type-h1-page);
}

.stage-panel__heading,
.section-title,
.services-menu__intro h2,
.services-proof h2,
.services-final-cta h2,
.about-story h2,
.about-gallery h2,
.inner-final-cta h2,
.contact-details h2,
.contact-page-form h2 {
  font-size: var(--lfy-type-h2);
}

.services-card h3,
.about-values h3 {
  font-size: var(--lfy-type-h3);
}

.contact-detail-list span,
.services-kicker,
.inner-kicker,
.section-kicker,
.contact-label {
  font-size: var(--lfy-type-h6);
}

.lfy-inner-page {
  background: #f9f8f6;
  color: #18211d;
  overflow-x: clip;
}

.inner-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: clamp(7rem, 12vw, 11rem) var(--lfy-section-pad-x) clamp(4rem, 8vw, 7rem);
  background: #0b1a14;
  color: #f9f8f6;
  overflow: clip;
}

.inner-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.78) brightness(0.72);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 18, 13, 0.9), rgba(8, 18, 13, 0.48) 52%, rgba(8, 18, 13, 0.26)),
    linear-gradient(180deg, rgba(8, 18, 13, 0.15), rgba(8, 18, 13, 0.74));
}

.inner-hero__content {
  width: min(100%, 74rem);
}

.inner-kicker {
  margin: 0;
  color: #c5a880;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.inner-hero__title {
  max-width: 11ch;
  margin: 1rem 0 0;
  font-family: var(--font-display, Georgia, serif);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.inner-hero__title .word,
.inner-hero__title .char {
  display: inline-block;
}

.inner-hero__copy {
  max-width: 47rem;
  margin: clamp(1.4rem, 3vw, 2.4rem) 0 0;
  color: rgba(249, 248, 246, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.85;
}

.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1.7rem, 3vw, 2.5rem);
}

.about-story,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding: var(--lfy-section-pad-y) var(--lfy-section-pad-x);
}

.about-story__intro h2,
.about-gallery__heading h2,
.contact-details h2,
.contact-page-form h2 {
  max-width: 10ch;
  margin: 1rem 0 0;
  font-family: var(--font-display, Georgia, serif);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.about-story__body {
  align-self: end;
  max-width: 52rem;
  color: rgba(24, 33, 29, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.9;
}

.about-story__body p {
  margin: 0;
}

.about-story__body p + p {
  margin-top: 1.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 var(--lfy-section-pad-x) var(--lfy-section-pad-y);
}

.about-values article {
  min-height: clamp(18rem, 28vw, 28rem);
  padding: clamp(1.5rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(24, 33, 29, 0.12);
  background: rgba(255, 255, 255, 0.38);
}

.about-values span,
.contact-detail-list span {
  color: #8a704f;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-values h3 {
  margin: 1.25rem 0 0;
  font-family: var(--font-display, Georgia, serif);
  font-weight: 400;
  line-height: 0.98;
}

.about-values p,
.contact-detail-list p {
  margin: 1rem 0 0;
  color: rgba(24, 33, 29, 0.68);
  line-height: 1.78;
}

.about-gallery {
  padding: var(--lfy-section-pad-y) var(--lfy-section-pad-x);
  background: #0b1a14;
  color: #f9f8f6;
}

.about-gallery__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.about-gallery__heading h2,
.inner-final-cta h2 {
  color: #f9f8f6;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.5rem);
  align-items: start;
}

.about-gallery__item {
  position: relative;
  min-height: clamp(18rem, 36vw, 34rem);
  margin: 0;
  overflow: clip;
  background: #14261e;
}

.about-gallery__item--1 {
  grid-column: span 7;
}

.about-gallery__item--2 {
  grid-column: span 5;
  margin-top: clamp(3rem, 8vw, 7rem);
}

.about-gallery__item--3 {
  grid-column: span 4;
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.85) contrast(0.95);
  transform: scale(1.06);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-gallery__item:hover img {
  transform: scale(1.015);
  filter: saturate(1) contrast(1);
}

.about-gallery__item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.75rem 1rem;
  color: #f9f8f6;
  background: rgba(11, 26, 20, 0.58);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inner-final-cta {
  min-height: 78svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--lfy-section-pad-y) var(--lfy-section-pad-x);
  background: #0b1a14;
  color: #f9f8f6;
}

.inner-final-cta h2 {
  max-width: 11ch;
  margin: 1rem auto clamp(1.8rem, 4vw, 3rem);
  font-family: var(--font-display, Georgia, serif);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.contact-layout {
  background: #f9f8f6;
}

.contact-detail-list {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.contact-detail-list article {
  padding: clamp(1.2rem, 2vw, 1.7rem) 0;
  border-top: 1px solid rgba(24, 33, 29, 0.14);
}

.contact-detail-list a {
  color: #18211d;
  text-decoration: underline;
  text-decoration-color: rgba(138, 112, 79, 0.55);
  text-underline-offset: 0.25em;
}

.contact-page-form {
  align-self: start;
  justify-self: center;
  width: min(80%, 72rem);
  padding: clamp(2rem, 5vw, 4rem);
  background: #10251c;
  color: #f9f8f6;
  box-sizing: border-box;
  overflow: clip;
}

.contact-page-form .inner-kicker {
  color: #c5a880;
}

.contact-page-form h2 {
  color: #f9f8f6;
}

.contact-page-form .lfy-contact-form {
  margin-top: clamp(1.6rem, 4vw, 2.8rem);
  width: 100%;
  max-width: 100%;
}

.lfy-amelia-booking {
  min-height: clamp(28rem, 48vw, 44rem);
  background: transparent;
}

#book-treatment .contact-panel {
  background: transparent !important;
  color: #f9f8f6;
  border: 1px solid rgba(249, 248, 246, 0.16);
  box-shadow: none;
  padding: clamp(1.75rem, 4vw, 3rem);
}

#book-treatment .contact-panel .contact-label {
  color: #c5a880;
}

#book-treatment .contact-panel h3 {
  color: #f9f8f6 !important;
}

#book-treatment .contact-panel > p:not(.contact-label) {
  color: rgba(249, 248, 246, 0.78) !important;
}

.contact-page-form .wpcf7-form {
  display: grid;
  gap: clamp(1.05rem, 2vw, 1.45rem);
  width: 100%;
  max-width: 100%;
}

.contact-page-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
}

.contact-page-form .wpcf7-form label {
  display: grid;
  gap: 0.55rem;
  color: rgba(249, 248, 246, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page-form .wpcf7-form :where(input:not([type="submit"]), textarea, select) {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(249, 248, 246, 0.2);
  border-radius: 0;
  background: rgba(249, 248, 246, 0.06);
  color: #f9f8f6;
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 220ms ease, background 220ms ease;
}

.contact-page-form .wpcf7-form :where(input:not([type="submit"]), textarea, select):focus {
  border-color: rgba(197, 168, 128, 0.92);
  background: rgba(249, 248, 246, 0.1);
}

.contact-page-form .wpcf7-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-page-form .wpcf7-submit {
  width: auto;
  justify-self: start;
  min-height: 0;
  border: 1px solid #c5a880;
  border-radius: 999px;
  background: #c5a880;
  color: #10251c;
  padding: clamp(14px, 1.2vw, 17px) clamp(24px, 3vw, 45px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.contact-page-form .wpcf7-submit:hover {
  transform: translateY(-1px);
  background: #f9f8f6;
}

@media (max-width: 1023px) {
  .about-story,
  .about-gallery__heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-gallery__item,
  .about-gallery__item--1,
  .about-gallery__item--2,
  .about-gallery__item--3 {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .contact-page-form {
    width: 100%;
    padding: clamp(1.5rem, 6vw, 2.5rem);
  }
}

@media (max-width: 640px) {
  :root {
    --lfy-type-h1-home: clamp(2.15rem, 12vw, 4.2rem);
    --lfy-type-h1-page: clamp(2.4rem, 13vw, 4.4rem);
    --lfy-type-h2: clamp(2.35rem, 11vw, 4.35rem);
    --lfy-type-h3: clamp(1.75rem, 8vw, 2.7rem);
  }

  .inner-hero {
    min-height: 92svh;
  }

  .inner-hero__title {
    max-width: 12ch;
  }

  .inner-hero__actions,
  .contact-page-form .wpcf7-submit {
    width: 100%;
  }

  .inner-hero__actions .services-button {
    width: min(100%, 21rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lfy-inner-page :where([data-inner-reveal], [data-about-gallery-card], .inner-hero__title .char) {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}
