:root {
  --ink: #171312;
  --charcoal: #241d1c;
  --wine: #5a242b;
  --plum: #3a2630;
  --gold: #b9935b;
  --sage: #65736a;
  --sea: #214a57;
  --paper: #fffaf4;
  --ivory: #f7efe5;
  --mist: #ebe4dc;
  --muted: #6f625b;
  --line: rgba(23, 19, 18, 0.14);
  --line-light: rgba(255, 250, 244, 0.2);
  --shadow: 0 24px 70px rgba(23, 19, 18, 0.16);
  --header-height: 78px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --script: "Great Vibes", "Allura", "Segoe Script", cursive;
}

* {
  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: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.gate-open {
  overflow: hidden;
}

img,
video {
  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(23, 19, 18, 0.36), rgba(23, 19, 18, 0.78)),
    url("assets/images/violet-hero-clean-sides.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: 48px;
  color: var(--paper);
  text-align: center;
  background: rgba(23, 19, 18, 0.72);
  border: 1px solid rgba(255, 250, 244, 0.22);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  animation: ageIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.age-panel h1 {
  margin: 8px 0 18px;
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0;
}

.age-panel p:not(.eyebrow) {
  margin: 0 auto 30px;
  max-width: 34rem;
  color: rgba(255, 250, 244, 0.78);
}

.age-actions,
.hero-actions,
.direct-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 19px 46px;
  color: var(--paper);
  background: linear-gradient(rgba(23, 19, 18, 0.48), rgba(23, 19, 18, 0.04) 72%, rgba(23, 19, 18, 0));
  border-bottom: 0;
  box-shadow: none;
  transition: padding 300ms ease, background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header:has(.site-nav.is-open) {
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--ink);
  background: rgba(250, 244, 239, 0.96);
  box-shadow: 0 14px 38px rgba(43, 24, 25, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
}

.brand-mark {
  width: 44px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.brand-flower {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(1px);
}

.brand-name {
  font-family: var(--script);
  font-size: 2.18rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 26px;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  color: currentColor;
  opacity: 0.78;
  transition: opacity 250ms ease, color 250ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--wine), 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"] {
  opacity: 1;
}

.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);
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 150px 48px 82px;
  color: var(--paper);
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 7, 7, 0.5) 0%, rgba(18, 14, 13, 0.32) 26%, rgba(18, 14, 13, 0.07) 52%, rgba(18, 14, 13, 0) 78%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #050505;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero-copy {
  width: min(680px, 100%);
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 6.6rem;
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 34rem;
  margin: 0 0 30px;
  color: rgba(255, 250, 244, 0.84);
  font-family: var(--serif);
  font-size: 1.74rem;
  line-height: 1.25;
}

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

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(23, 19, 18, 0.2);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  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.36) 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);
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: rgba(255, 250, 244, 0.8);
}

.button-accent {
  color: var(--ink);
  background: #d9b978;
  border-color: #d9b978;
  box-shadow: 0 12px 34px rgba(185, 147, 91, 0.22);
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 250, 244, 0.08);
  border-color: rgba(255, 250, 244, 0.48);
}

.intro-band {
  padding: 12px 48px;
  background: linear-gradient(90deg, #3a161b 0%, #5a242b 52%, #742f38 100%);
  color: var(--paper);
  overflow: hidden;
}

.intro-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 56px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.section {
  padding: 104px 48px;
}

.section-copy h2,
.section-heading h2,
.contact-panel h2,
.profile-panel h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

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

.section-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 76px;
  background:
    linear-gradient(90deg, var(--paper), var(--ivory));
}

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

.tilt-card {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.tilt-card img,
.feature-image img,
.contact-media img,
.gallery-item 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.04);
  filter: saturate(1.04);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 76px;
  background: #f1e7dc;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  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.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.profile-section {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  background:
    linear-gradient(rgba(23, 19, 18, 0.74), rgba(23, 19, 18, 0.82)),
    url("assets/images/Violet-29.jpg") center 42% / cover;
}

.profile-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(23, 19, 18, 0.58);
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.profile-panel .eyebrow,
.rates-section .eyebrow {
  color: #d8bd88;
}

.profile-panel h2,
.profile-panel p {
  color: var(--paper);
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  margin-top: 34px;
}

.detail-columns h3,
.rates-notes h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0;
}

.detail-columns h3:not(:first-child) {
  margin-top: 30px;
}

.detail-list {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 250, 244, 0.18);
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 8px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255, 250, 244, 0.06);
}

.detail-list dt,
.detail-list dd {
  margin: 0;
}

.detail-list dt {
  color: rgba(255, 250, 244, 0.62);
  font-weight: 800;
}

.detail-list dd {
  color: var(--paper);
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-item {
  grid-column: span 4;
  min-height: 430px;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--mist);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 18px 52px rgba(23, 19, 18, 0.08);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(9) {
  grid-column: span 6;
  aspect-ratio: 5 / 4;
}

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

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.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.055);
  filter: saturate(1.06) contrast(1.02);
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

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

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

.page-hero {
  position: relative;
  min-height: 460px;
  margin: -104px -48px 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(23, 19, 18, 0.18), rgba(23, 19, 18, 0.72));
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.page-hero h2 {
  max-width: 900px;
  margin: 0;
  padding: 0 24px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.96;
  text-align: center;
  letter-spacing: 0;
}

.rates-section .section-heading p {
  color: rgba(255, 250, 244, 0.7);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 250, 244, 0.18);
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 8px;
}

.rate-card {
  min-height: 292px;
  padding: 36px;
  background: #231c1b;
  transition: transform 320ms ease, background 320ms ease;
}

.rate-card:hover {
  transform: translateY(-4px);
  background: #2f2421;
}

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

.rate-card span {
  color: #d8bd88;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rate-card h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.rate-card strong {
  display: block;
  margin-bottom: 16px;
  color: #e8cbbd;
  font-size: 1rem;
}

.rate-card p {
  margin: 0;
  color: rgba(255, 250, 244, 0.7);
}

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

.rates-notes > div {
  padding: 34px;
  background: #231c1b;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: 8px;
}

.rates-notes p {
  margin: 0;
  color: rgba(255, 250, 244, 0.72);
}

.reviews-section {
  background: linear-gradient(180deg, var(--paper), #f0e6dc);
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4px 4px 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(23, 19, 18, 0.1);
}

.review-card {
  min-height: 342px;
  display: grid;
  align-content: start;
  padding: 30px;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid rgba(23, 19, 18, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(23, 19, 18, 0.06);
  scroll-snap-align: start;
}

.review-card span {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-card h3 {
  margin: 16px 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.review-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.review-card strong {
  align-self: end;
  color: var(--wine);
  font-size: 0.9rem;
}

.faq-section {
  background: var(--paper);
}

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

.faq-list details {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 28px 56px 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.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 900ms 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 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 650ms ease,
    margin 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 650ms 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: 0;
  padding: 0;
  background: var(--ivory);
}

.contact-media {
  min-height: 760px;
  overflow: hidden;
  background: var(--mist);
}

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

.contact-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 76px 58px;
  text-align: center;
}

.contact-panel p {
  margin-left: auto;
  margin-right: auto;
}

.direct-contact-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: 100%;
  margin-top: 20px;
}

.direct-contact-card > span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.direct-contact-phone {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  text-decoration: none;
}

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

.direct-contact-notes {
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 34rem;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 19, 18, 0.12);
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: stretch;
  gap: 16px;
  padding: 18px 32px;
  color: rgba(255, 250, 244, 0.76);
  background: var(--ink);
  text-align: center;
}

.site-footer span,
.site-footer a {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

.site-footer .footer-credit {
  margin: 0;
  max-width: 34rem;
  opacity: 0.58;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.site-footer .footer-credit,
.site-footer .footer-credit a {
  font-size: 0.68rem;
  font-weight: 700;
}

.site-footer .footer-copy {
  justify-self: start;
  white-space: nowrap;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 72px 64px;
  background: rgba(14, 11, 10, 0.92);
  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-media {
  position: relative;
  display: grid;
  place-items: center;
  max-width: min(1120px, 88vw);
  max-height: 82vh;
}

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

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

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

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255, 250, 244, 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: 58px;
  height: 58px;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.lightbox-prev {
  left: 26px;
}

.lightbox-next {
  right: 26px;
}

.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, 250, 244, 0.38);
  border-radius: 4px;
  background: rgba(18, 15, 13, 0.58);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 12px 15px;
  backdrop-filter: blur(12px);
}

.load-rise {
  animation: loadRise 1400ms cubic-bezier(0.18, 0.82, 0.18, 1) both;
}

.reveal {
  --reveal-duration: 1250ms;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 34px, 0);
  transition-property: opacity, filter, transform;
  transition-duration: var(--reveal-duration);
  transition-timing-function: cubic-bezier(0.18, 0.82, 0.18, 1);
  transition-delay: 0ms;
  will-change: opacity, filter, transform;
}

.animations-ready .reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

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

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

@media (max-width: 1080px) {
  .site-header {
    justify-content: center;
    gap: 8px 18px;
    padding: 15px 20px;
    color: var(--ink);
    background: rgba(255, 250, 244, 0.94);
    box-shadow: 0 10px 28px rgba(43, 24, 25, 0.06);
    backdrop-filter: blur(16px);
  }

  .brand {
    flex: 1 1 100%;
    justify-content: center;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 30px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .site-nav {
    position: static;
    flex: 1 1 100%;
    justify-content: center;
    gap: 4px 18px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .site-nav a {
    padding: 0;
    font-size: clamp(0.72rem, 1.7vw, 0.9rem);
    border-bottom: 0;
  }

  .hero {
    min-height: calc(100svh - 104px);
    margin-top: 104px;
    padding: 96px 24px 76px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero-lede {
    font-size: 1.48rem;
  }

  .section {
    padding: 82px 24px;
  }

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

  .about-grid,
  .split-feature {
    gap: 46px;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-panel h2,
  .profile-panel h2 {
    font-size: 3.35rem;
  }

  .profile-panel {
    padding: 38px 28px;
  }

  .page-hero {
    margin: -82px -24px 58px;
  }

  .page-hero h2 {
    font-size: 3.8rem;
  }

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

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(9),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(11) {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }

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

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

  .contact-panel {
    padding: 64px 24px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .site-header {
    gap: 7px 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 32px;
    height: 25px;
  }

  .brand-name {
    font-size: 1.72rem;
  }

  .site-nav {
    gap: 3px 9px;
  }

  .site-nav a {
    font-size: clamp(0.64rem, 2.55vw, 0.74rem);
  }

  .age-panel {
    padding: 32px 22px;
  }

  .age-panel h1 {
    font-size: 3.5rem;
  }

  .hero {
    min-height: calc(100svh - 82px);
    margin-top: 82px;
    padding: 100px 18px 56px;
  }

  .hero h1 {
    font-size: 3.72rem;
  }

  .hero-lede {
    font-size: 1.3rem;
  }

  .hero-actions,
  .age-actions,
  .direct-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .intro-band {
    padding: 12px 18px;
  }

  .intro-line {
    gap: 8px 24px;
    font-size: 1.35rem;
  }

  .section {
    padding: 66px 18px;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-panel h2,
  .profile-panel h2 {
    font-size: 2.75rem;
  }

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

  .detail-list div {
    grid-template-columns: minmax(72px, 0.62fr) minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px;
  }

  .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(9),
  .gallery-grid.is-mobile-carousel-ready .gallery-item:nth-child(3),
  .gallery-grid.is-mobile-carousel-ready .gallery-item:nth-child(11) {
    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(23, 19, 18, 0.18);
    border-radius: 50%;
    background: rgba(255, 250, 244, 0.86);
    color: var(--ink);
    cursor: pointer;
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
    transition: border-color 300ms ease, background 300ms ease, color 300ms ease, transform 300ms ease;
  }

  .mobile-gallery-controls button:hover,
  .mobile-gallery-controls button:focus-visible {
    border-color: var(--gold);
    background: rgba(185, 147, 91, 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.78rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
  }

  .page-hero {
    min-height: 380px;
    margin: -66px -18px 46px;
  }

  .page-hero h2 {
    font-size: 3rem;
  }

  .rate-card,
  .rates-notes > div,
  .review-card {
    padding: 26px;
  }

  .reviews-track {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 1.45rem;
  }

  .direct-contact-phone {
    font-size: 2.15rem;
  }

  .site-footer {
    gap: 10px;
    padding: 16px 18px;
  }

  .site-footer span,
  .site-footer a {
    font-size: 0.62rem;
  }

  .lightbox {
    padding: 70px 16px 92px;
  }

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

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

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

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

@media (min-width: 520px) and (max-width: 700px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .hero-actions .button {
    width: auto;
    min-width: 136px;
  }
}
