/* ============================================================
   LORENA DE LEON — Style V7 (Clean Refresh)
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --black:       #080808;
  --white:       #f5f5f5;
  --oxblood:     #a20c18;
  --gold:        #c9a84c;
  --slate:       #9a9a9a;
  --nav-h:       9.5rem;
  --h1-family:   'Ballet', serif;
  --h1-weight:   400;
  --h1-size:     clamp(3rem, 8vw, 6rem);
  --h2-family:   'Inconsolata', monospace;
  --h2-weight:   300;
  --h2-size:     clamp(1.15rem, 2.8vw, 1.7rem);
  --body-family: 'Inconsolata', monospace;
  --body-weight: 300;
  --body-size:   clamp(0.95rem, 1.4vw, 1.1rem);
  --transition:  0.35s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body-family);
  font-weight: var(--body-weight);
  font-size:   var(--body-size);
  color:       var(--white);
  background:  var(--black);
  overflow-x:  hidden;
  -webkit-font-smoothing: antialiased;
  border: 3px solid var(--oxblood);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Font Faces ────────────────────────────────────────────── */
@font-face {
  font-family: 'Ballet';
  src: url('../fonts/Ballet-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inconsolata';
  src: url('../fonts/Inconsolata-Regular.ttf') format('truetype');
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
}

/* ── Base Headings ──────────────────────────────────────────── */
h1 {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: var(--h1-size);
  text-align: center;
}
h2 {
  font-family: var(--h2-family);
  font-weight: var(--h2-weight);
  font-size: var(--h2-size);
  text-align: center;
}

/* ============================================================
   AGE GATE — Full-screen overlay with animated gold border
   ============================================================ */
/* ── AGE GATE ──────────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Semi-transparent backdrop — site visible behind */
.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  z-index: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Modal card — compact, ~25% smaller than reference */
.age-gate-modal {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 370px;
  padding: 2rem 2.2rem 1.6rem;
  background: rgba(8, 8, 8, 0.92);
  text-align: center;
}

/* Animated gold border frame — same technique as btn-enter / btn-reserve */
.age-gate-border-anim {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.age-gate-border-anim::before,
.age-gate-border-anim::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(201, 168, 76, 0.7);
  z-index: 4;
  pointer-events: none;
}
.age-gate-border-anim::before {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotTop 6s linear infinite;
}
.age-gate-border-anim::after {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotBottom 6s linear infinite;
  animation-delay: 3s;
}

/* Content inside modal */
.age-gate-content {
  position: relative;
  z-index: 5;
}

/* Script brand name — like "The Collection" in reference */
.age-gate-script {
  font-family: 'Ballet', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

/* Main title — italic, like "EMG Template Collection" */

/* Gold divider */
.age-gate-divider {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  max-height: 12px;
  margin: 0 auto 1.2rem;
  opacity: 0.9;
  object-fit: fill;
}

/* Statement text */
.age-gate-statement {
  font-family: 'Inconsolata', monospace;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* "IDENTITY VERIFIED" — small, spaced caps, like reference */
.age-gate-verified {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

/* Buttons — side by side like reference screenshot */
.age-gate-buttons {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 1rem;
}
.btn-age-enter {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(162, 12, 24, 0.35);
  border: 1px solid var(--gold);
  padding: 0.6em 1.4em;
  cursor: pointer;
  position: relative;
  flex: 1;
  max-width: 170px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-age-enter:hover {
  background: var(--oxblood);
  color: var(--white);
  box-shadow: 0 0 18px rgba(162, 12, 24, 0.4);
}
.btn-age-exit {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.6em 1.4em;
  cursor: pointer;
  position: relative;
  flex: 1;
  max-width: 170px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-age-exit:hover {
  border-color: var(--gold);
  color: var(--white);
}

/* Disclaimer */
.age-gate-disclaimer {
  font-family: 'Inconsolata', monospace;
  font-weight: 300;
  font-size: 0.6rem;
  color: rgba(154, 154, 154, 0.5);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* When age gate is visible, lock body scroll */
body.age-gate-active {
  overflow: hidden !important;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 2rem 0.9rem;
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 0.6s ease, background 0.6s ease,
              backdrop-filter 0.6s ease, -webkit-backdrop-filter 0.6s ease;
}
.site-header.nav-hidden {
  opacity: 0;
  pointer-events: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.header-logo-img {
  cursor: pointer;
  height: 4.4rem;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.nav-links a {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -8px; right: -2px;
  width: 10px; height: 10px;
  background-image: url("../images/gold-star-bullet.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.2s ease 0.25s;
  animation: spinStar 4s linear infinite;
  pointer-events: none;
}
.nav-links a:hover::before,
.nav-links a.active::before { opacity: 1; }

/* Reserve button */
.btn-reserve {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1px solid var(--oxblood);
  padding: 0.5em 1.8em;
  position: relative;
  background: none;
  transition: background var(--transition), color var(--transition);
  outline: none;
}
.btn-reserve:focus,
.btn-reserve:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
/* Animated gold border — same effect as ENTER button */
.btn-reserve::before,
.btn-reserve::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(201, 168, 76, 0.6);
  z-index: 2;
  pointer-events: none;
}
.btn-reserve::before {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotTop 6s linear infinite;
}
.btn-reserve::after {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotBottom 6s linear infinite;
  animation-delay: 3s;
}
/* Fallback for browsers without offset-path: animated gold gradient border */
@supports not (offset-path: rect(0 0 0 0)) {
  .btn-reserve::before,
  .btn-reserve::after,
  .btn-enter::before,
  .btn-enter::after,
  .nav-mobile-overlay::before,
  .nav-mobile-overlay::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
  .btn-reserve::before,
  .btn-enter::before,
  .nav-mobile-overlay::before {
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%) no-repeat;
    background-size: 200% 2px;
    top: 0; left: 0; height: 2px; width: 100%;
    animation: goldLineH 3s linear infinite;
  }
  .btn-reserve::after,
  .btn-enter::after,
  .nav-mobile-overlay::after {
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%) no-repeat;
    background-size: 200% 2px;
    bottom: 0; left: 0; height: 2px; width: 100%;
    animation: goldLineH 3s linear infinite reverse;
  }
}
.btn-reserve:hover {
  background: var(--oxblood);
  color: var(--white);
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--oxblood);
  overflow: hidden;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  font-family: 'Inconsolata', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  transition: color var(--transition);
  position: relative;
}
.nav-mobile-overlay a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-mobile-overlay a:hover::after { width: 100%; }
.nav-mobile-overlay a:hover { color: var(--gold); }
.nav-mobile-overlay a::before {
  content: '';
  position: absolute;
  bottom: -8px; right: -2px;
  width: 10px; height: 10px;
  background-image: url("../images/gold-star-bullet.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease 0.25s;
  animation: spinStar 4s linear infinite;
  pointer-events: none;
}
.nav-mobile-overlay a:hover::before { opacity: 1; }

/* Disabled nav items — visible but non-navigating */
.nav-disabled {
  cursor: default !important;
  pointer-events: none;
  opacity: 0.5;
}
.nav-links .nav-disabled:hover {
  color: var(--oxblood);
}
.nav-mobile-overlay .nav-disabled:hover {
  color: var(--oxblood);
}
.nav-mobile-overlay .nav-disabled::after {
  display: none;
}
.nav-mobile-overlay .nav-disabled::before {
  display: none;
}
.footer-nav .nav-disabled:hover {
  color: var(--oxblood);
}
.btn-reserve.nav-disabled:hover {
  color: var(--oxblood);
  background: none;
}

/* Animated gold border on mobile overlay */
.nav-mobile-overlay::before,
.nav-mobile-overlay::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(201, 168, 76, 0.6);
  z-index: 1000;
  pointer-events: none;
}
.nav-mobile-overlay::before {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotTop 6s linear infinite;
}
.nav-mobile-overlay::after {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotBottom 6s linear infinite;
  animation-delay: 3s;
}

/* ============================================================
   HERO SLIDER (Swiper) — Full-viewport auto-advance
   Cross-fade, 2.4s, infinite loop, no black gap
   ============================================================ */

#page-welcome {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background: var(--black);
  padding-top: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  filter: contrast(1.04) saturate(1.08);
}
.hero-slide-bg.img-portrait-top {
  object-position: center top;
}

/* Gradient vignette */
.hero-slide-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.65) 0%, rgba(8,8,8,0.25) 8%, transparent 18%, transparent 85%, rgba(8,8,8,0.4) 100%),
    linear-gradient(to right,  rgba(8,8,8,0.25) 0%, transparent 6%, transparent 94%, rgba(8,8,8,0.25) 100%);
}

/* Logo overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 2;
}

.slide-intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  opacity: 1;
}
.slide-intro-logo {
  width: auto;
  height: 16.1rem;
}

/* ENTER button inside carousel slides — matches intro section button */
/* Logo image has visual center ~6% right of geometric center (cursive left-heavy).
   Shift button/badge left by the same offset so they align with the visual center. */
.slide-enter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.enter-ter-badge {
  text-align: center;
}
.enter-ter-badge a {
  display: inline-block;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.enter-ter-badge a:hover {
  opacity: 1;
}
.enter-ter-badge img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* 3-panel vignette overlay */
.hero-3panel-overlay {
  background: radial-gradient(
    ellipse 40% 35% at 50% 50%,
    rgba(8, 8, 8, 0.45) 0%,
    rgba(8, 8, 8, 0.3) 40%,
    transparent 70%
  );
}

/* 3-panel image grid */
.hero-3panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  width: 100%;
  height: 100%;
}
.hero-3panel-cell {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.hero-3panel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-3panel-cell img.img-portrait-top {
  object-position: center top;
}

@keyframes panelReveal {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.hero-3panel-cell.panel-animate {
  animation: panelReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Slider controls: arrows + dots */
.hero-slider-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-slider-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  background: rgba(8, 8, 8, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
  -webkit-user-select: none;
  user-select: none;
}
.hero-slider-arrow:hover {
  background: rgba(139, 26, 43, 0.6);
  border-color: var(--oxblood);
}

/* Swiper pagination — inline in flex row */
.hero-slider-dots.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none !important;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease;
}
.swiper-pagination-bullet-active {
  background: var(--oxblood) !important;
  border-color: var(--oxblood) !important;
  transform: scale(1.3);
}
.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================================
   PAGES (SPA)
   ============================================================ */
.page { display: none; }
.page.active { display: block; padding-top: var(--nav-h); }

/* ============================================================
   RESERVE MODAL
   ============================================================ */

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--oxblood);
  color: var(--white);
  padding: 0.7em 1em;
  font-family: 'Inconsolata', monospace;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: var(--oxblood);
}
.reserve-form textarea { min-height: 80px; resize: vertical; }
.reserve-form select option { background: #111; }

/* ── Form Success / Error Messages ─────────────────── */
@keyframes formMsgIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Screening Section ─────────────────────────────── */

/* ── Date Input Styling ─────────────────────────────── */

/* ════════════════════════════════════════════════════
   THANK YOU POPUP — mirrors age gate styling
   ════════════════════════════════════════════════════ */
.thankyou-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.thankyou-popup.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.thankyou-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  z-index: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.thankyou-modal {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 400px;
  padding: 2rem 2.2rem 1.6rem;
  background: rgba(8, 8, 8, 0.92);
  text-align: center;
}
.thankyou-border-anim {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.thankyou-border-anim::before,
.thankyou-border-anim::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(201, 168, 76, 0.7);
  z-index: 4;
  pointer-events: none;
}
.thankyou-border-anim::before {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotTop 6s linear infinite;
}
.thankyou-border-anim::after {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotBottom 6s linear infinite;
  animation-delay: 3s;
}
.thankyou-content {
  position: relative;
  z-index: 5;
}
.thankyou-script {
  font-family: 'Ballet', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.thankyou-divider {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  max-height: 12px;
  margin: 0 auto 1.2rem;
  opacity: 0.9;
  object-fit: fill;
}
.thankyou-heading {
  font-family: 'Ballet', serif;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.thankyou-body {
  font-family: 'Inconsolata', monospace;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.thankyou-signature {
  font-family: 'Ballet', serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.thankyou-verified {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}
.thankyou-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.btn-thankyou-close {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(162, 12, 24, 0.35);
  border: 1px solid var(--gold);
  padding: 0.6em 2.4em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-thankyou-close:hover {
  background: var(--oxblood);
  color: var(--white);
  box-shadow: 0 0 18px rgba(162, 12, 24, 0.4);
}
.thankyou-disclaimer {
  font-family: 'Inconsolata', monospace;
  font-weight: 300;
  font-size: 0.6rem;
  color: rgba(154, 154, 154, 0.5);
  letter-spacing: 0.03em;
  line-height: 1.5;
}
body.thankyou-active {
  overflow: hidden !important;
}


/* Hide number input spinner arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}


/* ============================================================
   GALLERY PAGE
   Masonry grid + lightbox + load more
   ============================================================ */

.gallery-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
/* Title + Divider wrapper — sizes to H1 text width so divider matches exactly */
.gallery-title-group {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  text-align: center;
}
.gallery-title {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: var(--h1-size);
  color: var(--oxblood);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
.gallery-header .gold-divider.gallery-divider {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 18px;
  margin: 0.4rem 0 0;
  opacity: 0.9;
  transform: scaleX(1);
  object-fit: fill;
}
.gallery-quote {
  font-family: var(--h2-family);
  font-weight: 300;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.7;
  font-style: italic;
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: center;
}

/* Masonry Grid — oxblood background container */
.gallery-grid {
  column-count: 3;
  column-gap: 1.2rem;
  background-color: #a20c18;
  padding: 1.2rem;
  border-radius: 12px;
}

/* Gallery Item */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--transition), opacity 0.8s ease;
  background-color: #0a0a0a;
  opacity: 0;
  transform: translateY(30px);
  /* NO fixed aspect-ratio — let images show naturally without cropping faces */
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(162, 12, 24, 0.25);
}

/* Tall variant — no special aspect ratio either */

/* Image — contain to show full image, no face cropping */
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Overlay on hover */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.7) 0%,
    rgba(162, 12, 24, 0.15) 40%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 12px;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Hidden items (for Load More) */
.gallery-item--hidden {
  display: none;
}
.gallery-item--reveal {
  display: block;
  animation: galleryFadeIn 0.6s ease forwards;
}
@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-reveal animation — opacity/transform set in main .gallery-item above */

.gallery-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Override for revealed hidden items that get revealed by load-more */
.gallery-item--reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Load More Button */
.gallery-load-more {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 2rem;
}
.btn-load-more {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oxblood);
  background: none;
  border: 1px solid var(--oxblood);
  padding: 0.75em 2.5em;
  cursor: pointer;
  position: relative;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
}
.btn-load-more:hover {
  background: var(--oxblood);
  color: var(--white);
}
.btn-load-more.loading {
  opacity: 0.5;
  pointer-events: none;
}
.gallery-load-more--hidden {
  display: none;
}

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gallery-lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: color var(--transition), transform var(--transition);
  line-height: 1;
}
.lightbox-close:hover {
  color: var(--oxblood);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(162, 12, 24, 0.5);
  color: var(--oxblood);
  font-size: 2.5rem;
  width: 50px;
  height: 80px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border-radius: 4px;
  right: 1.5rem;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--oxblood);
  color: var(--white);
  border-color: var(--oxblood);
}

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(162, 12, 24, 0.2);
  animation: lightboxFadeIn 0.3s ease;
}
@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--slate);
  text-transform: uppercase;
}



   ============================================================ */
/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 2rem 0.9rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.footer-brand img {
  cursor: pointer;
}
.footer-brand img {
  height: 5.28rem;
  width: auto;
}
.footer-menu-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-nav a {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  transition: color var(--transition);
  position: relative;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.footer-nav a:hover::after { width: 100%; }
.footer-nav a:hover { color: var(--gold); }
.footer-nav a::before {
  content: '';
  position: absolute;
  bottom: -8px; right: -2px;
  width: 10px; height: 10px;
  background-image: url("../images/gold-star-bullet.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease 0.25s;
  animation: spinStar 4s linear infinite;
  pointer-events: none;
}
.footer-nav a:hover::before { opacity: 1; }
/* Hamburger — hidden on desktop, shown on mobile + tablet portrait */
.footer-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.footer-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--oxblood);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.footer-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.footer-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Footer badges — equal-scale verification badges */
.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 0.8rem 0 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 0.3rem;
}
.footer-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
  opacity: 0.85;
}
.footer-badge-link:hover {
  opacity: 1;
}
.footer-badge {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-credit {
  font-size: 0.85rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-align: center;
}
.footer-credit a {
  color: #ffffff;
}
.footer-credit-sep {
  display: none;
}

/* ============================================================
   WELCOME INTRO — Two-column layout (visual left, content right)
   Layering (bottom→top): gold shimmer video → dark overlay → columns → text
   ============================================================ */
.welcome-intro-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.welcome-intro-outer.revealed {
  opacity: 1;
}

/* Gold shimmer video — bottom layer, full width */
.shimmer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Dark overlay to tone down shimmer brightness */
.shimmer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.70);
  z-index: 2;
  pointer-events: none;
}

.welcome-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 0;
  position: relative;
  z-index: 3;
}

/* Visual column — left side (hero image) */
.welcome-intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(8, 8, 8, 0.72);
  overflow: hidden;
  min-height: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  /* Split-column reveal animation — slides in from left */
  opacity: 0;
  transform: translateX(-120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-intro-outer.revealed .welcome-intro-visual {
  opacity: 1;
  transform: translateX(0);
}

/* Inner wrapper carries the subtle living-flower animation */
.intro-visual-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: flowerSway 8s ease-in-out infinite;
}

@keyframes flowerSway {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%      { transform: rotate(0.4deg) scale(1.008); }
  50%      { transform: rotate(0deg) scale(1.015); }
  75%      { transform: rotate(-0.4deg) scale(1.008); }
}

.intro-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Content column — right side */
.welcome-intro-content {
  padding: 3rem 3rem;
  background: rgba(8, 8, 8, 0.72);
  position: relative;
  z-index: 4;
  /* Split-column reveal animation — slides in from right */
  opacity: 0;
  transform: translateX(120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-intro-outer.revealed .welcome-intro-content {
  opacity: 1;
  transform: translateX(0);
}

.intro-heading {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--oxblood);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Gold divider under H1 Welcome */
.gold-divider {
  display: block;
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: -0.2rem auto 1.2rem;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 1.5s ease 0.5s, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.welcome-intro-outer.revealed .gold-divider {
  opacity: 0.9;
  transform: scaleX(1);
}

/* H2 subheading in Welcome section */
.intro-subheading {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 1.6rem 0 1.2rem;
  line-height: 1.45;
}

.intro-body {
  font-family: var(--body-family);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}
.intro-list li {
  font-family: var(--body-family);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  color: var(--white);
  padding: 0.35rem 0 0.35rem 1.8rem;
  position: relative;
  line-height: 1.6;
}
.intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  background-image: url("../images/gold-star-bullet.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: spinStar 4s linear infinite;
}
.intro-list li strong {
  color: var(--gold);
  font-weight: 600;
}

@keyframes spinStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ENTER button (matches RESERVE style + animated gold border) */
/* Same visual-center offset as carousel slides */
.intro-enter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  position: relative;
  left: calc(-6.2% - 10px);
}
.btn-enter {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1px solid var(--oxblood);
  padding: 0.5em 1.8em;
  position: relative;
  background: var(--black);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-enter::before,
.btn-enter::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(201, 168, 76, 0.6);
  z-index: 2;
  pointer-events: none;
}
.btn-enter::before {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotTop 6s linear infinite;
}
.btn-enter::after {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotBottom 6s linear infinite;
  animation-delay: 3s;
}

@keyframes goldDotTop {
  0%    { offset-distance: 0%; }
  100%  { offset-distance: 100%; }
}
@keyframes goldDotBottom {
  0%    { offset-distance: 0%; }
  100%  { offset-distance: 100%; }
}

.btn-enter:hover {
  background: var(--oxblood);
  color: var(--white);
}

/* Cinematic Letter-by-Letter Heading Reveal */
.intro-heading .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-intro-outer.revealed .intro-heading .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   ABOUT ME — Hero Section (content left, image right)
   Split column reveal — identical to Welcome intro
   ============================================================ */

/* Outer wrapper: carries .revealed class for split reveal */
.about-hero-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.about-hero-outer.revealed {
  opacity: 1;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: center;
  background: var(--black);
}
.about-hero-content {
  padding: 4rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-hero-h3 {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.about-hero-h1 {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--oxblood);
  margin: 0 0 1.2rem;
  line-height: 1.1;
}
.about-hero-text {
  font-family: var(--h2-family);
  font-weight: var(--h2-weight);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--white);
  max-width: 420px;
  margin: 0 auto;
}
.about-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.about-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* --- Split Column Reveal Animation --- */
.about-hero-col-left {
  opacity: 0;
  transform: translateX(-120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-hero-outer.revealed .about-hero-col-left {
  opacity: 1;
  transform: translateX(0);
}

.about-hero-col-right {
  opacity: 0;
  transform: translateX(120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-hero-outer.revealed .about-hero-col-right {
  opacity: 1;
  transform: translateX(0);
}

/* Letter-by-letter heading reveal (same as Welcome) */
.about-heading .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-hero-outer.revealed .about-heading .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Gold divider under H1 (same as Welcome) */
.about-hero-outer .gold-divider {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 1.5s ease 0.5s, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.about-hero-outer.revealed .gold-divider {
  opacity: 0.9;
  transform: scaleX(1);
}

/* Gold divider in video section — visible when section revealed */
.about-video-outer .gold-divider {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 1.5s ease 0.5s, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.about-video-outer.revealed .gold-divider {
  opacity: 0.9;
  transform: scaleX(1);
}

/* ============================================================
   RATES — Hero Split Column Reveal
   Image LEFT, Content RIGHT (flipped from About Me)
   ============================================================ */
.rates-hero-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.rates-hero-outer.revealed {
  opacity: 1;
}

.rates-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 70vh;
  align-items: stretch;
  background: var(--black);
}

.rates-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.rates-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.rates-hero-content {
  padding: 4rem 4rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rates-hero-h1 {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--oxblood);
  margin: 0 0 1.2rem;
  line-height: 1.1;
}

.rates-hero-text {
  font-family: var(--h2-family);
  font-weight: var(--h2-weight);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--white);
  max-width: 420px;
  margin: 0 auto;
}

/* Scroll to Appreciation indicator */
.scroll-to-appreciation {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
.scroll-label {
  font-family: 'Inconsolata', monospace;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
  transition: color var(--transition);
}
.scroll-to-appreciation:hover .scroll-label {
  color: var(--gold);
}
.scroll-arrow {
  position: relative;
  width: 28px;
  height: 42px;
}
.scroll-arrow-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--oxblood) 0%, var(--gold) 50%, transparent 100%);
  transform: translateX(-50%);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
.scroll-arrow-chevron {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollChevronBounce 2s ease-in-out infinite;
}

@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes scrollChevronBounce {
  0%, 100% { transform: translateX(-50%) rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) rotate(45deg) translateY(4px); opacity: 1; }
}

/* Hover state — arrow brightens */
.scroll-to-appreciation:hover .scroll-arrow-line {
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold) 60%, transparent 100%);
  animation: none;
  opacity: 1;
}
.scroll-to-appreciation:hover .scroll-arrow-chevron {
  border-color: var(--oxblood);
  animation: none;
  opacity: 1;
}

/* --- Split Column Reveal Animation --- */
.rates-hero-col-left {
  opacity: 0;
  transform: translateX(-120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rates-hero-outer.revealed .rates-hero-col-left {
  opacity: 1;
  transform: translateX(0);
}

.rates-hero-col-right {
  opacity: 0;
  transform: translateX(120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rates-hero-outer.revealed .rates-hero-col-right {
  opacity: 1;
  transform: translateX(0);
}

/* Letter-by-letter heading reveal */
.rates-heading .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.rates-hero-outer.revealed .rates-heading .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Gold divider under H1 */
.rates-hero-outer .gold-divider {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 1.5s ease 0.5s, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.rates-hero-outer.revealed .gold-divider {
  opacity: 0.9;
  transform: scaleX(1);
}

/* --- Gold shimmer video behind content column --- */
.rates-shimmer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}
.rates-shimmer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.55) 0%,
    rgba(8, 8, 8, 0.40) 50%,
    rgba(8, 8, 8, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.rates-hero-content-inner {
  position: relative;
  z-index: 2;
}

/* ============================================================
   ABOUT ME — Blue Dress Video Section
   2-column layout with slow upward reveal
   ============================================================ */
.about-video-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 6rem 0;
  background: var(--black);
}
.about-video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  /* Slow upward reveal */
  opacity: 0;
  transform: translateY(80px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-video-outer.revealed .about-video-section {
  opacity: 1;
  transform: translateY(0);
}

.about-video-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-video-text {
  padding: 3rem 3rem 3rem 4rem;
  text-align: center;
}
.about-video-heading {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--oxblood);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.about-video-body {
  font-family: var(--body-family);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-video-h3 {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.6rem 0 1.2rem;
  line-height: 1.45;
}

.about-video-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 4rem 3rem 3rem;
}
.about-video-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.about-blue-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   ABOUT ME — Schedule an Engagement CTA
   ============================================================ */
.about-cta-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f0ece4;
  /* Subtle red top gradient over cream */
  background: linear-gradient(
    to bottom,
    rgba(107, 6, 6, 0.25) 0%,
    rgba(107, 6, 6, 0.08) 12%,
    #f0ece4 35%
  );
  /* Vegas skyline background image */
  background-image: url('../images/vegas-skyline.jpg?v=3');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Dark overlay on top of Vegas background to subdue it */
.about-cta-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.72) 0%,
    rgba(8, 8, 8, 0.68) 40%,
    rgba(8, 8, 8, 0.75) 100%
  );
  pointer-events: none;
}
.about-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 2rem 0;
  position: relative;
  z-index: 2;
  min-height: 35vh;
}

/* CTA Button — big, bold, gold-dot animated border */
.about-cta-btn-wrap {
  margin-bottom: 0;
}
.btn-schedule {
  font-family: 'Inconsolata', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 2px solid var(--oxblood);
  padding: 0.75em 1.9em;
  position: relative;
  background: rgba(8, 8, 8, 0.6);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-schedule::before,
.btn-schedule::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(201, 168, 76, 0.6);
  z-index: 2;
  pointer-events: none;
}
.btn-schedule::before {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotTop 6s linear infinite;
}
.btn-schedule::after {
  offset-path: rect(0 100% 100% 0 round 0px);
  animation: goldDotBottom 6s linear infinite;
  animation-delay: 3s;
}
.btn-schedule:hover {
  background: var(--oxblood);
  color: var(--white);
}

/* Ballet name "Lovely Lorena" — centered, clipped at 50% of text height at bottom of section */

/* ============================================================
   ABOUT ME — Dark Embers Background (CSS-only)
   Three layers of rising ember particles for depth & density
   ============================================================ */
.about-ember-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* Base: near-black with faint warm undertone */
  background: radial-gradient(
    ellipse 120% 80% at 50% 100%,
    rgba(120, 20, 10, 0.6) 0%,
    var(--black) 60%
  );
}

/* Ember particles — generated via box-shadow for zero DOM cost */
.about-ember-bg::before,
.about-ember-bg::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
}

.about-ember-bg::before {
  box-shadow:
    /* Row 1 — wide spread, small embers */
    -45vw 5vh 0 1px rgba(180, 50, 20, 0.65),
    -32vw 3vh 0 0 rgba(200, 80, 30, 0.52),
    -20vw 8vh 0 1px rgba(220, 100, 40, 0.45),
    -10vw 6vh 0 0 rgba(190, 70, 25, 0.58),
     2vw 12vh 0 1px rgba(180, 60, 25, 0.65),
     12vw 4vh 0 0 rgba(200, 90, 35, 0.52),
     22vw 9vh 0 1px rgba(170, 55, 20, 0.58),
     32vw 7vh 0 0 rgba(210, 85, 30, 0.45),
     42vw 14vh 0 1px rgba(160, 40, 15, 0.52),
     48vw 2vh 0 0 rgba(190, 65, 22, 0.65),
    /* Row 2 — mid-height */
    -40vw 25vh 0 0 rgba(150, 35, 10, 0.45),
    -28vw 32vh 0 1px rgba(190, 70, 30, 0.52),
    -15vw 28vh 0 0 rgba(210, 85, 35, 0.45),
    -5vw 35vh 0 1px rgba(170, 50, 20, 0.58),
     8vw 30vh 0 0 rgba(180, 60, 25, 0.38),
     18vw 38vh 0 1px rgba(200, 75, 28, 0.52),
     28vw 33vh 0 0 rgba(160, 45, 18, 0.45),
     38vw 40vh 0 1px rgba(140, 30, 10, 0.38),
     46vw 28vh 0 0 rgba(170, 55, 20, 0.52),
    /* Row 3 — higher, fading */
    -35vw 55vh 0 0 rgba(140, 30, 10, 0.32),
    -22vw 60vh 0 1px rgba(160, 45, 15, 0.38),
    -8vw 58vh 0 0 rgba(150, 40, 12, 0.28),
     5vw 65vh 0 1px rgba(130, 25, 8, 0.25),
     15vw 55vh 0 0 rgba(160, 50, 18, 0.32),
     25vw 62vh 0 1px rgba(120, 20, 6, 0.22),
     35vw 58vh 0 0 rgba(140, 35, 10, 0.25),
     45vw 65vh 0 0 rgba(110, 15, 5, 0.15),
    /* Row 4 — highest, barely visible */
    -30vw 80vh 0 0 rgba(120, 20, 6, 0.15),
    -12vw 85vh 0 0 rgba(100, 12, 4, 0.1),
     10vw 78vh 0 0 rgba(110, 15, 5, 0.12),
     28vw 82vh 0 0 rgba(90, 10, 3, 0.08),
     40vw 88vh 0 0 rgba(80, 8, 2, 0.05);
  animation: embersRise 12s linear infinite;
}

.about-ember-bg::after {
  box-shadow:
    /* Second layer — offset timing for depth */
    -48vw 6vh 0 0 rgba(200, 90, 35, 0.52),
    -38vw 15vh 0 1px rgba(170, 55, 20, 0.58),
    -25vw 10vh 0 0 rgba(220, 110, 45, 0.45),
    -12vw 18vh 0 1px rgba(180, 65, 25, 0.65),
     3vw 8vh 0 0 rgba(160, 45, 18, 0.45),
     15vw 20vh 0 1px rgba(190, 75, 30, 0.52),
     25vw 5vh 0 0 rgba(210, 95, 38, 0.45),
     35vw 16vh 0 1px rgba(170, 60, 22, 0.58),
     45vw 12vh 0 0 rgba(150, 40, 15, 0.38),
    /* Mid layer */
    -42vw 42vh 0 0 rgba(150, 40, 15, 0.38),
    -30vw 48vh 0 1px rgba(170, 60, 22, 0.45),
    -18vw 45vh 0 0 rgba(140, 35, 12, 0.32),
    -5vw 52vh 0 1px rgba(160, 50, 18, 0.38),
     8vw 48vh 0 0 rgba(180, 65, 25, 0.45),
     20vw 55vh 0 1px rgba(130, 25, 8, 0.28),
     32vw 42vh 0 0 rgba(150, 40, 15, 0.35),
     44vw 50vh 0 0 rgba(120, 20, 6, 0.22),
    /* High layer */
    -35vw 70vh 0 0 rgba(120, 20, 6, 0.18),
    -20vw 75vh 0 1px rgba(100, 12, 4, 0.12),
    -8vw 72vh 0 0 rgba(110, 15, 5, 0.15),
     5vw 78vh 0 0 rgba(90, 10, 3, 0.1),
     18vw 70vh 0 0 rgba(100, 12, 4, 0.12),
     30vw 76vh 0 0 rgba(80, 8, 2, 0.08);
  animation: embersRise 16s linear infinite;
  animation-delay: -5s;
}

/* Third ember layer — uses a child div for extra density */
.about-ember-layer3 {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.about-ember-layer3::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
  box-shadow:
    -42vw 7vh 0 0 rgba(200, 80, 30, 0.45),
    -30vw 4vh 0 1px rgba(180, 60, 22, 0.52),
    -16vw 12vh 0 0 rgba(160, 50, 18, 0.38),
    -2vw 3vh 0 1px rgba(220, 100, 40, 0.58),
     10vw 15vh 0 0 rgba(190, 70, 28, 0.45),
     24vw 8vh 0 1px rgba(170, 55, 20, 0.52),
     36vw 18vh 0 0 rgba(200, 85, 32, 0.38),
     48vw 10vh 0 0 rgba(150, 40, 15, 0.45),
    -36vw 38vh 0 0 rgba(140, 35, 12, 0.32),
    -22vw 42vh 0 1px rgba(160, 50, 18, 0.38),
    -8vw 35vh 0 0 rgba(180, 65, 25, 0.35),
     6vw 45vh 0 1px rgba(130, 25, 8, 0.25),
     20vw 40vh 0 0 rgba(150, 40, 15, 0.32),
     34vw 48vh 0 0 rgba(120, 20, 6, 0.22),
     46vw 38vh 0 1px rgba(140, 30, 10, 0.28),
    -28vw 65vh 0 0 rgba(100, 12, 4, 0.12),
    -10vw 70vh 0 0 rgba(110, 15, 5, 0.1),
     12vw 62vh 0 0 rgba(90, 10, 3, 0.08),
     28vw 68vh 0 0 rgba(80, 8, 2, 0.05);
  animation: embersRise 14s linear infinite;
  animation-delay: -2s;
}

@keyframes embersRise {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-150vh);
    opacity: 0;
  }
}



/* ============================================================
   RATES — Bellagio Section: full-width bg, centered content box
   Sits between hero and section 2, on top of gold embers
   ============================================================ */
.rates-bell-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  margin-top: 4.2rem;
  /* Upward reveal */
  opacity: 0;
  transform: translateY(80px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rates-bell-outer.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Bellagio background image */
.rates-bell-bg {
  background-image: url('../images/rates-bellagio-bg.jpg?v=4');
  position: absolute;
  inset: 0;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark overlay on bg image — 50% */
.rates-bell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: 2;
  pointer-events: none;
}

/* Gold embers in this section — reuse the rates-s2 ember classes
   (they're already styled, just need to inherit from the parent)
   The ember-bg is positioned absolute at z-index 0, below everything */

/* Centered content wrapper */
.rates-bell-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

/* Content box with black transparent overlay */
.rates-bell-box {
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 3rem 3.5rem;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.08);
}

.rates-bell-text {
  font-family: var(--h2-family);
  font-weight: var(--h2-weight);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 2;
  color: var(--white);
  margin: 0;
  text-align: center;
}


/* ============================================================
   RATES — Section 2: 2-column layout with upward reveal
   Duplicates About Me Section 3 structure with gold embers
   ============================================================ */
.rates-s2-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 6rem 0;
  margin-top: 6rem;
  background: var(--black);
}
.rates-s2-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  /* Slow upward reveal */
  opacity: 0;
  transform: translateY(80px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rates-s2-outer.revealed .rates-s2-section {
  opacity: 1;
  transform: translateY(0);
}

.rates-s2-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rates-s2-text {
  padding: 3rem 5rem 3rem 5.5rem;
  text-align: center;
}
.rates-s2-heading {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--oxblood);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.rates-s2-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 4rem 3rem 3rem;
}
.rates-s2-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(201, 168, 76, 0.1);
}
.rates-s2-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   RATES MENU — Tokens of Appreciation price list
   ============================================================ */
.rates-menu {
  width: 100%;
  margin-top: 1.6rem;
}

/* Category label: INTERLUDES / EXTENSIONS / BESPOKE */
.rates-cat-label {
  font-family: var(--h2-family);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin: 0 0 0.55rem 0;
  padding-bottom: 0.25rem;
  text-align: left;
}

.rates-cat-ideal {
  font-family: var(--body-family);
  font-weight: var(--body-weight);
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin: 0 0 0.75rem 0;
  text-align: left;
}

/* List reset */
.rates-list {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
}

/* Each row: name ··· duration / price */
.rates-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.38rem 0;
}
.rates-row:last-child {
}

.rates-name {
  font-family: var(--body-family);
  font-size: 0.98rem;
  font-style: normal;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Dotted leader line */
.rates-dots {
  flex: 1;
  min-width: 1rem;
  border-bottom: 1px dotted rgba(162, 12, 24, 0.6);
  margin-bottom: 0.2em;
}

/* Right-side meta: duration + price */
.rates-meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-shrink: 0;
}

.rates-duration {
  font-family: var(--h2-family);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: rgba(201, 168, 76, 0.65);
  white-space: nowrap;
}

.rates-price {
  font-family: var(--h2-family);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
}

.rates-row--prose {
  align-items: flex-start;
}
.rates-price--prose {
  font-family: var(--body-family);
  font-weight: var(--body-weight);
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  letter-spacing: 0.04em;
  color: var(--slate);
  white-space: normal;
  line-height: 1.5;
}

/* Multi-tier row (Couples Indulgence) */
.rates-row--multiline {
  align-items: flex-start;
  flex-wrap: nowrap;
}
.rates-meta--multi {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.18rem;
}
.rates-tier {
  font-family: var(--h2-family);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: rgba(201, 168, 76, 0.65);
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
  white-space: nowrap;
}
.rates-tier-price {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--gold);
}

/* Thin gold HR between categories */
.rates-menu-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.4) 30%, rgba(201, 168, 76, 0.4) 70%, transparent);
  margin: 0.9rem 0 0.9rem 0;
}

/* Staggered fade-in on reveal */
.rates-s2-outer .rates-menu {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s ease 1.2s, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.2s;
}
.rates-s2-outer.revealed .rates-menu {
  opacity: 1;
  transform: translateY(0);
}

/* Schedule button under rates menu */
.rates-schedule-wrap {
  margin-top: 2rem;
  text-align: center;
}
.rates-s2-outer .rates-schedule-wrap {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.2s ease 2s, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 2s;
}
.rates-s2-outer.revealed .rates-schedule-wrap {
  opacity: 1;
  transform: translateY(0);
}

/* Gold divider in rates section 2 — shortened on desktop */
.rates-s2-outer .gold-divider {
  max-width: 45%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 1.5s ease 0.5s, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.rates-s2-outer.revealed .gold-divider {
  opacity: 0.9;
  transform: scaleX(1);
}

/* Letter-by-letter heading reveal */
.rates-s2-letter-heading .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.rates-s2-outer.revealed .rates-s2-letter-heading .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Mobile line break in heading — hidden on desktop, shown on mobile */

/* ============================================================
   RATES — Section 2: Gold Embers Background (CSS-only)
   Same structure as About Me embers but gold/amber palette
   ============================================================ */
.rates-s2-ember-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* Base: near-black with faint gold warm undertone */
  background: radial-gradient(
    ellipse 120% 80% at 50% 100%,
    rgba(160, 130, 40, 0.25) 0%,
    var(--black) 60%
  );
}

/* Gold ember particles — generated via box-shadow */
.rates-s2-ember-bg::before,
.rates-s2-ember-bg::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
}

.rates-s2-ember-bg::before {
  box-shadow:
    /* Row 1 — wide spread, small gold embers */
    -45vw 5vh 0 1px rgba(201, 168, 76, 0.55),
    -32vw 3vh 0 0 rgba(220, 185, 90, 0.45),
    -20vw 8vh 0 1px rgba(240, 200, 100, 0.38),
    -10vw 6vh 0 0 rgba(210, 175, 80, 0.50),
     2vw 12vh 0 1px rgba(190, 155, 65, 0.55),
     12vw 4vh 0 0 rgba(225, 190, 95, 0.45),
     22vw 9vh 0 1px rgba(180, 145, 60, 0.50),
     32vw 7vh 0 0 rgba(235, 195, 85, 0.38),
     42vw 14vh 0 1px rgba(170, 135, 50, 0.45),
     48vw 2vh 0 0 rgba(200, 165, 70, 0.55),
    /* Row 2 — mid-height */
    -40vw 25vh 0 0 rgba(170, 135, 50, 0.38),
    -28vw 32vh 0 1px rgba(210, 175, 80, 0.45),
    -15vw 28vh 0 0 rgba(230, 195, 90, 0.38),
    -5vw 35vh 0 1px rgba(185, 150, 65, 0.50),
     8vw 30vh 0 0 rgba(195, 160, 70, 0.32),
     18vw 38vh 0 1px rgba(215, 180, 85, 0.45),
     28vw 33vh 0 0 rgba(175, 140, 55, 0.38),
     38vw 40vh 0 1px rgba(155, 120, 40, 0.32),
     46vw 28vh 0 0 rgba(190, 155, 65, 0.45),
    /* Row 3 — higher, fading */
    -35vw 55vh 0 0 rgba(155, 120, 40, 0.28),
    -22vw 60vh 0 1px rgba(175, 140, 55, 0.32),
    -8vw 58vh 0 0 rgba(165, 130, 50, 0.22),
     5vw 65vh 0 1px rgba(145, 110, 35, 0.20),
     15vw 55vh 0 0 rgba(180, 145, 60, 0.28),
     25vw 62vh 0 1px rgba(135, 100, 30, 0.18),
     35vw 58vh 0 0 rgba(155, 120, 40, 0.22),
     45vw 65vh 0 0 rgba(125, 90, 25, 0.12),
    /* Row 4 — highest, barely visible */
    -30vw 80vh 0 0 rgba(125, 90, 25, 0.12),
    -12vw 85vh 0 0 rgba(105, 70, 18, 0.08),
     10vw 78vh 0 0 rgba(115, 80, 22, 0.10),
     28vw 82vh 0 0 rgba(95, 60, 15, 0.06),
     40vw 88vh 0 0 rgba(85, 50, 12, 0.04);
  animation: goldEmbersRise 12s linear infinite;
}

.rates-s2-ember-bg::after {
  box-shadow:
    /* Second layer — offset timing for depth */
    -48vw 6vh 0 0 rgba(225, 190, 95, 0.45),
    -38vw 15vh 0 1px rgba(185, 150, 65, 0.50),
    -25vw 10vh 0 0 rgba(245, 210, 110, 0.38),
    -12vw 18vh 0 1px rgba(200, 165, 75, 0.55),
     3vw 8vh 0 0 rgba(175, 140, 55, 0.38),
     15vw 20vh 0 1px rgba(215, 180, 90, 0.45),
     25vw 5vh 0 0 rgba(235, 200, 100, 0.38),
     35vw 16vh 0 1px rgba(190, 155, 70, 0.50),
     45vw 12vh 0 0 rgba(165, 130, 50, 0.32),
    /* Mid layer */
    -42vw 42vh 0 0 rgba(165, 130, 50, 0.32),
    -30vw 48vh 0 1px rgba(190, 155, 70, 0.38),
    -18vw 45vh 0 0 rgba(155, 120, 45, 0.28),
    -5vw 52vh 0 1px rgba(175, 140, 55, 0.32),
     8vw 48vh 0 0 rgba(200, 165, 80, 0.38),
     20vw 55vh 0 1px rgba(145, 110, 35, 0.22),
     32vw 42vh 0 0 rgba(165, 130, 50, 0.30),
     44vw 50vh 0 0 rgba(135, 100, 30, 0.18),
    /* High layer */
    -35vw 70vh 0 0 rgba(135, 100, 30, 0.15),
    -20vw 75vh 0 1px rgba(115, 80, 22, 0.10),
    -8vw 72vh 0 0 rgba(125, 90, 25, 0.12),
     5vw 78vh 0 0 rgba(105, 70, 18, 0.08),
     18vw 70vh 0 0 rgba(115, 80, 22, 0.10),
     30vw 76vh 0 0 rgba(95, 60, 15, 0.06);
  animation: goldEmbersRise 16s linear infinite;
  animation-delay: -5s;
}

/* Third gold ember layer — child div for extra density */
.rates-s2-ember-layer3 {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.rates-s2-ember-layer3::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
  box-shadow:
    -42vw 7vh 0 0 rgba(220, 185, 90, 0.38),
    -30vw 4vh 0 1px rgba(195, 160, 70, 0.45),
    -16vw 12vh 0 0 rgba(175, 140, 55, 0.32),
    -2vw 3vh 0 1px rgba(240, 200, 100, 0.50),
     10vw 15vh 0 0 rgba(210, 175, 80, 0.38),
     24vw 8vh 0 1px rgba(185, 150, 65, 0.45),
     36vw 18vh 0 0 rgba(225, 190, 90, 0.32),
     48vw 10vh 0 0 rgba(165, 130, 50, 0.38),
    -36vw 38vh 0 0 rgba(155, 120, 45, 0.28),
    -22vw 42vh 0 1px rgba(175, 140, 55, 0.32),
    -8vw 35vh 0 0 rgba(195, 160, 70, 0.30),
     6vw 45vh 0 1px rgba(145, 110, 35, 0.22),
     20vw 40vh 0 0 rgba(165, 130, 50, 0.28),
     34vw 48vh 0 0 rgba(135, 100, 30, 0.18),
     46vw 38vh 0 1px rgba(155, 120, 40, 0.22),
    -28vw 65vh 0 0 rgba(115, 80, 22, 0.10),
    -10vw 70vh 0 0 rgba(125, 90, 25, 0.08),
     12vw 62vh 0 0 rgba(105, 70, 18, 0.06),
     28vw 68vh 0 0 rgba(95, 60, 15, 0.04);
  animation: goldEmbersRise 14s linear infinite;
  animation-delay: -2s;
}

@keyframes goldEmbersRise {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-150vh);
    opacity: 0;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
/* ============================================================
   CONTACT PAGE — Hero (mirrors About Me)
   ============================================================ */
.contact-hero-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: var(--black);
}
.contact-hero-outer.revealed {
  opacity: 1;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: transparent;
}
.contact-hero-content {
  padding: 4rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.contact-hero-h3 {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.contact-hero-h1 {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--oxblood);
  margin: 0 0 1.2rem;
  line-height: 1.1;
}
.contact-hero-text {
  font-family: var(--h2-family);
  font-weight: var(--h2-weight);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--white);
  max-width: 420px;
  margin: 0 auto;
}

.contact-hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Left-edge gradient to blend beige background into black */
.contact-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, var(--black) 0%, var(--black) 20%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.5) 65%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Split Column Reveal Animation */
.contact-hero-col-left {
  opacity: 0;
  transform: translateX(-120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-hero-outer.revealed .contact-hero-col-left {
  opacity: 1;
  transform: translateX(0);
}
.contact-hero-col-right {
  opacity: 0;
  transform: translateX(120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-hero-outer.revealed .contact-hero-col-right {
  opacity: 1;
  transform: translateX(0);
}

/* Letter-by-letter heading reveal */
.contact-heading .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-hero-outer.revealed .contact-heading .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Gold divider */
.contact-hero-outer .gold-divider {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 1.5s ease 0.5s, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.contact-hero-outer.revealed .gold-divider {
  opacity: 0.9;
  transform: scaleX(1);
}

/* ============================================================
   CONTACT HERO — Gold Bokeh (floating gold dots)
   Scaled down for headshot — confined to left column, fewer particles
   ============================================================ */
.contact-bokeh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* Subtle gold glow at bottom — mirrors rates-s2-ember-bg */
  background: radial-gradient(
    ellipse 120% 60% at 50% 100%,
    rgba(160, 130, 40, 0.18) 0%,
    transparent 60%
  );
}

.contact-bokeh-bg::before,
.contact-bokeh-bg::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
}

.contact-bokeh-bg::before {
  box-shadow:
    /* Row 1 — sparse, low in the section */
    -22vw 5vh 0 1px rgba(201, 168, 76, 0.55),
    -14vw 3vh 0 0 rgba(220, 185, 90, 0.48),
     -4vw 8vh 0 1px rgba(240, 200, 100, 0.40),
      6vw 12vh 0 0 rgba(190, 155, 65, 0.55),
     16vw 4vh 0 1px rgba(225, 190, 95, 0.48),
     22vw 9vh 0 0 rgba(180, 145, 60, 0.50),
    /* Row 2 — mid-height */
    -20vw 25vh 0 1px rgba(170, 135, 50, 0.38),
    -10vw 32vh 0 0 rgba(210, 175, 80, 0.45),
      0vw 28vh 0 1px rgba(230, 195, 90, 0.35),
     10vw 35vh 0 0 rgba(185, 150, 65, 0.50),
     20vw 30vh 0 1px rgba(195, 160, 70, 0.38),
    /* Row 3 — higher, fading */
    -18vw 55vh 0 0 rgba(155, 120, 40, 0.25),
     -6vw 60vh 0 1px rgba(175, 140, 55, 0.32),
      8vw 58vh 0 0 rgba(165, 130, 50, 0.22),
     18vw 65vh 0 1px rgba(145, 110, 35, 0.18),
    /* Row 4 — highest, barely visible */
    -12vw 80vh 0 0 rgba(125, 90, 25, 0.10),
      5vw 85vh 0 0 rgba(105, 70, 18, 0.06),
     14vw 78vh 0 0 rgba(115, 80, 22, 0.08);
  animation: goldEmbersRise 14s linear infinite;
}

.contact-bokeh-bg::after {
  box-shadow:
    /* Second layer — offset timing for depth */
    -24vw 6vh 0 1px rgba(225, 190, 95, 0.48),
    -16vw 15vh 0 0 rgba(185, 150, 65, 0.55),
     -6vw 10vh 0 1px rgba(245, 210, 110, 0.40),
      4vw 18vh 0 0 rgba(200, 165, 75, 0.55),
     14vw 8vh 0 1px rgba(175, 140, 55, 0.40),
     24vw 20vh 0 0 rgba(215, 180, 90, 0.48),
    /* Mid layer */
    -18vw 42vh 0 1px rgba(165, 130, 50, 0.32),
     -8vw 48vh 0 0 rgba(190, 155, 70, 0.40),
      4vw 45vh 0 1px rgba(155, 120, 45, 0.28),
     14vw 52vh 0 0 rgba(175, 140, 55, 0.32),
     24vw 48vh 0 1px rgba(165, 130, 50, 0.28),
    /* High layer */
    -14vw 70vh 0 0 rgba(135, 100, 30, 0.15),
      0vw 75vh 0 0 rgba(115, 80, 22, 0.10),
     12vw 72vh 0 1px rgba(125, 90, 25, 0.08);
  animation: goldEmbersRise 18s linear infinite;
  animation-delay: -6s;
}

/* Third bokeh layer — child div for gentle extra depth */
.contact-bokeh-layer3 {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.contact-bokeh-layer3::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
  box-shadow:
    -20vw 7vh 0 0 rgba(220, 185, 90, 0.40),
    -12vw 4vh 0 1px rgba(195, 160, 70, 0.48),
     -2vw 12vh 0 0 rgba(175, 140, 55, 0.32),
      8vw 3vh 0 1px rgba(240, 200, 100, 0.55),
     18vw 15vh 0 0 rgba(210, 175, 80, 0.40),
     22vw 8vh 0 1px rgba(185, 150, 65, 0.48),
    -14vw 38vh 0 0 rgba(155, 120, 45, 0.25),
     -4vw 42vh 0 1px rgba(175, 140, 55, 0.32),
      6vw 35vh 0 0 rgba(195, 160, 70, 0.28),
     16vw 45vh 0 0 rgba(145, 110, 35, 0.18),
    -10vw 65vh 0 0 rgba(115, 80, 22, 0.10),
      8vw 70vh 0 0 rgba(105, 70, 18, 0.06);
  animation: goldEmbersRise 16s linear infinite;
  animation-delay: -3s;
}

/* z-index for hero columns merged into main declarations above */
.contact-form-outer {
  background: var(--black);
  padding: 4rem 2rem 6rem;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-form-section {
  text-align: center;
}
.contact-form-col-left {
  padding-right: 2rem;
}
.contact-form-col-right {
  padding-left: 2rem;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}
.contact-details {
  text-align: center;
  padding-top: 1rem;
}
.contact-details-label {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.contact-details-text {
  font-family: var(--body-family);
  font-size: var(--body-size);
  color: var(--white);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.contact-details-divider {
  width: 40px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
  margin: 0 auto 1.5rem;
}
.contact-video-wrap {
  margin: 1.5rem auto 0;
  max-width: 260px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.contact-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.contact-form-heading {
  font-family: var(--h1-family);
  font-weight: var(--h1-weight);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  color: var(--oxblood);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.contact-form {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
.contact-form-outer .gold-divider {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* --- Contact Form 2-Column Row Layout --- */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.form-field {
  display: flex;
  flex-direction: column;
}

/* Phone row with inline note */
.form-phone-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.form-phone-row input {
  flex: 1;
}
.form-note-inline {
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  white-space: nowrap;
}

/* Form note text (e.g. "I will not call") */
.form-note {
  display: block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

/* --- Dropdown oxblood theme --- */
.reserve-form select,
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-color: rgba(255,255,255,0.05) !important;
  background-image: none !important;
  color: rgba(255,255,255,0.72) !important;
  border: 1px solid var(--oxblood);
  border-radius: 0;
  color-scheme: dark;
}
.reserve-form select option,
.contact-form select option {
  background: #111 !important;
  color: rgba(255,255,255,0.82) !important;
  padding: 0.5em;
}
.reserve-form select option:hover,
.reserve-form select option:checked {
  background: var(--oxblood);
  color: var(--white);
}
/* Extra vertical spacing for contact form fields */
.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-bottom: 1.2rem;
}

/* Horizontal dropdown hover bar — oxblood (Firefox) */
.reserve-form select option:hover,
.reserve-form select option:focus {
  background: var(--oxblood);
  color: var(--white);
}

/* Rates notes list styling — v31 */
.rates-notes.intro-list {
  margin-top: 1.5rem;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  text-align: left;
}
.rates-notes.intro-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.72);
  font-family: 'Inconsolata', monospace;
  font-size: 0.82rem;
  line-height: 1.55;
}
.rates-notes.intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background-image: url("../images/gold-star-bullet.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: spinStar 4s linear infinite;
}

/* Remove focus outline from nav and footer links — v32 */
.nav-links a:focus,
.nav-links a:focus-visible,
.nav-mobile-overlay a:focus,
.nav-mobile-overlay a:focus-visible,
.footer-nav a:focus,
.footer-nav a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Remove white focus outline from all nav/footer elements — v33 */
a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
.nav-links a:focus,
.nav-links a:focus-visible,
.nav-mobile-overlay a:focus,
.nav-mobile-overlay a:focus-visible,
.nav-mobile-overlay button:focus,
.nav-mobile-overlay button:focus-visible,
.footer-nav a:focus,
.footer-nav a:focus-visible,
.footer-hamburger:focus,
.footer-hamburger:focus-visible,
.btn-reserve:focus,
.btn-reserve:focus-visible,
.btn-schedule:focus,
.btn-schedule:focus-visible,
.btn-enter:focus,
.btn-enter:focus-visible,
.btn-age-enter:focus,
.btn-age-enter:focus-visible,
.btn-age-exit:focus,
.btn-age-exit:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

/* Universal left-align for body text — v36 */
.intro-body,
.about-hero-text,
.about-video-body,
.contact-details-text,
.rates-notes.intro-list li {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Letter-by-letter H3 fade-in animation — matches H1 about-heading */
.about-hero-h3-letter .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-hero-outer.revealed .about-hero-h3-letter .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Letter-by-letter H3 fade-in animation — Contact page "Your Muse" */
.contact-hero-h3-letter .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-hero-outer.revealed .contact-hero-h3-letter .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}



/* Small SEO support headers */
.seo-small-header {
  font-family: var(--h2-family);
  font-weight: 300;
  font-size: clamp(0.88rem, 1.55vw, 1.06rem);
  line-height: 1.55;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.25rem 0 0.85rem;
}
.contact-hero-content .seo-small-header,
.about-hero-content .seo-small-header {
  max-width: 680px;
}
.welcome-intro-content .seo-small-header {
  margin-top: 1.1rem;
}
@media (max-width: 640px) {
  .seo-small-header {
    font-size: clamp(0.78rem, 3.4vw, 0.95rem);
    letter-spacing: 0.1em;
  }
}

/* ============================================================
   FAQ PAGE MODULE — Lorena De Leon branded styles
   ============================================================ */
.faq-page-outer {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
}
/* ── FAQ Hero — 2-column layout (mirrors About Me hero) ── */
.faq-hero-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.faq-hero-outer.revealed {
  opacity: 1;
}

.faq-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: center;
  background: var(--black);
}
.faq-hero-content {
  padding: 4rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.faq-hero-h3 {
  font-family: 'Inconsolata', monospace;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.faq-hero-h1 {
  font-family: 'Lustria', serif;
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--oxblood);
  margin: 0 0 1.2rem;
  line-height: 1.1;
}
.faq-hero-subtitle {
  display: block;
  font-family: var(--h2-family);
  font-weight: var(--h2-weight);
  font-size: clamp(1.02rem, 2.4vw, 1.45rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.faq-hero-text {
  font-family: var(--h2-family);
  font-weight: var(--h2-weight);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--white);
  max-width: 420px;
  margin: 0 auto;
}
.faq-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.faq-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* --- FAQ Split Column Reveal Animation --- */
.faq-hero-col-left {
  opacity: 0;
  transform: translateX(-120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-hero-outer.revealed .faq-hero-col-left {
  opacity: 1;
  transform: translateX(0);
}

.faq-hero-col-right {
  opacity: 0;
  transform: translateX(120px);
  will-change: opacity, transform;
  transition: opacity 4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-hero-outer.revealed .faq-hero-col-right {
  opacity: 1;
  transform: translateX(0);
}

/* Gold divider in FAQ hero */
.faq-hero-outer .gold-divider {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 1.5s ease 0.5s, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.faq-hero-outer.revealed .gold-divider {
  opacity: 0.9;
  transform: scaleX(1);
}
.faq-intro-strip-module {
  background: var(--oxblood);
  border-top: 1px solid rgba(201,168,76,0.24);
  border-bottom: 1px solid rgba(201,168,76,0.24);
  text-align: center;
  padding: clamp(1rem, 2.4vw, 1.35rem) 1.2rem;
}
.faq-intro-strip-module p {
  font-family: var(--body-family);
  color: var(--white);
  font-size: clamp(0.88rem, 1.55vw, 1.05rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.6;
}
.faq-sections-module {
  background:
    radial-gradient(circle at 15% 0%, rgba(162,12,24,0.12), transparent 32%),
    radial-gradient(circle at 90% 25%, rgba(201,168,76,0.07), transparent 28%),
    var(--black);
  padding: clamp(3.4rem, 7vw, 6rem) 0;
}
.faq-sections-inner-module {
  width: min(940px, 92vw);
  margin: 0 auto;
}
.faq-category-module {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.faq-category-header-module {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 1.2rem);
  margin-bottom: 1rem;
}
.faq-category-header-module .line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.28);
}
.faq-category-header-module h2 {
  font-family: var(--h2-family);
  font-weight: 300;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  font-size: clamp(0.85rem, 1.55vw, 1rem);
  line-height: 1.5;
}
.faq-accordion-list-module {
  border-top: 1px solid rgba(201,168,76,0.18);
}
.faq-accordion-item-module {
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.faq-accordion-btn-module {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1.3rem;
  align-items: center;
  text-align: left;
  padding: clamp(1.05rem, 2.8vw, 1.55rem) 0;
  font-family: var(--body-family);
}
.faq-accordion-btn-module .question {
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.55;
  letter-spacing: 0.025em;
  transition: color var(--transition);
}
.faq-accordion-btn-module:hover .question,
.faq-accordion-btn-module.open .question {
  color: var(--gold);
}
.faq-accordion-btn-module .toggle-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.faq-accordion-btn-module.open .toggle-icon {
  transform: rotate(45deg);
  color: var(--oxblood);
  border-color: var(--oxblood);
}
.faq-accordion-answer-module {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-accordion-answer-module p {
  font-family: var(--body-family);
  color: rgba(245,245,245,0.82);
  font-size: var(--body-size);
  line-height: 1.85;
  padding: 0 0 clamp(1.1rem, 2.8vw, 1.65rem) 0;
}
.faq-cta-module {
  position: relative;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.22);
  background: linear-gradient(145deg, rgba(162,12,24,0.14), rgba(8,8,8,0.72));
  padding: clamp(1.2rem, 2.5vw, 1.75rem) 1.25rem;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.faq-cta-module::before {
  content: none;
}
.faq-cta-module .eyebrow {
  position: relative;
  font-family: var(--body-family);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.7rem, 1.1vw, 0.8rem);
  margin-bottom: 0.35rem;
}
.faq-cta-module h3 {
  position: relative;
  font-family: var(--h1-family);
  font-size: clamp(1.65rem, 4.5vw, 2.8rem);
  font-weight: var(--h1-weight);
  line-height: 0.96;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.faq-cta-module h3 span { color: var(--gold); }
.faq-cta-module .divider {
  display: none;
}
.faq-cta-module .faq-cta-divider {
  position: relative;
  display: block;
  width: min(180px, 44vw);
  max-width: min(180px, 44vw);
  height: auto;
  margin: 0 auto 0.8rem;
  opacity: 1;
  transform: none;
}
.faq-cta-module .btn-schedule {
  position: relative;
  transform: scale(0.92);
  transform-origin: center;
}
@media (max-width: 640px) {
  .faq-category-header-module {
    flex-direction: column;
    gap: 0.65rem;
  }
  .faq-category-header-module .line {
    width: 100%;
    flex: none;
  }
  .faq-accordion-btn-module {
    align-items: flex-start;
  }
  .faq-accordion-btn-module .toggle-icon {
    width: 28px;
    height: 28px;
    font-size: 1.15rem;
    margin-top: 0.12rem;
  }
  .faq-cta-module {
    width: min(92vw, 720px);
  }
}

