:root {
  --ink: #211d1a;
  --muted: #6e655f;
  --soft: #fbf8f3;
  --paper: #fffdf9;
  --linen: #efe7da;
  --sage: #7d8a73;
  --rose: #d7a7a4;
  --wine: #5e3433;
  --gold: #b89b69;
  --shadow: 0 28px 80px rgba(43, 35, 30, 0.13);
  --header-height: 84px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(215, 167, 164, 0.2), transparent 26rem),
    linear-gradient(180deg, var(--paper) 0%, var(--soft) 44%, #f6efe6 100%);
  font-family: var(--sans);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.gate-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--wine);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(33, 29, 26, 0.54), rgba(33, 29, 26, 0.72)),
    url("assets/images/hero-blue-dress.jpg") center / cover;
  transition: opacity 600ms ease, visibility 600ms ease;
}

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

.age-panel {
  width: min(520px, 100%);
  padding: clamp(34px, 6vw, 58px);
  color: var(--paper);
  text-align: center;
  background: rgba(33, 29, 26, 0.58);
  border: 1px solid rgba(255, 253, 249, 0.24);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  animation: ageIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.age-panel h1,
.age-panel .age-title {
  margin: 8px 0 16px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 11vw, 6rem);
  line-height: 0.86;
  font-weight: 500;
}

.age-panel p:not(.eyebrow) {
  margin: 0 auto 28px;
  max-width: 34rem;
  color: rgba(255, 253, 249, 0.82);
}

.age-actions,
.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.age-actions {
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 249, 0.78);
  border-bottom: 1px solid rgba(33, 29, 26, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 16px 40px rgba(43, 35, 30, 0.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 0.9;
  letter-spacing: 0.14em;
}

.brand strong {
  font-size: 0.7rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 250ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(33, 29, 26, 0.18);
  background: rgba(255, 253, 249, 0.7);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 250ms ease, opacity 250ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: stretch;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(20px, 4vw, 56px) clamp(18px, 4vw, 64px) clamp(54px, 8vw, 110px);
}

.hero-media {
  min-height: 620px;
  overflow: hidden;
  background: var(--linen);
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.02);
  animation: heroDrift 13s ease-in-out infinite alternate;
}

.hero-copy {
  align-self: center;
  max-width: 560px;
  padding: clamp(20px, 4vw, 52px) 0;
}

.hero h1 {
  max-width: 8ch;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(5.2rem, 11vw, 10rem);
  font-weight: 500;
  line-height: 0.78;
}

.hero-lede {
  max-width: 36rem;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  color: var(--wine);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(33, 29, 26, 0.16);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, color 260ms ease, background 260ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.35) 42%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.62);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(33, 29, 26, 0.2);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--wine);
  transform: translateX(-50%);
  animation: cue 1.9s ease-in-out infinite;
}

.intro-band {
  padding: 22px clamp(18px, 4vw, 64px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.intro-line {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 6vw, 92px);
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.9rem);
  line-height: 1;
}

.intro-line span {
  color: rgba(255, 253, 249, 0.86);
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 4vw, 64px);
}

.section-copy h2,
.section-heading h2,
.detail-copy h2,
.contact-panel h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.92;
}

.section-copy p,
.section-heading p,
.detail-copy p,
.contact-panel p {
  max-width: 44rem;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 6vw, 74px);
  text-align: center;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.portrait-stack {
  display: grid;
  gap: 18px;
}

.tilt-card {
  margin: 0;
  overflow: hidden;
  background: var(--linen);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.tilt-card img,
.feature-image img,
.contact-media img {
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
}

.tilt-card:hover img,
.feature-image:hover img,
.contact-media:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(33, 29, 26, 0.16);
  border: 1px solid rgba(33, 29, 26, 0.16);
}

.stats-panel div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  background: rgba(255, 253, 249, 0.76);
}

.stats-panel span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-panel strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
  background: rgba(239, 231, 218, 0.54);
}

.feature-image {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.6vw, 20px);
}

.gallery-item {
  grid-column: span 4;
  min-height: 260px;
  padding: 0;
  border: 0;
  background: var(--linen);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 18px 52px rgba(43, 35, 30, 0.08);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 8;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(8) {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 850ms ease;
}

.gallery-item video {
  display: block;
  width: 100%;
  background: var(--linen);
  pointer-events: none;
}

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

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

.rates-section {
  background: var(--ink);
  color: var(--paper);
}

.rates-section .eyebrow {
  color: #d6c096;
}

.rates-section .section-heading p {
  color: rgba(255, 253, 249, 0.68);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 249, 0.18);
  border: 1px solid rgba(255, 253, 249, 0.18);
}

.rate-card {
  min-height: 286px;
  padding: clamp(26px, 3.8vw, 42px);
  background: #28231f;
  transition: transform 320ms ease, background 320ms ease;
}

.rate-card:hover {
  transform: translateY(-5px);
  background: #302923;
}

.rate-card span {
  color: #d6c096;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.rate-card h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.rate-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
}

.rate-card p {
  margin: 0;
  color: rgba(255, 253, 249, 0.68);
}

.rate-card.preferred {
  background: #352725;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 1px;
  background: rgba(33, 29, 26, 0.14);
  border: 1px solid rgba(33, 29, 26, 0.14);
}

.detail-list div {
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 253, 249, 0.78);
}

.detail-list h3,
.faq-list summary {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  font-weight: 600;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  border-top: 1px solid rgba(33, 29, 26, 0.14);
  overflow: hidden;
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(33, 29, 26, 0.14);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 28px 54px 28px 0;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  color: var(--wine);
  font-family: var(--sans);
  font-size: 1.8rem;
  transform: translateY(-50%);
  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  max-width: 680px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--muted);
  transform: translateY(-8px);
  transition:
    max-height 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 700ms ease,
    margin 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-list details[open] p {
  max-height: var(--faq-answer-height, 260px);
  margin: -8px 0 28px;
  opacity: 1;
  transform: translateY(0);
}

.faq-list details.is-opening p,
.faq-list details.is-closing p {
  max-height: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 0.95fr);
  gap: clamp(0px, 5vw, 72px);
  padding: clamp(72px, 10vw, 136px) clamp(18px, 4vw, 64px);
  background: #f1e5d8;
}

.contact-media {
  overflow: hidden;
  min-height: 680px;
  box-shadow: var(--shadow);
}

.contact-media img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 45% center;
}

.contact-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  align-self: center;
  max-width: 680px;
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid rgba(33, 29, 26, 0.1);
  box-shadow: 0 20px 70px rgba(43, 35, 30, 0.09);
  text-align: center;
}

.contact-buttons {
  margin: 28px 0 34px;
}

.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
}

.enquiry-form span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 29, 26, 0.16);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.82);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: rgba(94, 52, 51, 0.55);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(94, 52, 51, 0.08);
}

.enquiry-form textarea {
  resize: vertical;
}

.direct-contact-card {
  gap: 18px;
  justify-items: center;
  padding-top: 8px;
  text-align: center;
  width: 100%;
}

.direct-contact-card > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.direct-contact-phone {
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.92;
  text-decoration: none;
}

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

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

.direct-contact-notes {
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 32rem;
  padding-top: 18px;
  border-top: 1px solid rgba(33, 29, 26, 0.12);
  text-align: center;
}

.direct-contact-notes p {
  margin: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--wine);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 64px);
  color: rgba(255, 253, 249, 0.74);
  background: var(--ink);
  text-align: center;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.site-footer span,
.site-footer a {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.site-footer .footer-credit {
  grid-column: 2;
  justify-self: center;
  margin: 0;
  max-width: 34rem;
  opacity: 0.72;
  line-height: 1.7;
  text-align: center;
}

.site-footer .footer-top {
  grid-column: 3;
  justify-self: end;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 72px clamp(16px, 4vw, 64px);
  background: rgba(18, 15, 13, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}

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

.lightbox img {
  width: auto;
  max-width: min(1120px, 88vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  transform: scale(0.96);
  transition: transform 320ms ease;
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.24);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 253, 249, 0.08);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255, 253, 249, 0.18);
  transform: scale(1.04);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 2.4rem;
  transform: translateY(-50%);
}

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

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(36px);
  transition: opacity 950ms ease, filter 950ms ease, transform 950ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.load-rise {
  animation: loadRise 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

@keyframes loadRise {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.5%, 0, 0);
  }
}

@keyframes cue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  38% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

@media (max-width: 1040px) {
  .hero,
  .about-grid,
  .split-feature,
  .detail-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .contact-media {
    min-height: min(72vh, 720px);
  }

  .hero-copy {
    max-width: 740px;
  }

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

  .contact-panel {
    max-width: none;
    margin-top: -54px;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding: 16px 18px;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 15px;
    right: 18px;
    z-index: 210;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid rgba(33, 29, 26, 0.12);
    box-shadow: 0 22px 70px rgba(43, 35, 30, 0.14);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  }

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

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(33, 29, 26, 0.08);
  }

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

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-media {
    min-height: 66vh;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(4.1rem, 18.5vw, 5.4rem);
  }

  .intro-line {
    justify-content: flex-start;
    animation: marquee 14s linear infinite;
  }

  .stats-panel,
  .rates-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    min-height: 240px;
  }

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(8) {
    grid-row: span 1;
  }

  .contact-panel {
    padding: 28px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .site-footer .footer-credit,
  .site-footer .footer-top {
    grid-column: 1;
  }

  .site-footer .footer-top {
    justify-self: end;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .lightbox-arrow:hover {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }
}

@media (max-width: 520px) {
  .age-panel {
    padding: 30px 20px;
  }

  .hero-actions,
  .contact-buttons,
  .age-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-copy h2,
  .section-heading h2,
  .detail-copy h2,
  .contact-panel h2 {
    font-size: clamp(2.75rem, 17vw, 4.2rem);
  }

  .stats-panel,
  .rates-grid {
    grid-template-columns: 1fr;
  }

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-38%);
  }
}

/* Old site visual alignment */
:root {
  --old-border: #e8bcbc;
  --old-blush: #fff0f4;
  --old-ink: #171717;
  --heading-soft-lift: 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 18px rgba(255, 255, 255, 0.88), 0 8px 24px rgba(255, 240, 244, 0.72), 0 2px 14px rgba(94, 52, 51, 0.14);
  --heading-photo-lift: 0 2px 3px rgba(0, 0, 0, 0.82), 0 6px 24px rgba(0, 0, 0, 0.68), 0 0 22px rgba(232, 188, 188, 0.44), 0 0 36px rgba(255, 255, 255, 0.22);
  --script: "Parisienne", cursive;
  --serif: "Cormorant Garamond", Georgia, serif;
}

body {
  background: #fff;
  color: var(--old-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

h1,
h2,
h3 {
  text-shadow: var(--heading-soft-lift);
}

.age-panel h1,
.age-panel .age-title {
  text-shadow: var(--heading-photo-lift);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  min-height: 0;
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 24px 22px;
  background: rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(3px);
  text-align: center;
  transition: padding 900ms ease, background 900ms ease, box-shadow 900ms ease, border-color 900ms ease;
}

.site-header .brand,
.site-header .site-nav {
  justify-self: center;
}

.site-header.is-scrolled {
  padding: 10px 24px 9px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.055);
}

.site-header.is-scrolled .brand span {
  color: var(--gold);
}

.brand {
  display: block;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.brand span {
  color: var(--gold);
  font-family: inherit;
  font-size: clamp(2.2rem, 3.3vw, 3.7rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  transition: font-size 900ms ease, color 900ms ease;
}

.site-header.is-scrolled .brand span {
  font-size: clamp(1.55rem, 2.05vw, 2.2rem);
}

.site-nav {
  gap: 22px;
}

.site-nav a {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: color 700ms ease;
}

.site-nav a::after {
  bottom: -4px;
  height: 1px;
  background: currentColor;
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  height: 548px;
  min-height: 548px;
  display: block;
  padding: 0;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 548px;
  min-height: 548px;
  box-shadow: none;
}

.hero-media img {
  width: 100%;
  height: 548px;
  min-height: 548px;
  object-fit: cover;
  object-position: center 38%;
  animation: none;
  transform: none;
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  max-width: none;
  padding: 0;
  pointer-events: none;
}

.hero h1 {
  position: absolute;
  left: 50%;
  top: 70%;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--script);
  font-size: clamp(5.2rem, 9vw, 9.6rem);
  font-weight: 400;
  line-height: 1;
  text-shadow: var(--heading-photo-lift);
  text-transform: none;
  transform: translate(-50%, -50%);
}

.page-hero h2 {
  max-width: none;
  margin: 165px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--script);
  font-size: clamp(5.2rem, 9vw, 9.6rem);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  text-shadow: var(--heading-photo-lift);
}

.scroll-cue,
.intro-band,
.hero-lede,
.hero-actions {
  display: none;
}

.section,
.contact-section {
  padding: 12px 4vw 60px;
  scroll-margin-top: 112px;
}

.about-grid,
.detail-section {
  max-width: 1320px;
  margin: 18px auto 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  padding: 14px 54px 58px;
  background: var(--old-blush);
  border: 1px solid var(--old-border);
}

.about-grid .section-copy h2 {
  display: block;
}

.section-copy h2,
.detail-copy h2,
.contact-panel h2 {
  font-family: var(--script);
  font-size: clamp(3.6rem, 6vw, 6.8rem);
  font-weight: 400;
  line-height: 1;
}

.section-heading h2 {
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3vw, 3.7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.section-copy p,
.section-heading p,
.detail-copy p,
.contact-panel p,
.detail-list p,
.rate-card p {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.8;
}

.eyebrow {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.portrait-stack {
  position: relative;
  align-self: stretch;
  gap: 0;
  min-height: 0;
}

.about-grid {
  align-items: stretch;
}

.about-grid .section-copy {
  align-self: start;
}

.about-grid .tilt-card {
  position: absolute;
  inset: 0;
  height: 100%;
}

.tilt-card,
.feature-image,
.contact-media {
  box-shadow: none;
  transform: none;
}

.tilt-card img,
.feature-image img,
.contact-media img {
  transition: transform 1800ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 1800ms ease;
}

.about-grid .tilt-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tilt-card:hover img,
.feature-image:hover img,
.contact-media:hover img,
.gallery-item:hover img,
.gallery-item:hover video,
.gallery-item:focus-visible img,
.gallery-item:focus-visible video {
  transform: scale(1.035);
}

.stats-panel {
  display: none;
}

.split-feature {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  background: #fff;
}

.feature-image img {
  aspect-ratio: 1.45 / 1;
  object-position: center;
}

.gallery-section {
  padding-top: 12px;
}

.gallery-section .section-heading {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1320px;
  margin: 0 auto;
}

.gallery-item,
.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(3),
.gallery-item:nth-child(8) {
  grid-column: auto;
  grid-row: auto;
  min-height: 640px;
  box-shadow: none;
}

.gallery-item img,
.gallery-item video {
  min-height: 640px;
  object-fit: cover;
  transition: transform 1800ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 1800ms ease;
}

.page-hero {
  position: relative;
  width: calc(100% + 8vw);
  min-height: 548px;
  margin: -12px -4vw 72px;
  overflow: hidden;
}

.page-hero img {
  height: 548px;
  min-height: 548px;
  object-fit: cover;
  object-position: center 45%;
}

.page-hero h2 {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 96px 0 0;
  color: rgba(255, 255, 255, 0.96);
}

.rates-section {
  background: #fff;
  color: #111;
}

.rates-section .section-heading {
  display: none;
}

.rates-grid {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.rate-card {
  min-height: 0;
  padding: 44px 40px;
  background: var(--old-blush);
  border: 1px solid var(--old-border);
}

.rate-card:hover,
.rate-card.preferred {
  background: var(--old-blush);
  transform: none;
}

.rate-card span {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.rate-card h3 {
  margin: 12px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.rate-card strong {
  margin-bottom: 8px;
  color: #111;
  font-size: 1rem;
  letter-spacing: 0;
}

.rates-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1320px;
  margin: 12px auto 0;
}

.rates-notes > div,
.detail-list div {
  padding: 44px 40px;
  background: var(--old-blush);
  border: 1px solid var(--old-border);
}

.rates-notes h3,
.detail-list h3 {
  margin: 32px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
}

.rates-notes h3:first-child {
  margin-top: 0;
}

.rates-notes p {
  margin-top: 0;
  line-height: 1.8;
}

.detail-section {
  padding-bottom: 80px;
}

.detail-list {
  gap: 12px;
  background: transparent;
  border: 0;
}

.faq-section {
  padding-top: 12px;
}

.faq-list {
  max-width: 980px;
}

.faq-list summary {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.contact-section {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  padding: 12px 4vw 60px;
  background: #fff;
}

.contact-media {
  position: relative;
  align-self: stretch;
  min-height: 0;
}

.contact-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.contact-panel {
  align-self: stretch;
  max-width: none;
  padding: 54px 48px;
  background: var(--old-blush);
  border: 1px solid var(--old-border);
  box-shadow: none;
}

.button {
  min-height: 42px;
  border-radius: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 700ms ease, border-color 700ms ease, color 700ms ease, background 700ms ease;
}

.phone-primary {
  margin: 22px 0 0;
  color: #111;
  font-size: 1.2rem;
}

.phone-primary a {
  color: var(--gold);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.button-dark {
  background: #111;
}

.button-light {
  background: #fff;
}

.site-footer {
  color: #111;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lightbox-arrow {
  top: 50%;
  bottom: auto;
  width: 70px;
  height: 70px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
}

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

.lightbox-prev {
  left: 34px;
}

.lightbox-next {
  right: 34px;
}

.lightbox img {
  transition: transform 900ms ease;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -84px 0 48px;
}

.gallery-filters button {
  min-width: 92px;
  border: 1px solid rgba(173, 132, 103, 0.26);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.86);
  color: var(--charcoal);
  cursor: pointer;
  font: 700 0.72rem / 1 var(--font-body);
  letter-spacing: 0.14em;
  padding: 13px 17px;
  text-transform: uppercase;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  border-color: var(--clay);
  background: var(--charcoal);
  color: var(--paper);
}

.gallery-video .video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 252, 247, 0.72);
  border-radius: 50%;
  background: rgba(18, 15, 13, 0.48);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  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: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid var(--paper);
  content: "";
  transform: translate(-50%, -50%);
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 3vw, 36px);
}

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

.gallery-more .button {
  width: auto;
  min-width: 156px;
}

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

.lightbox img,
.lightbox video {
  max-width: min(1120px, 88vw);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-arrow {
  z-index: 3;
}

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

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

.lightbox-video-controls button {
  border: 1px solid rgba(255, 252, 247, 0.38);
  border-radius: 999px;
  background: rgba(18, 15, 13, 0.58);
  color: var(--paper);
  cursor: pointer;
  font: 700 0.72rem / 1 var(--font-body);
  letter-spacing: 0.12em;
  padding: 12px 15px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.reveal {
  filter: none;
  transition: opacity 1800ms ease, transform 1800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.load-rise {
  animation-duration: 1800ms;
}

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

@media (max-width: 1040px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.92);
  }

  .brand span,
  .site-header.is-scrolled .brand span {
    font-size: 1.35rem;
  }

  .site-nav {
    top: 72px;
  }

  .site-nav a {
    font-size: 1rem;
  }

  .hero,
  .hero-media,
  .hero-media img {
    height: 620px;
    min-height: 620px;
  }

  .hero h1 {
    margin-top: 120px;
  }

  .about-grid,
  .split-feature,
  .detail-section,
  .contact-section,
  .rates-notes,
  .rates-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .detail-section {
    padding: 12px 22px 48px;
  }

  .about-grid .portrait-stack {
    position: static;
    min-height: auto;
  }

  .about-grid .tilt-card {
    position: static;
    height: auto;
  }

  .about-grid .tilt-card img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

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

  .gallery-item,
  .gallery-item img,
  .gallery-item video,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(8) {
    min-height: 520px;
  }

  .contact-panel {
    margin-top: 0;
  }

  .contact-media {
    position: static;
    min-height: 0;
  }

  .contact-media img {
    position: static;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .lightbox-arrow {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (max-width: 520px) {
  .hero,
  .hero-media,
  .hero-media img,
  .page-hero,
  .page-hero img {
    height: 520px;
    min-height: 520px;
  }

  .hero h1,
  .page-hero h2 {
    font-size: clamp(4.4rem, 22vw, 6rem);
  }

  .hero h1 {
    display: none;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gallery-section .section-heading {
    margin-bottom: 40px;
  }

  .rate-card,
  .rates-notes > div,
  .contact-panel {
    padding: 30px 22px;
  }
}

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

@media (max-width: 640px) {
  .gallery-grid.is-mobile-carousel-ready {
    display: block;
  }

  .gallery-grid.is-mobile-carousel-ready .gallery-item,
  .gallery-grid.is-mobile-carousel-ready .gallery-item:nth-child(1),
  .gallery-grid.is-mobile-carousel-ready .gallery-item:nth-child(6),
  .gallery-grid.is-mobile-carousel-ready .gallery-item:nth-child(3),
  .gallery-grid.is-mobile-carousel-ready .gallery-item:nth-child(8) {
    display: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    grid-column: auto;
    grid-row: auto;
  }

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

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

  .gallery-more {
    display: none;
  }

  .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(184, 155, 105, 0.44);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.74);
    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(184, 155, 105, 0.16);
    color: var(--wine);
    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;
    line-height: 1;
    text-align: center;
  }
}
