:root {
  --bg: #f8efe9;
  --bg-warm: #fbf3ee;
  --surface: #ffffff;
  --surface-2: #fbf3ee;
  --border: #ecd9d0;
  --border-strong: #d8b8ac;
  --text: #2a1a20;
  --text-soft: #76525c;
  --text-faint: #b9a098;
  --accent: #ff2d87;
  --accent-bright: #ff5aa4;
  --accent-soft: rgba(255, 45, 135, 0.12);
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: var(--accent-bright);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 1px 6px;
  border-radius: 2px;
}

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 239, 233, 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--text);
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

.brand.no-logo {
  visibility: hidden;
  width: 36px;
  height: 36px;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- Layout ---------- */

main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.hero {
  padding-top: 72px;
  padding-bottom: 80px;
  text-align: center;
  border-bottom: none;
}

/* ---------- Full-bleed photo ---------- */

.photo-bleed {
  width: 100%;
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--surface-2) 0%,
    var(--accent-soft) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-bleed.empty::after {
  content: "Photo \2014 drop into images/";
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
}

@media (max-width: 700px) {
  .photo-bleed {
    aspect-ratio: 4 / 5;
  }
}

/* ---------- Rates block (horizontal split, ghost button) ---------- */

.rates-block {
  padding: 56px 32px;
  background: rgba(255, 45, 135, 0.06);
  border-top: 1px solid rgba(255, 45, 135, 0.18);
  border-bottom: 1px solid rgba(255, 45, 135, 0.18);
  color: var(--text);
}

.rates-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: left;
  max-width: 720px;
  padding: 0;
}

.rates-block-text h2 {
  margin: 0 0 6px;
  font-size: clamp(30px, 4vw, 40px);
  color: var(--text);
}

.rates-block-text p {
  margin: 0;
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.enter-btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.enter-btn-ghost:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .rates-block {
    padding: 44px 24px;
  }
  .rates-block .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .rates-block .enter-btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* ---------- Booking page top ---------- */

.booking-top {
  padding-top: 32px;
}

.booking-title {
  margin-top: 4px;
  margin-bottom: 12px;
}

/* ---------- Booking success state ---------- */

.booking-success {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 96px 24px;
}

.booking-success[hidden] {
  display: none;
}

.booking-success-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  filter: grayscale(0.55) contrast(1.04);
  z-index: 0;
}

.booking-success::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

.booking-success::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 5, 12, 0) 30%,
    rgba(20, 5, 12, 0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.booking-success-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 540px;
  color: #ffffff;
}

.booking-success-inner .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.booking-success-inner h1 {
  color: #ffffff;
  margin: 6px 0 18px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.booking-success-inner .lede {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 460px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.booking-success-inner .ornament {
  margin: 34px auto;
  color: #ffffff;
  opacity: 0.9;
}

.booking-success-inner .ornament span {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9) 50%,
    transparent
  );
}

.booking-success-inner h2 {
  color: #ffffff;
  margin: 0 0 12px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.booking-success-inner .success-note {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.success-card {
  margin: 38px auto 0;
  max-width: 500px;
  padding: 36px 40px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 64px -30px rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.success-card h2 {
  color: var(--text);
  margin: 0 0 10px;
  text-shadow: none;
  white-space: nowrap;
}

.success-card .success-note {
  color: var(--text-soft);
  margin: 0 0 24px;
  text-shadow: none;
}

.success-card .enter-btn {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.success-card .enter-btn:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  box-shadow: 0 14px 36px -16px rgba(255, 45, 135, 0.5);
}

@media (max-width: 800px) {
  .booking-success-photo {
    background-attachment: scroll;
  }
}

/* ---------- Form toggle (In Person / Online) ---------- */

.form-toggle {
  display: flex;
  width: fit-content;
  gap: 4px;
  padding: 4px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.booking-top .booking-title {
  text-align: center;
}

.booking-top .section-note {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.form-toggle a {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.form-toggle a:hover {
  color: var(--accent-bright);
  background: rgba(255, 255, 255, 0.5);
}

.form-toggle a.active {
  background: var(--accent);
  color: #ffffff;
}

.form-toggle a.active:hover {
  color: #ffffff;
}

/* ---------- Bio paragraphs + CTA ---------- */

.bio {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  max-width: 580px;
  margin: 24px auto 0;
}

.cta {
  text-align: center;
}

.cta .section-note {
  margin-left: auto;
  margin-right: auto;
}

.cta .enter-btn {
  margin-top: 12px;
}

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px;
}

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 9vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  color: var(--text);
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  color: var(--text);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 23px);
  line-height: 1.55;
  color: var(--text);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

.section-note {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 580px;
}

/* ---------- Ornament ---------- */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--accent);
  margin: 40px auto 0;
  font-size: 14px;
  opacity: 0.85;
}

.ornament span {
  display: block;
  height: 1px;
  width: 64px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 50%,
    transparent
  );
}

/* ---------- Rates ---------- */

.rate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.rate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 6px;
  border-bottom: 1px solid var(--border);
  margin: 0;
  gap: 16px;
}

.rate dt {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}

.rate dd {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* ---------- Form ---------- */

form {
  margin-top: 24px;
}

form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.group {
  padding: 0;
  margin: 0 0 48px;
}

.group > legend {
  display: block;
  width: 100%;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border);
}

/* Acknowledgment */
.ack {
  background: linear-gradient(
    180deg,
    var(--surface-2) 0%,
    var(--surface) 100%
  );
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  padding: 22px 24px;
  margin-bottom: 48px;
}

.ack .check {
  margin: 0;
}

/* Field wrapper */
.field {
  display: block;
  margin: 0 0 24px;
}

.field-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
  line-height: 1.5;
}

.optional {
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  font-size: 11px;
  font-style: italic;
  margin-left: 4px;
}

.req {
  color: var(--accent);
  font-style: normal;
  margin-left: 2px;
  font-weight: 400;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"],
select,
textarea {
  display: block;
  width: 100%;
  padding: 13px 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

input[type="file"] {
  padding: 11px 15px;
  font-size: 13px;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--accent);
  padding: 6px 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 14px;
  transition: border-color 0.2s, color 0.2s;
}

input[type="file"]::file-selector-button:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

textarea {
  resize: vertical;
  line-height: 1.6;
  min-height: 96px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}

/* Custom select arrow */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 52%,
    calc(100% - 13px) 52%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
  cursor: pointer;
}

select option {
  background: var(--bg-warm);
  color: var(--text);
}

.hint {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Check / radio */
.check,
.radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 12px;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.check input,
.radio input {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.check-block {
  align-items: flex-start;
}

.radio-row,
.check-row {
  display: block;
  margin-bottom: 24px;
}

.check-row .check {
  margin-bottom: 10px;
}

.radio-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.radio-row .field-label {
  width: 100%;
  margin-bottom: 12px;
}

.radio-row .radio {
  margin-bottom: 0;
}

.sub-field {
  margin-top: 16px;
  margin-left: 28px;
}

/* Submit */
.submit-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

button[type="submit"] {
  appearance: none;
  display: inline-block;
  padding: 17px 44px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.3s ease;
}

button[type="submit"]:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -12px rgba(255, 45, 135, 0.5);
}

button[type="submit"]:active {
  transform: translateY(0);
}

.form-fineprint {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Payment links ---------- */

.pay-links {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.pay-links li {
  border-bottom: 1px solid var(--border);
}

.pay-links a,
.pay-links .static {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 6px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  gap: 16px;
}

.pay-links a:hover {
  color: var(--accent);
  padding-left: 14px;
}

.pay-links .label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
}

.pay-links .handle {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.pay-links a:hover .handle {
  color: var(--accent);
}

.pay-links .static {
  color: var(--text);
}

.pay-links .static .handle {
  color: var(--text-faint);
}

/* ---------- Footer ---------- */

.site-footer {
  text-align: center;
  padding: 24px 24px 56px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.site-footer .ornament {
  margin-bottom: 28px;
}

.site-footer p {
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 600px) {
  main {
    padding: 16px 22px 48px;
  }
  section {
    padding: 52px 0;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 48px;
  }
  .ornament span {
    width: 44px;
  }
  .rate {
    flex-direction: row;
    justify-content: space-between;
  }
  .rate dt {
    font-size: 19px;
  }
  .sub-field {
    margin-left: 0;
  }
  button[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Brand mark ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
}

.brand img + .brand-text {
  display: none;
}

/* ---------- Hero photo ---------- */

.hero-photo {
  margin: 0 auto 8px;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(
    135deg,
    var(--surface-2) 0%,
    var(--accent-soft) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo.empty::after {
  content: "Hero photo \2014 drop into images/hero.jpg";
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Splash ---------- */

.splash-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.splash {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-logo {
  margin-bottom: 24px;
  min-height: 4px;
}

.splash-logo img {
  display: block;
  max-width: 220px;
  height: auto;
}

.splash .eyebrow {
  margin: 0 0 24px;
}

.splash h1 {
  font-size: clamp(56px, 12vw, 112px);
  margin: 0 0 28px;
  line-height: 1;
}

.splash .ornament {
  margin: 0 0 36px;
}

.splash-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 40px;
  max-width: 460px;
}

.splash-warn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 440px;
  margin: 0 0 40px;
}

.enter-btn {
  display: inline-block;
  padding: 18px 44px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.3s ease;
}

.enter-btn:hover {
  background: var(--accent-bright);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -16px rgba(255, 45, 135, 0.5);
}

.splash-leave {
  margin: 32px 0 0;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.splash-leave a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.splash-leave a:hover {
  color: var(--text-soft);
}

/* ---------- Splash photo + tint ---------- */

.splash-photo {
  position: relative;
  background: var(--accent);
  overflow: hidden;
}

.splash-bg,
.splash-tint {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.splash-bg {
  z-index: 0;
  overflow: hidden;
}

.splash-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  opacity: 0;
  animation:
    splashSlide 30s infinite ease-in-out,
    splashKenBurns 30s infinite ease-in-out;
}

.splash-bg-slide:nth-child(1) {
  animation-delay: 0s, 0s;
}

.splash-bg-slide:nth-child(2) {
  animation-delay: 6s, 6s;
}

.splash-bg-slide:nth-child(3) {
  animation-delay: 12s, 12s;
}

.splash-bg-slide:nth-child(4) {
  animation-delay: 18s, 18s;
}

.splash-bg-slide:nth-child(5) {
  animation-delay: 24s, 24s;
}

@keyframes splashSlide {
  0% { opacity: 0; }
  3% { opacity: 1; }
  20% { opacity: 1; }
  23% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes splashKenBurns {
  0% { transform: scale(1); }
  23% { transform: scale(1.08); }
  100% { transform: scale(1.08); }
}

.splash-tint {
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0.95;
  z-index: 1;
}

.splash-photo .splash {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.splash-photo .splash-warn {
  color: rgba(255, 255, 255, 0.88);
}

.splash-photo .splash-leave a {
  color: rgba(255, 255, 255, 0.62);
}

.splash-photo .splash-leave a:hover {
  color: #ffffff;
}

.splash-photo .enter-btn {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
}

.splash-photo .enter-btn:hover {
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  box-shadow: 0 14px 36px -16px rgba(0, 0, 0, 0.3);
}

/* Logo mark in a white circle */
.splash-mark {
  width: 148px;
  height: 148px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.splash-mark img {
  display: block;
  max-width: 78%;
  max-height: 78%;
}

.splash-mark.empty::after {
  content: "+ logo";
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Splash entrance animations ---------- */

.splash-mark {
  animation: markIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.splash-photo .splash-warn {
  animation: textIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.splash-photo .enter-btn {
  animation: textIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

.splash-photo .splash-leave {
  animation: textIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both;
}

@keyframes markIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Parallax hero ---------- */

.photo-parallax {
  width: 100%;
  height: 78vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

@media (max-width: 800px) {
  .photo-parallax {
    background-attachment: scroll;
    height: 60vh;
  }
}

/* ---------- About hero with overlay title ---------- */

.about-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

.about-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  filter: grayscale(0.55) contrast(1.04);
  z-index: 0;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 95% 80% at center,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.about-hero-text .eyebrow {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 18px;
}

.about-hero-text h1 {
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.about-hero-text h1 em {
  color: var(--accent-bright);
}

@media (max-width: 800px) {
  .about-hero {
    min-height: 72vh;
    padding-bottom: 40px;
  }
  .about-hero-photo {
    background-attachment: scroll;
  }
}

/* ---------- About bottom photo with overlay CTA ---------- */

.about-bottom {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 88px 24px;
}

.about-bottom-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  filter: grayscale(0.55) contrast(1.04);
  z-index: 0;
}

.about-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

.about-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 5, 12, 0) 30%,
    rgba(20, 5, 12, 0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-bottom-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 520px;
  color: #ffffff;
}

.about-bottom-text h2 {
  color: #ffffff;
  margin: 0 0 14px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.about-bottom-text p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.about-bottom-text .enter-btn {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
}

.about-bottom-text .enter-btn:hover {
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  box-shadow: 0 14px 36px -16px rgba(0, 0, 0, 0.35);
}

@media (max-width: 800px) {
  .about-bottom {
    min-height: 60vh;
    padding: 64px 24px;
  }
  .about-bottom-photo {
    background-attachment: scroll;
  }
}

/* ---------- Bio section ---------- */

.bio-section {
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--border);
}

.bio-section .container {
  max-width: 580px;
}

.bio-section .lede {
  text-align: left;
  max-width: none;
  margin: 0 0 36px;
  padding: 24px 26px;
  background: var(--accent-soft);
  border-left: 2px solid var(--accent);
  border-radius: 2px;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--text);
}

@media (max-width: 600px) {
  .bio-section .lede {
    padding: 20px 22px;
  }
}

.bio-section .bio {
  text-align: left;
  max-width: none;
  margin: 22px 0 0;
}

.bio-section .bio-closer {
  margin-top: 28px;
  color: var(--text-soft);
}

/* Kinks: hot-pink pills */
.kinks {
  list-style: none;
  padding: 0;
  margin: 32px auto 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  max-width: 620px;
  justify-content: flex-start;
}

.kinks li {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(255, 45, 135, 0.06);
  color: var(--accent);
  border: 1px solid rgba(255, 45, 135, 0.22);
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.kinks li:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .bio-section {
    padding: 64px 0 56px;
  }
  .kinks {
    margin: 24px auto 28px;
  }
}

/* ---------- Gallery ---------- */

.gallery {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6px;
}

.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(255, 45, 135, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease, background 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.15) brightness(1.02);
}

.gallery-item:hover::after {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 45, 135, 0) 30%,
    rgba(255, 45, 135, 0.4) 100%
  );
}

.gallery-feature {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.gallery-feature img {
  object-position: center top;
}

@media (max-width: 600px) {
  .gallery {
    padding: 56px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .gallery-feature {
    aspect-ratio: 4 / 5;
  }
}

/* ---------- Booking page ambient photo ---------- */

body.booking-page {
  background:
    linear-gradient(
      rgba(248, 239, 233, 0.74),
      rgba(248, 239, 233, 0.78)
    ),
    url("images/HIlary/DSCF2825.JPEG") center / cover fixed no-repeat;
}

@media (max-width: 800px) {
  body.booking-page {
    background:
      linear-gradient(
        rgba(248, 239, 233, 0.82),
        rgba(248, 239, 233, 0.86)
      ),
      url("images/HIlary/DSCF2825.JPEG") center / cover no-repeat;
  }
}

/* ---------- Action row (two side-by-side CTAs) ---------- */

.action-row {
  text-align: center;
}

.action-row .container {
  max-width: 580px;
}

.action-row h2 {
  margin: 0 0 14px;
}

.action-row .section-note {
  margin: 0 auto 32px;
  max-width: 420px;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
}

.action-buttons .enter-btn {
  flex: 1 1 220px;
  max-width: 260px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  margin: 0;
}

@media (max-width: 520px) {
  .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .action-buttons .enter-btn {
    max-width: none;
    flex: 0 0 auto;
  }
}

/* ---------- Payment modal (consultation fee) ---------- */

.payment-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 520px;
  width: calc(100% - 32px);
  color: var(--text);
  margin: auto;
  border-radius: 6px;
  overflow: visible;
}

.payment-modal::backdrop {
  background: rgba(20, 5, 12, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.payment-modal[open] {
  animation: modalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.payment-modal-inner {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px 40px 36px;
  box-shadow: 0 28px 80px -24px rgba(20, 5, 12, 0.45);
}

.payment-modal h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 10px;
  color: var(--text);
}

.payment-modal .modal-note {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 24px;
  max-width: 420px;
}

.payment-modal .pay-links {
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--text-soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

@media (max-width: 600px) {
  .payment-modal-inner {
    padding: 36px 24px 28px;
  }
}

/* ---------- Splash foot slide (desktop framing) ---------- */

.splash-bg-slide-foot {
  background-position: center 8%;
}

@media (min-width: 800px) {
  .splash-bg-slide-foot {
    background-position: center 22%;
  }
}

/* ---------- Hotter hover on the primary button ---------- */

.enter-btn {
  position: relative;
  overflow: hidden;
}

.enter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.enter-btn:hover::before {
  transform: translateX(110%);
}

.enter-btn:hover {
  box-shadow:
    0 14px 32px -10px rgba(255, 45, 135, 0.55),
    0 0 0 2px rgba(255, 45, 135, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .splash-bg-slide,
  .splash-mark,
  .splash-photo .splash-warn,
  .splash-photo .enter-btn,
  .splash-photo .splash-leave,
  .gallery-item img,
  .enter-btn::before {
    animation: none !important;
    transition: none !important;
  }
  .splash-bg-slide:nth-child(1) {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .hero-photo {
    aspect-ratio: 3 / 4;
    margin-bottom: 24px;
  }
  .splash-warn {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .enter-btn {
    padding: 16px 44px;
    letter-spacing: 0.32em;
  }
  .splash-mark {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
  }
}
