:root {
  --bg: #080707;
  --panel: #11100f;
  --panel-soft: #171412;
  --ink: #f5eee5;
  --muted: #b5a99e;
  --line: rgba(245, 238, 229, 0.13);
  --gold: #c8a46f;
  --wine: #4d1822;
  --rose: #d8ada4;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --script: "Parisienne", cursive;
  --sans: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(77, 24, 34, 0.36), transparent 34rem),
    linear-gradient(180deg, #090807 0%, #0d0b0a 46%, #080707 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
}

body.nav-open,
body.lightbox-open,
body.age-gate-active {
  overflow: hidden;
}

body.age-gate-active .site-header,
body.age-gate-active main {
  filter: blur(14px);
  transform: scale(1.015);
  transition: filter 700ms ease, transform 700ms ease;
  pointer-events: none;
  user-select: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 50% 28%, rgba(200, 164, 111, 0.12), transparent 26rem),
    rgba(6, 5, 5, 0.56);
  backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.age-gate.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.age-gate-panel {
  width: min(34rem, 100%);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(245, 238, 229, 0.18);
  border-radius: 0.8rem;
  background: linear-gradient(145deg, rgba(17, 16, 15, 0.72), rgba(77, 24, 34, 0.34));
  box-shadow: var(--shadow);
  text-align: center;
}

.age-gate-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.age-gate-panel p:not(.eyebrow) {
  color: var(--muted);
}

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

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

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

button,
input,
textarea {
  font: inherit;
}

/* Sticky Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid transparent;
  transition: background 500ms ease, border-color 500ms ease, padding 500ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(8, 7, 7, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  padding-block: 0.72rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-family: var(--script);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 0.82;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.46);
  transition: color 500ms ease, transform 500ms ease;
}

.brand:hover {
  color: #e4c692;
  transform: translateY(-1px);
}

.brand span {
  display: block;
  max-width: 9ch;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: rgba(245, 238, 229, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 0.35rem;
  transition: color 500ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 500ms ease;
}

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

.site-nav a.is-active {
  text-shadow: 0 0 18px rgba(200, 164, 111, 0.46);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-active::after {
  height: 2px;
  box-shadow: 0 0 16px rgba(200, 164, 111, 0.66);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(245, 238, 229, 0.05);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 500ms ease, opacity 500ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(42deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-42deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(7rem, 13vw, 11rem) clamp(1.25rem, 6vw, 6rem) 5rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.03);
  animation: heroZoom 8s ease forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.95) 0%, rgba(8, 7, 7, 0.72) 34%, rgba(8, 7, 7, 0.28) 72%, rgba(8, 7, 7, 0.58) 100%),
    linear-gradient(0deg, rgba(8, 7, 7, 0.95) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 46rem);
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3.8rem, 9vw, 7.7rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
}

.hero-tagline {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: rgba(245, 238, 229, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  max-width: 34rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 500ms ease, box-shadow 500ms ease, background 500ms ease, border-color 500ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), #e2c798);
  color: #15110d;
  box-shadow: 0 18px 45px rgba(200, 164, 111, 0.2);
}

.button-primary:hover {
  box-shadow: 0 22px 55px rgba(200, 164, 111, 0.35);
}

.button-secondary {
  border-color: rgba(245, 238, 229, 0.26);
  background: rgba(245, 238, 229, 0.06);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(200, 164, 111, 0.68);
  background: rgba(200, 164, 111, 0.1);
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(245, 238, 229, 0.34);
  border-radius: 999px;
  background: rgba(245, 238, 229, 0.04);
  transform: translateX(-50%);
  transition: border-color 500ms ease, background 500ms ease, transform 500ms ease;
}

.scroll-cue span {
  display: block;
  width: 0.66rem;
  height: 0.66rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-2px) rotate(45deg);
}

.scroll-cue:hover {
  border-color: rgba(200, 164, 111, 0.74);
  background: rgba(200, 164, 111, 0.1);
  transform: translateX(-50%) translateY(3px);
}

/* Sections */
.section {
  position: relative;
  padding-inline: clamp(1.25rem, 5vw, 5rem);
  padding-block: clamp(0.5rem, 1.2vw, 1rem) clamp(7.25rem, 13vw, 12rem);
  background-color: var(--bg);
}

.section-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto clamp(2.2rem, 5vw, 4rem);
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading p,
.split-heading p,
.about-copy p,
.contact-copy p,
.rates-intro p,
.experience-copy p,
.experience-card p,
.faq-answer p,
.services-afterword {
  color: var(--muted);
}

[data-copy-field] p:last-child {
  margin-bottom: 0;
}

.about-grid,
.rates-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-copy {
  max-width: 42rem;
}

.signature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.signature-row span {
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(200, 164, 111, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(200, 164, 111, 0.17), rgba(77, 24, 34, 0.18) 58%, rgba(245, 238, 229, 0.06)),
    rgba(245, 238, 229, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(245, 238, 229, 0.12),
    0 14px 32px rgba(77, 24, 34, 0.24);
  color: #edd6b8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 12px rgba(216, 173, 164, 0.24);
  text-transform: uppercase;
}


.portrait-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(245, 238, 229, 0.18);
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1000ms ease;
}

.portrait-frame:hover img {
  transform: scale(1.045);
}

/* Gallery */
.gallery-section {
  background: linear-gradient(180deg, rgba(245, 238, 229, 0.03), rgba(77, 24, 34, 0.16), rgba(245, 238, 229, 0.02));
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: -0.8rem 0 clamp(1.6rem, 4vw, 2.8rem);
}

.gallery-filters button {
  min-width: 5.8rem;
  border: 1px solid rgba(200, 164, 111, 0.42);
  border-radius: 999px;
  background: rgba(245, 238, 229, 0.06);
  color: var(--ink);
  cursor: pointer;
  font: 700 0.76rem / 1 var(--font-body);
  letter-spacing: 0.16em;
  padding: 0.78rem 1rem;
  text-transform: uppercase;
  transition: background 450ms ease, border-color 450ms ease, color 450ms ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  border-color: var(--gold);
  background: rgba(200, 164, 111, 0.2);
  color: var(--white);
}

.gallery-item {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--panel);
  cursor: pointer;
  isolation: isolate;
  padding: 0;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.is-row-hidden {
  display: none;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 37.25rem;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 1000ms ease, filter 1000ms ease;
}

.gallery-item video {
  display: block;
  background: var(--panel-soft);
  pointer-events: none;
}

.gallery-item:hover img,
.gallery-item:hover video {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.06);
}

.gallery-video .video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(245, 238, 229, 0.62);
  border-radius: 50%;
  background: rgba(25, 12, 16, 0.52);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.gallery-video .video-play::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.05rem solid var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.mobile-gallery-controls {
  display: none;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.gallery-more[hidden] {
  display: none;
}

.gallery-more .button {
  width: auto;
  min-width: 11rem;
  box-shadow: none;
}

/* Experience */
.about-experience {
  width: min(1180px, 100%);
  margin: clamp(3rem, 7vw, 5.5rem) auto 0;
  padding-top: clamp(2.6rem, 6vw, 4.6rem);
  border-top: 1px solid rgba(245, 238, 229, 0.1);
  scroll-margin-top: 7rem;
}

.experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.experience-intro:last-child {
  margin-bottom: 0;
}

.experience-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  box-shadow: var(--shadow);
}

.experience-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 7, 7, 0.12), rgba(8, 7, 7, 0.54));
  content: "";
  pointer-events: none;
}

.experience-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 1200ms ease, filter 1200ms ease;
}

.experience-image:hover img {
  filter: contrast(1.04) saturate(1.04);
  transform: scale(1.035);
}

.experience-copy {
  max-width: 33rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(17rem, 0.55fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.experience-card {
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 600ms ease, transform 600ms ease;
}

.experience-card:last-child {
  border-right: 0;
}

.experience-card:hover {
  background: rgba(245, 238, 229, 0.035);
  transform: translateY(-4px);
}

.experience-card span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.experience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Rates */
.rates {
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.96), rgba(8, 7, 7, 0.82)),
    var(--rates-bg-image, none) center / cover fixed;
}

.rates-grid {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.rates-intro {
  align-self: start;
}

.rates-intro img {
  width: 100%;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.rate-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1rem;
}

.rate-panel,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(17, 16, 15, 0.8);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.rate-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.rate-panel h3 {
  margin-bottom: 1.1rem;
}

.rate-panel ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rate-panel li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.rate-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rate-panel strong {
  color: var(--ink);
  white-space: nowrap;
}

.rate-placeholder {
  visibility: hidden;
}

.live-add-anchor {
  display: block;
  width: 100%;
  min-height: 42px;
  visibility: hidden;
}

.price-add-anchor,
.services-afterword {
  grid-column: 1 / -1;
}

.service-add-anchor {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: 0.75rem;
  width: min(13rem, calc(100% - 2.5rem));
  min-height: 36px;
  pointer-events: none;
}

.contact-note-add-anchor {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: 0.75rem;
  width: min(13rem, calc(100% - 2.5rem));
  min-height: 36px;
  pointer-events: none;
}

.service-panel {
  position: relative;
  background:
    linear-gradient(145deg, rgba(200, 164, 111, 0.08), rgba(245, 238, 229, 0.035)),
    rgba(17, 16, 15, 0.76);
}

.service-panel li {
  display: block;
  position: relative;
  padding-left: 1.05rem;
}

.service-panel li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.services-afterword {
  max-width: 42rem;
  margin: 0.15rem auto 0;
  text-align: center;
}

/* Reviews */
.reviews {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 7, 7, 0.95), rgba(77, 24, 34, 0.22) 48%, rgba(8, 7, 7, 0.94)),
    var(--bg);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.reviews-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.review-controls {
  display: flex;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.review-controls button {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(245, 238, 229, 0.2);
  border-radius: 50%;
  background: rgba(245, 238, 229, 0.055);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  transition: border-color 450ms ease, background 450ms ease, color 450ms ease, transform 450ms ease;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  border-color: rgba(200, 164, 111, 0.64);
  background: rgba(200, 164, 111, 0.14);
  color: var(--gold);
  outline: 0;
  transform: translateY(-2px);
}

.review-controls button:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.review-carousel {
  position: relative;
}

.review-carousel::before,
.review-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(1.5rem, 5vw, 4rem);
  pointer-events: none;
  content: "";
}

.review-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.review-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.review-track {
  --review-gap: 1rem;
  display: grid;
  align-items: start;
  grid-auto-columns: calc((100% - (var(--review-gap) * 2)) / 3);
  grid-auto-flow: column;
  gap: var(--review-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 1.1rem;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background:
    linear-gradient(145deg, rgba(245, 238, 229, 0.08), rgba(245, 238, 229, 0.025)),
    rgba(17, 16, 15, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.review-card::before {
  height: 2.2rem;
  overflow: hidden;
  color: rgba(200, 164, 111, 0.22);
  content: "\201C";
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.62;
}

.review-card > div:last-child {
  margin-top: auto;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  line-height: 1.24;
}

.review-card h3 {
  margin: 0 0 0.28rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.review-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* FAQ */
.faq-grid {
  align-items: start;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
}

.faq-grid .section-heading {
  max-width: 48rem;
}

.faq-grid .accordion {
  width: min(100%, 860px);
}

.accordion {
  display: grid;
  gap: 0.35rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  padding: 0.95rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.7vw, 1.8rem);
  line-height: 1.1;
  text-align: left;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform 600ms ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: max-height 1000ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1000ms ease, transform 1000ms ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin-bottom: 1.2rem;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, rgba(77, 24, 34, 0.12), rgba(8, 7, 7, 0.95));
}

.contact-grid {
  align-items: start;
}

.contact-copy {
  max-width: 40rem;
}

address {
  display: grid;
  gap: 0.4rem;
  margin-top: 2rem;
  color: var(--muted);
  font-style: normal;
}

address a:hover {
  color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(245, 238, 229, 0.12);
  background: #080706;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--gold);
  font-family: var(--script);
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  line-height: 0.9;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.footer-credit {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.footer-credit a {
  color: var(--ink);
}

.footer-credit a:hover {
  color: var(--gold);
}

.footer-phone {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-button {
  min-height: 2.85rem;
  padding: 0.75rem 1.1rem;
  box-shadow: none;
}

.enquiry-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.enquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(245, 238, 229, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: rgba(245, 238, 229, 0.055);
  color: var(--ink);
  outline: 0;
  padding: 0.95rem 1rem;
  transition: border-color 500ms ease, box-shadow 500ms ease, background 500ms ease;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: rgba(200, 164, 111, 0.72);
  background: rgba(245, 238, 229, 0.08);
  box-shadow: 0 0 0 4px rgba(200, 164, 111, 0.1);
}

.enquiry-form .button {
  width: 100%;
}

.direct-contact-card {
  position: relative;
  align-content: center;
  border: 1px solid rgba(200, 164, 111, 0.34);
  background:
    linear-gradient(145deg, rgba(200, 164, 111, 0.12), rgba(245, 238, 229, 0.035)),
    rgba(8, 7, 7, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.direct-contact-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.direct-contact-phone {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 6vw, 4.4rem);
  line-height: 0.95;
  text-align: center;
}

.direct-contact-phone:hover {
  color: var(--gold);
}

.direct-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.direct-contact-actions .button {
  width: auto;
  min-height: 2.55rem;
  min-width: 7.6rem;
  padding: 0.68rem 1rem;
  font-size: 0.68rem;
}

.direct-contact-prompt {
  margin: 0.25rem 0 -0.1rem;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact-notes {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.direct-contact-notes li {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(245, 238, 229, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 4rem clamp(1rem, 5vw, 4rem);
  background: rgba(5, 4, 4, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  max-width: min(92vw, 1080px);
  max-height: 84vh;
}

.lightbox img,
.lightbox video {
  max-width: min(92vw, 1080px);
  max-height: 84vh;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-video-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
  transform: translateX(-50%);
}

.lightbox-video-controls[hidden] {
  display: none;
}

.lightbox-video-controls button {
  border: 1px solid rgba(245, 238, 229, 0.36);
  border-radius: 999px;
  background: rgba(5, 4, 4, 0.56);
  color: var(--ink);
  cursor: pointer;
  font: 700 0.72rem / 1 var(--font-body);
  letter-spacing: 0.13em;
  padding: 0.74rem 0.9rem;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(245, 238, 229, 0.08);
  color: var(--ink);
  cursor: pointer;
  transition: background 500ms ease, transform 500ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(200, 164, 111, 0.18);
  transform: scale(1.05);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.82rem;
  height: 0.82rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.lightbox-prev::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

.lightbox-next::before {
  transform: translate(-58%, -50%) rotate(45deg);
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

.lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

/* Animation */
.reveal,
.reveal-on-load {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(48px);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 1200ms ease, filter 1200ms ease, transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-on-load {
  animation: fadeUp 1200ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.reveal-on-load:nth-child(2) {
  animation-delay: 180ms;
}

.reveal-on-load:nth-child(3) {
  animation-delay: 360ms;
}

.reveal-on-load:nth-child(4) {
  animation-delay: 540ms;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .age-gate-actions {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    inset: 4.65rem 1rem auto;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: rgba(8, 7, 7, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 500ms ease, transform 500ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .about-grid,
  .rates-grid,
  .contact-grid,
  .faq-grid,
  .experience-intro,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .experience-card {
    border-right: 0;
  }

  .experience-copy {
    max-width: none;
  }

  .rates {
    background:
      linear-gradient(180deg, rgba(8, 7, 7, 0.9), rgba(8, 7, 7, 0.96)),
      var(--rates-bg-image, none) center / cover;
  }

  .rate-panels {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
  }

  .review-track {
    grid-auto-columns: calc((100% - var(--review-gap)) / 2);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 92svh;
    align-items: end;
    padding-top: 6.4rem;
  }

  .hero-actions {
    display: grid;
    max-width: calc(100vw - 3.5rem);
    width: min(20.5rem, calc(100vw - 3.5rem));
  }

  .hero-content {
    width: 85vw;
    max-width: calc(100vw - 3rem);
    min-width: 0;
  }

  .hero-tagline {
    max-width: 18.5rem;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 7, 7, 0.18) 0%, rgba(8, 7, 7, 0.58) 42%, rgba(8, 7, 7, 0.96) 100%),
      linear-gradient(90deg, rgba(8, 7, 7, 0.7), transparent 78%);
  }

  h1 {
    max-width: 7ch;
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

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

  .gallery-grid.is-mobile-carousel-ready {
    display: block;
  }

  .gallery-item,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 26rem;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-grid.is-mobile-carousel-ready .gallery-item {
    display: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .gallery-grid.is-mobile-carousel-ready .gallery-item.is-carousel-active:not(.is-hidden) {
    display: block;
  }

  .gallery-more {
    display: none;
  }

  .gallery-grid.is-mobile-carousel-ready .gallery-item img,
  .gallery-grid.is-mobile-carousel-ready .gallery-item video {
    height: 100%;
    min-height: 0;
  }

  .mobile-gallery-controls:not(.is-hidden) {
    display: grid;
    grid-template-columns: 3rem minmax(6rem, 1fr) 3rem;
    align-items: center;
    gap: 0.75rem;
    width: min(18rem, 100%);
    margin: 1rem auto 0;
  }

  .mobile-gallery-controls button {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(200, 164, 111, 0.42);
    border-radius: 50%;
    background: rgba(245, 238, 229, 0.06);
    color: var(--ink);
    cursor: pointer;
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
    transition: border-color 450ms ease, background 450ms ease, color 450ms ease, transform 450ms ease;
  }

  .mobile-gallery-controls button:hover,
  .mobile-gallery-controls button:focus-visible {
    border-color: var(--gold);
    background: rgba(200, 164, 111, 0.16);
    color: var(--gold);
    outline: 0;
    transform: translateY(-2px);
  }

  .mobile-gallery-controls button:disabled {
    cursor: default;
    opacity: 0.42;
    transform: none;
  }

  .mobile-gallery-controls span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
  }

  .rate-panel li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .review-track {
    grid-auto-columns: 100%;
    padding-bottom: 0.25rem;
    touch-action: pan-x pinch-zoom;
  }

  .review-card {
    min-height: 0;
    gap: 0.75rem;
    padding: 1.15rem;
  }

  .review-card::before {
    height: 1.35rem;
    font-size: 4.3rem;
    line-height: 0.55;
  }

  .review-card > div:last-child {
    margin-top: 0.2rem;
  }

  .review-card p {
    font-size: 1.3rem;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 1.25rem;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}
