:root {
  --bg: #fff;
  --text: #221d19;
  --muted: #4d453e;
  --line: rgba(45, 40, 36, 0.12);
  --gold: #b48a52;
  --accent: #a98245;
  --accent-dark: #806232;
  --accent-text: #6f552b;
  --accent-shadow: rgba(169, 130, 69, 0.18);
  --container: min(1180px, calc(100vw - 56px));
  --shadow: 0 18px 40px rgba(34, 24, 18, 0.08);
  --heading-xl: clamp(1.9rem, 2.28vw, 2.55rem);
  --heading-lg: clamp(1.7rem, 2vw, 2.28rem);
  --heading-md: clamp(1.55rem, 1.8vw, 2.15rem);
  --body-lg: clamp(0.94rem, 0.95vw, 1.04rem);
  --body-md: clamp(0.88rem, 0.9vw, 0.98rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Libre Baskerville", Georgia, serif;
  background: var(--bg);
}

.magic-scroll-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.magic-scroll-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(180, 138, 82, 0.1), transparent 16%),
    radial-gradient(circle at 82% 34%, rgba(255, 250, 242, 0.52), transparent 14%),
    radial-gradient(circle at 48% 78%, rgba(180, 138, 82, 0.08), transparent 18%);
  opacity: var(--magic-glow, 0);
  transition: opacity 420ms ease;
}

.magic-sparkle {
  position: absolute;
  width: var(--spark-size, 4px);
  height: var(--spark-size, 4px);
  left: var(--spark-x, 50%);
  top: var(--spark-y, 50%);
  border-radius: 50%;
  background: rgba(182, 139, 76, 0.42);
  box-shadow: 0 0 16px rgba(182, 139, 76, 0.2);
  opacity: 0;
  transform: translate3d(0, var(--spark-drift, 0px), 0) scale(0.72);
  animation: sparkle-drift var(--spark-duration, 7s) ease-in-out infinite;
  animation-delay: var(--spark-delay, 0s);
}

@keyframes sparkle-drift {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, calc(var(--spark-drift, 0px) + 16px), 0) scale(0.65);
  }

  34%,
  68% {
    opacity: var(--spark-opacity, 0.44);
    transform: translate3d(var(--spark-sway, 12px), var(--spark-drift, 0px), 0) scale(1);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 12px 16px;
  background: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(45, 40, 36, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 96px;
  gap: 28px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.brand {
  order: 1;
  width: 224px;
  height: 78px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-links {
  order: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 50%;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(45, 40, 36, 0.18);
  background: rgba(180, 138, 82, 0.08);
  outline: 0;
}

.brand-icon {
  display: block;
  width: 1.08rem;
  height: 1.08rem;
  fill: currentColor;
  flex: 0 0 auto;
}

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

.site-nav {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.site-nav a {
  color: #3f3832;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  color: #221d19;
  border-bottom: 1px solid rgba(34, 29, 25, 0.42);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 36px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: min(66vh, 660px);
  min-height: 390px;
  overflow: hidden;
  background: #efede9;
  transition: background-color 900ms ease;
}

.hero.is-ready .hero-slider {
  background: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 1200ms ease,
    transform 7000ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide img,
.hero-slide video,
.hero-slide iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  filter: brightness(1.16) saturate(1.04);
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03) translateX(0);
  transition:
    opacity 900ms ease,
    transform 9000ms ease;
}

.hero-slide.media-ready img,
.hero-slide.media-ready video,
.hero-slide.media-ready iframe {
  opacity: 1;
}

.hero-slide.is-active img,
.hero-slide.is-active video,
.hero-slide.is-active iframe {
  transform: scale(1.08) translateX(-1.2%);
}

.hero-slide-1 img,
.hero-slide-2 img,
.hero-slide-3 img {
  object-position: center 58%;
}

.hero-slide-4 img,
.hero-slide-5 img {
  object-position: center 52%;
}

.hero-slide video,
.hero-slide iframe {
  background: #1f1b18;
  filter: brightness(1.12) saturate(1.04);
}

.hero-slide-video-framed {
  background: #18201c;
}

.hero-slide-video-framed .hero-video-backdrop {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: blur(22px) brightness(0.58) saturate(1.12);
  transform: scale(1.08);
}

.hero-slide-video-framed .hero-video-main {
  position: absolute;
  left: 50%;
  width: min(100%, 960px);
  height: 100%;
  object-fit: contain;
  filter: brightness(1.02) saturate(1.06) contrast(1.03);
  transform: translateX(-50%);
  box-shadow: 0 0 70px rgba(9, 15, 12, 0.28);
}

.hero-slide-video-framed.is-active .hero-video-backdrop {
  transform: scale(1.08);
}

.hero-slide-video-framed.is-active .hero-video-main {
  transform: translateX(-50%);
}

@media (max-width: 760px) {
  .hero-slide-video-framed .hero-video-main {
    width: 100%;
    object-fit: cover;
  }
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.38) 0%, rgba(18, 15, 12, 0.18) 38%, rgba(18, 15, 12, 0.02) 72%),
    linear-gradient(180deg, rgba(20, 18, 16, 0.01) 0%, rgba(20, 18, 16, 0.08) 100%);
}

.hero-copy {
  position: absolute;
  left: max(28px, calc((100vw - 1220px) / 2));
  bottom: 42px;
  z-index: 3;
  max-width: min(440px, calc(100vw - 56px));
  padding: 18px 20px 20px;
  color: #fffaf2;
  background: linear-gradient(90deg, rgba(26, 21, 17, 0.7), rgba(26, 21, 17, 0.42));
  border-left: 1px solid rgba(255, 250, 242, 0.42);
  backdrop-filter: blur(2px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.hero.is-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker {
  margin: 0 0 6px;
  font-family: "Cinzel", serif;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.45vw, 2.85rem);
  font-weight: 500;
  line-height: 1.02;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 242, 0.86);
  color: #2d2824;
  background: rgba(255, 250, 242, 0.96);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-shadow: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: #fffaf2;
  border-color: #fffaf2;
  outline: 0;
  transform: translateY(-1px);
}

.hero-link {
  position: relative;
  color: #fffaf2;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: rgba(255, 250, 242, 0.52);
  transform: scaleX(0.72);
  transition: transform 180ms ease;
}

.hero-link:hover::after,
.hero-link:focus-visible::after {
  transform: scaleX(1);
}

.hero-dots {
  position: absolute;
  right: 128px;
  bottom: 38px;
  z-index: 3;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero.is-ready .hero-dots {
  opacity: 1;
}

.hero-dot {
  width: 38px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.home-feature-links {
  padding: 0 0 clamp(44px, 5.4vw, 70px);
  background: #fff;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.home-feature-card {
  position: relative;
  display: block;
  min-height: 270px;
  overflow: hidden;
  background: #2c261f;
}

.home-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 15, 12, 0.02) 36%, rgba(19, 15, 12, 0.7) 100%);
  transition: background 260ms ease;
}

.home-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-feature-card span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: #fffaf2;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.home-feature-card:hover img,
.home-feature-card:focus-visible img {
  transform: scale(1.045);
}

.home-feature-card:hover::after,
.home-feature-card:focus-visible::after {
  background: linear-gradient(180deg, rgba(19, 15, 12, 0.02) 28%, rgba(19, 15, 12, 0.82) 100%);
}

.home-feature-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.intro-section,
.story-section,
.celebrations-section {
  padding: clamp(44px, 5.6vw, 72px) 0 clamp(48px, 5.8vw, 78px);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
}

.editorial-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.editorial-copy {
  max-width: 470px;
  justify-self: center;
  text-align: center;
}

.intro-section .editorial-copy {
  max-width: 620px;
}

.intro-section .editorial-copy h1 {
  font-size: var(--heading-xl);
  line-height: 1.08;
}

.intro-section .editorial-copy p:not(.script-label) {
  font-size: var(--body-lg);
  line-height: 1.68;
}

.script-label {
  margin: 0 0 14px;
  color: #65492d;
  font-family: "Cinzel", serif;
  font-size: clamp(0.78rem, 0.9vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.editorial-copy h1,
.editorial-copy h2,
.overlay-copy h2,
.section-heading h2,
.footer-callout h2,
.celebration-card h3 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-weight: 500;
}

.editorial-copy h1,
.editorial-copy h2,
.overlay-copy h2,
.section-heading h2,
.footer-callout h2 {
  font-size: var(--heading-xl);
  line-height: 1.08;
}

.section-heading h2 {
  font-size: var(--heading-lg);
}

.editorial-copy p:not(.script-label),
.overlay-copy p:not(.script-label),
.section-heading p:not(.script-label),
.footer-brand p,
.footer-column a {
  color: var(--muted);
  font-size: var(--body-md);
  font-weight: 500;
  line-height: 1.68;
}

.editorial-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid rgba(169, 130, 69, 0.72);
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-primary {
  color: #fffaf2;
  background: linear-gradient(135deg, var(--accent) 0%, #947239 100%);
  border-color: rgba(169, 130, 69, 0.92);
  box-shadow: 0 14px 30px var(--accent-shadow);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fffaf2;
  background: linear-gradient(135deg, #b38e4e 0%, var(--accent-dark) 100%);
  border-color: rgba(179, 142, 78, 0.96);
  box-shadow: 0 16px 34px rgba(169, 130, 69, 0.24);
  outline: 0;
}

.script-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--accent-text);
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.editorial-actions .script-link {
  padding-bottom: 8px;
}

.editorial-actions .script-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 130, 69, 0.68), transparent);
  transform: scaleX(0.72);
  transform-origin: center;
  transition: transform 180ms ease;
}

.editorial-actions .script-link:hover::after,
.editorial-actions .script-link:focus-visible::after {
  transform: scaleX(1);
}

.editorial-media {
  margin: 0;
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

.story-section {
  padding: clamp(46px, 5.4vw, 68px) 0 clamp(50px, 5.8vw, 76px);
  background: #fff;
}

.story-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.86fr);
  gap: clamp(38px, 5vw, 70px);
}

.story-media {
  position: relative;
  overflow: hidden;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0) 70%, rgba(255, 253, 248, 0.18) 100%),
    linear-gradient(180deg, rgba(45, 40, 36, 0.02), rgba(45, 40, 36, 0.08));
}

.story-media img {
  aspect-ratio: 1.28 / 0.9;
  object-position: center center;
}

.story-copy {
  max-width: 540px;
  justify-self: start;
  text-align: left;
}

.story-copy .script-label {
  margin-bottom: 8px;
}

.story-copy h1,
.story-copy h2 {
  max-width: 500px;
  font-size: var(--heading-lg);
  line-height: 1.08;
}

.story-copy p:not(.script-label) {
  max-width: 520px;
  font-size: var(--body-md);
  line-height: 1.68;
}

.story-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.story-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--accent-text);
  background: rgba(255, 255, 252, 0.9);
  border: 1px solid rgba(169, 130, 69, 0.34);
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  box-shadow: 0 6px 18px rgba(45, 40, 36, 0.045);
  text-transform: uppercase;
}

.overlay-section {
  position: relative;
  padding: clamp(48px, 5.2vw, 68px) 0 clamp(54px, 5.6vw, 76px);
  overflow: hidden;
  background: #f8f8f6;
}

.overlay-section::before {
  content: none;
}

.overlay-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 58px;
}

.overlay-copy {
  min-height: 340px;
  display: grid;
  align-content: end;
  padding: 30px 34px;
  color: #fffaf2;
  background:
    linear-gradient(180deg, rgba(27, 22, 18, 0.18), rgba(27, 22, 18, 0.76)),
    url("../assets/img/client-vip.jpg") center center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(45, 40, 36, 0.08);
  text-align: left;
}

.overlay-copy h2 {
  color: #fffaf2;
  font-size: var(--heading-md);
  line-height: 1.08;
}

.overlay-copy p:not(.script-label) {
  max-width: 340px;
  color: rgba(255, 250, 242, 0.92);
  font-size: 0.9rem;
  line-height: 1.64;
}

.overlay-content {
  align-self: center;
}

.overlay-content > .script-label {
  margin: 0 0 20px;
  color: #65492d;
  text-align: left;
}

.overlay-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  align-self: center;
  padding: 22px 30px;
  background: rgba(255, 255, 252, 0.78);
  border-top: 1px solid rgba(45, 40, 36, 0.1);
  border-bottom: 1px solid rgba(45, 40, 36, 0.1);
  box-shadow: 0 18px 42px rgba(45, 40, 36, 0.05);
}

.overlay-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(45, 40, 36, 0.08);
}

.overlay-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.overlay-list span {
  color: #765531;
  font-family: "Cinzel", serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.overlay-list p {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(0.96rem, 1.05vw, 1.12rem);
  line-height: 1.08;
}

.overlay-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  color: var(--accent-text);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(169, 130, 69, 0.42);
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.overlay-cta:hover,
.overlay-cta:focus-visible {
  color: #fffaf2;
  background: var(--accent);
  border-color: var(--accent);
  outline: 0;
}

.gallery-section {
  position: relative;
  padding: clamp(42px, 4.8vw, 62px) 0 clamp(48px, 5vw, 68px);
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f7f7f4 100%);
}

.gallery-heading {
  margin-bottom: 24px;
}

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

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

.gallery-thumb {
  position: relative;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #2d2824;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(45, 40, 36, 0.08);
  isolation: isolate;
}

.gallery-thumb img,
.gallery-thumb video,
.gallery-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    transform 900ms ease,
    filter 420ms ease;
}

.gallery-thumb video,
.gallery-thumb iframe {
  background: #2d2824;
}

.gallery-thumb-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 250, 242, 0.22), transparent 12%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(45, 40, 36, 0.08));
  mix-blend-mode: screen;
  opacity: 0.72;
  transition: opacity 240ms ease;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 42%, rgba(22, 18, 15, 0.72) 100%);
  opacity: 0.82;
  transition: opacity 240ms ease;
}

.gallery-thumb span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 4;
  color: #fffaf2;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.48);
}

.gallery-thumb .media-badge {
  top: 16px;
  right: 16px;
  bottom: auto;
  left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #2d2824;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(255, 250, 242, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: none;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.08);
}

.gallery-thumb:hover video,
.gallery-thumb:focus-visible video,
.gallery-thumb:hover iframe,
.gallery-thumb:focus-visible iframe {
  filter: saturate(1.03) contrast(1.01);
  transform: scale(1.02);
}

.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
  opacity: 1;
}

.gallery-thumb-video:hover::before,
.gallery-thumb-video:focus-visible::before {
  opacity: 0.95;
}

.gallery-thumb:focus-visible {
  outline: 2px solid rgba(157, 119, 70, 0.74);
  outline-offset: 4px;
}

.gallery-thumb-1 {
  grid-column: auto;
  grid-row: auto;
}

.gallery-thumb-2 {
  grid-column: auto;
  grid-row: auto;
}

.gallery-thumb-3 {
  grid-column: auto;
  grid-row: auto;
}

.gallery-thumb-4 {
  grid-column: auto;
  grid-row: auto;
}

.gallery-thumb-5 {
  grid-column: auto;
  grid-row: auto;
}

.gallery-thumb-6 {
  grid-column: auto;
  grid-row: auto;
}

.gallery-thumb-6 img {
  object-position: center 58%;
}

.gallery-thumb-7,
.gallery-thumb-8,
.gallery-thumb-9 {
  grid-column: auto;
  grid-row: auto;
}

.gallery-thumb:nth-child(n + 10) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-page-hero {
  padding: clamp(58px, 7vw, 96px) 0 clamp(42px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 244, 0.88)),
    url("../assets/img/imagen-140.jpg") center 52% / cover no-repeat;
  border-bottom: 1px solid rgba(45, 40, 36, 0.08);
}

.gallery-page-hero-inner {
  max-width: 820px;
  text-align: center;
}

.gallery-page-hero h1 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(2.05rem, 3.2vw, 3.5rem);
  font-weight: 500;
  line-height: 1.04;
}

.gallery-page-hero p:not(.script-label) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: var(--body-lg);
  font-weight: 500;
  line-height: 1.7;
}

.events-entry-section {
  padding: clamp(54px, 6.5vw, 86px) 0 clamp(64px, 7vw, 96px);
  background: #fff;
}

.events-entry-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 46px);
  text-align: center;
}

.events-entry-heading h1,
.events-panel-heading h2 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(2.05rem, 3.2vw, 3.5rem);
  font-weight: 500;
  line-height: 1.04;
}

.events-entry-heading > p:not(.script-label) {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: var(--body-lg);
  line-height: 1.7;
}

.event-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}

.event-choice-card {
  position: relative;
  min-height: clamp(310px, 34vw, 440px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  text-align: left;
  border: 0;
  background: #2d2824;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(45, 40, 36, 0.1);
}

.event-choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.02) 30%, rgba(20, 16, 13, 0.78) 100%);
  transition: background 220ms ease;
}

.event-choice-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(310px, 34vw, 440px);
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.event-choice-card span {
  position: absolute;
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(24px, 3vw, 36px);
  left: clamp(24px, 3vw, 38px);
  z-index: 1;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.38);
}

.event-choice-card:hover img,
.event-choice-card:focus-visible img,
.event-choice-card.is-active img {
  transform: scale(1.045);
}

.event-choice-card:hover::after,
.event-choice-card:focus-visible::after,
.event-choice-card.is-active::after {
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.02) 24%, rgba(20, 16, 13, 0.88) 100%);
}

.event-choice-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.events-panel[hidden] {
  display: none !important;
}

.events-panel:not([hidden]) {
  animation: events-panel-enter 420ms ease both;
}

@keyframes events-panel-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.public-events-section {
  padding: clamp(56px, 6vw, 84px) 0;
  background: #fff;
}

.public-events-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.public-events-head h2 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
}

.public-events-controls {
  display: flex;
  gap: 8px;
}

.public-events-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(45, 40, 36, 0.18);
  cursor: pointer;
}

.public-events-controls button:hover,
.public-events-controls button:focus-visible {
  color: #fff;
  background: var(--accent-dark);
}

.public-events-carousel {
  display: block;
  overflow: hidden;
  padding: 2px;
  touch-action: pan-y;
}

.public-events-track {
  position: relative;
  display: block;
  height: clamp(340px, 31vw, 400px);
}

.public-events-track .public-event-card {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.008);
  transition:
    opacity 0.75s ease,
    visibility 0s linear 0.75s,
    transform 0.75s ease;
}

.public-events-track .public-event-card.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition-delay: 0s;
}

.public-events-carousel.has-single-event {
  overflow: hidden;
}

.public-event-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(270px, 0.72fr);
  overflow: hidden;
  height: clamp(340px, 31vw, 400px);
  min-height: 0;
  color: var(--text);
  background: #f5f0e8;
  border: 0;
  box-shadow: 0 14px 34px rgba(45, 40, 36, 0.13);
  scroll-snap-align: start;
}

.public-event-image {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #29251f;
}

.public-event-image::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: var(--event-image);
  background-position: center;
  background-size: cover;
  filter: blur(20px);
  opacity: 0;
  transform: scale(1.08);
}

.public-event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 21, 18, 0.22) 0%, transparent 45%);
}

.public-event-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.public-event-card.is-poster .public-event-image::before {
  opacity: 0.45;
}

.public-event-card.is-poster .public-event-image img {
  object-fit: contain;
}

.public-event-card:hover .public-event-image img {
  transform: scale(1.035);
}

.public-event-date {
  position: absolute;
  top: clamp(20px, 3vw, 34px);
  left: clamp(20px, 3vw, 36px);
  display: grid;
  min-width: 66px;
  padding: 10px 13px;
  z-index: 3;
  color: #49371e;
  background: #fff5df;
  border: 1px solid rgba(73, 55, 30, 0.16);
  box-shadow: 0 8px 22px rgba(25, 21, 18, 0.18);
  text-align: center;
  text-transform: uppercase;
}

.public-event-date strong {
  font-family: "Bodoni Moda", serif;
  font-size: 1.5rem;
  line-height: 1;
}

.public-event-date span {
  margin-top: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.public-event-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.6vw, 44px);
  border-left: 1px solid rgba(73, 55, 30, 0.08);
}

.public-event-copy p {
  margin: 0 0 16px;
  color: #8d6a32;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.public-event-copy h3 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3.1vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
}

.public-event-register {
  align-self: flex-start;
  margin-top: 0.45rem;
  padding: 0.78rem 1.35rem;
  color: #fff;
  background: #8f6a32;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.public-event-register:hover,
.public-event-register:focus-visible {
  background: #6f4f24;
  transform: translateY(-1px);
}

.event-registration-dialog {
  width: min(92vw, 460px);
  max-height: 90vh;
  padding: 0;
  color: #2d2824;
  background: transparent;
  border: 0;
  border-radius: 22px;
}

.event-registration-dialog::backdrop {
  background: rgba(20, 17, 14, .72);
  backdrop-filter: blur(4px);
}

.event-registration-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .48rem .65rem;
  padding: 1.15rem 1.25rem;
  background: #fbf7f0;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.event-registration-form h2,
.event-registration-form p {
  grid-column: 1 / -1;
  margin: 0;
}

.event-registration-form .script-label {
  font-size: .76rem;
  line-height: 1.2;
  letter-spacing: .1em;
}

.event-registration-form h2 {
  max-width: calc(100% - 42px);
  font-size: clamp(1.3rem, 3vw, 1.55rem);
  line-height: 1.08;
}

.event-registration-event {
  padding: .48rem .65rem;
  font-size: .84rem;
  line-height: 1.35;
  font-weight: 700;
  background: #efe5d5;
  border-radius: 12px;
}

.event-registration-form label {
  display: grid;
  gap: .25rem;
  font-weight: 700;
  font-size: .78rem;
  line-height: 1.25;
}

.event-registration-form > label:first-of-type,
.event-registration-form > label:last-of-type,
.event-registration-form > .event-registration-trap,
.event-registration-form > .button {
  grid-column: 1 / -1;
}

.event-registration-form input,
.event-registration-form select {
  width: 100%;
  min-height: 38px;
  padding: .48rem .62rem;
  color: #2d2824;
  background: #fff;
  border: 1px solid rgba(45, 40, 36, .24);
  border-radius: 10px;
  font-family: inherit;
  font-size: .84rem;
  line-height: 1.25;
}

.event-registration-form .button {
  min-height: 38px;
  padding: .55rem .8rem;
  font-size: .82rem;
  line-height: 1.2;
}

.event-registration-form .form-status {
  font-size: .84rem;
  line-height: 1.35;
}

.event-registration-form input:focus,
.event-registration-form select:focus {
  border-color: #8f6a32;
  outline: 3px solid rgba(143, 106, 50, .16);
}

.event-registration-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 32px;
  height: 34px;
  padding: 0;
  color: #2d2824;
  background: #eee5d9;
  border: 0;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 560px) {
  .event-registration-dialog {
    width: min(94vw, 500px);
  }

  .event-registration-form {
    grid-template-columns: 1fr;
    gap: .62rem;
    padding: 1.1rem;
  }

  .event-registration-form > * {
    grid-column: 1;
  }

  .event-registration-form h2 {
    font-size: 1.35rem;
  }
}

.event-registration-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.public-events-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.public-events-dots {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  width: max-content;
  max-width: min(100%, 760px);
  overflow-x: auto;
  margin-inline: auto;
  margin-top: 16px;
  padding: 4px 12px 9px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
}

.public-events-dots button {
  position: relative;
  width: 84px;
  height: 58px;
  overflow: hidden;
  padding: 0;
  background: #eee8df;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  flex: 0 0 84px;
  opacity: 0.62;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.public-events-dots button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-events-dots button[aria-current="true"] {
  background: #eee8df;
  border-color: #8d6a32;
  opacity: 1;
  transform: translateY(-3px);
}

.public-events-contact-wrap {
  margin-top: clamp(28px, 4vw, 48px);
}

.public-events-contact-wrap .public-events-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px 28px;
}

.public-events-contact-wrap .public-events-contact .script-label,
.public-events-contact-wrap .public-events-contact h2,
.public-events-contact-wrap .public-events-contact p {
  grid-column: 1;
}

@media (max-width: 760px) {
  .public-events-track {
    height: calc(min(102vw, 410px) + 150px);
  }

  .public-event-card {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    min-height: 0;
  }

  .public-event-image {
    height: auto;
    min-height: 0;
  }

  .public-event-image::after {
    background: linear-gradient(0deg, rgba(25, 21, 18, 0.18) 0%, transparent 52%);
  }

  .public-event-copy {
    min-height: 150px;
    padding: 24px;
  }

  .public-event-copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .public-events-dots {
    width: 100%;
    padding: 4px 12px 8px;
    scrollbar-width: none;
  }

  .public-events-dots button {
    flex: 0 0 72px;
    height: 50px;
  }

  .public-events-contact-wrap .public-events-contact {
    display: block;
  }

  .public-events-contact-wrap .public-events-phone,
  .public-events-contact-wrap .button {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-events-track .public-event-card {
    transition: none;
  }
}

.public-events-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: clamp(24px, 3.2vw, 44px);
  align-items: start;
}

.public-calendar-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: #fffdf9;
  border: 1px solid rgba(45, 40, 36, 0.1);
  box-shadow: 0 16px 38px rgba(45, 40, 36, 0.06);
}

.public-calendar-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.public-calendar-head h2,
.public-events-contact h2 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.public-calendar-nav {
  display: grid;
  grid-template-columns: 38px minmax(118px, auto) 38px;
  align-items: center;
  gap: 8px;
}

.public-calendar-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(45, 40, 36, 0.14);
  cursor: pointer;
}

.public-calendar-nav button:hover,
.public-calendar-nav button:focus-visible {
  color: #fff;
  background: var(--accent-dark);
  outline: 0;
}

.public-calendar-nav p {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  text-align: center;
  text-transform: capitalize;
}

.public-calendar-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
}

.public-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(74px, 1fr));
  min-width: 560px;
  border-top: 1px solid rgba(45, 40, 36, 0.1);
  border-left: 1px solid rgba(45, 40, 36, 0.1);
}

.public-calendar-weekday,
.public-calendar-day {
  min-width: 0;
  padding: 8px;
  border-right: 1px solid rgba(45, 40, 36, 0.1);
  border-bottom: 1px solid rgba(45, 40, 36, 0.1);
}

.public-calendar-weekday {
  color: var(--muted);
  background: #f3ede4;
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.public-calendar-day {
  min-height: 92px;
  background: #fff;
}

.public-calendar-day.is-other-month {
  color: rgba(45, 40, 36, 0.4);
  background: #faf7f2;
}

.public-calendar-day.is-today .public-calendar-date {
  color: #fff;
  background: var(--accent-dark);
}

.public-calendar-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 5px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.public-event-pill {
  display: block;
  margin-top: 5px;
  padding: 5px 6px;
  color: #fff;
  background: #806232;
  font-size: 0.61rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.public-event-pill.is-blocked {
  background: #4d453e;
}

.public-calendar-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.public-events-contact {
  padding: clamp(28px, 3.6vw, 42px);
  color: #fffaf2;
  background: #2d2824;
  box-shadow: 0 18px 40px rgba(45, 40, 36, 0.15);
}

.public-events-contact .script-label {
  color: #d8b57d;
}

.public-events-contact > p:not(.script-label) {
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.94rem;
  line-height: 1.7;
}

.public-events-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 22px;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
}

.public-events-contact .button {
  width: 100%;
  border-color: #fffaf2;
}

.event-showcase-section {
  padding: clamp(34px, 4.6vw, 58px) 0 clamp(46px, 5vw, 70px);
  background: #fff;
}

.event-showcase-title {
  margin: 0 0 28px;
  color: #5f6570;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.45vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.event-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.event-showcase-card {
  display: grid;
  grid-template-rows: minmax(190px, 1fr) 118px;
  min-height: 310px;
  background: #e9e9e9;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-showcase-card:hover,
.event-showcase-card:focus-visible {
  box-shadow: 0 16px 34px rgba(45, 40, 36, 0.1);
  outline: 0;
  transform: translateY(-2px);
}

.event-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.event-showcase-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 22px clamp(20px, 4vw, 48px);
  text-align: center;
}

.event-showcase-card span {
  color: #626974;
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.3vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.event-showcase-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

body[data-page="events"] .event-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

body[data-page="events"] .event-showcase-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(300px, 29vw, 390px);
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-align: inherit;
  border: 0;
  background: #332d27;
  box-shadow: 0 14px 34px rgba(45, 40, 36, 0.08);
  cursor: pointer;
}

body[data-page="events"] .event-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 29vw, 390px);
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="events"] .event-showcase-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(22px, 2.5vw, 32px);
  text-align: left;
  background: linear-gradient(180deg, rgba(24, 19, 15, 0.01) 38%, rgba(24, 19, 15, 0.76) 100%);
}

body[data-page="events"] .event-showcase-copy p {
  max-width: 34ch;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

body[data-page="events"] .event-showcase-card span {
  color: #fffaf2;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-align: left;
  text-transform: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

body[data-page="events"] .event-showcase-card:hover img,
body[data-page="events"] .event-showcase-card:focus-visible img {
  transform: scale(1.045);
}

body[data-page="events"] .event-detail-card img {
  aspect-ratio: 1.22 / 0.82;
}

.events-more-section {
  background: #f8f4ed;
}

.events-more-heading {
  margin-bottom: clamp(24px, 3vw, 36px);
  text-align: center;
}

.events-more-heading .script-label {
  margin-bottom: 4px;
}

body[data-page="events"] .events-more-section .event-detail-card {
  overflow: hidden;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body[data-page="events"] .events-more-section .event-detail-card:hover {
  box-shadow: 0 18px 38px rgba(45, 40, 36, 0.1);
  transform: translateY(-2px);
}

body[data-page="events"] .events-more-section .event-detail-copy {
  padding: 24px;
}

.album-overview-section,
.event-detail-section,
.gallery-detail-section {
  padding: clamp(56px, 6vw, 82px) 0;
}

.album-overview-section {
  background: #fff;
}

.album-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.album-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: rgba(255, 255, 252, 0.92);
  border: 1px solid rgba(45, 40, 36, 0.1);
  box-shadow: 0 14px 30px rgba(45, 40, 36, 0.04);
}

.album-card-media {
  display: block;
  overflow: hidden;
  background: #2d2824;
}

.album-card-media {
  position: relative;
}

.album-card-media img,
.album-card-media video,
.album-card-media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 0.86;
  border: 0;
  object-fit: cover;
  pointer-events: none;
  transition: transform 640ms ease, filter 260ms ease;
}

.album-card-media:hover img,
.album-card-media:focus-visible img,
.album-card-media:hover video,
.album-card-media:focus-visible video,
.album-card-media:hover iframe,
.album-card-media:focus-visible iframe {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.04);
}

.album-card-media .media-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #2d2824;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(255, 250, 242, 0.74);
  font-family: "Cinzel", serif;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.album-card-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.album-card-copy span,
.album-detail-head .script-label {
  color: #65492d;
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.album-card-copy h3,
.album-detail-head h3 {
  margin: 0;
  color: var(--text);
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: clamp(1.24rem, 1.65vw, 1.72rem);
  font-weight: 500;
  line-height: 1.12;
}

.album-card-copy p,
.album-detail-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.62;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.event-detail-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 255, 252, 0.9);
  border: 1px solid rgba(45, 40, 36, 0.09);
  box-shadow: 0 16px 34px rgba(45, 40, 36, 0.045);
}

.event-detail-card img {
  width: 100%;
  aspect-ratio: 1.22 / 0.82;
  object-fit: cover;
}

.event-detail-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #2d2824;
  border: 0;
  cursor: zoom-in;
}

.event-detail-media img {
  display: block;
  transition: transform 420ms ease, filter 240ms ease;
}

.event-detail-media-collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  aspect-ratio: 1.22 / 0.82;
}

.event-detail-media-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

.event-detail-media-collage img:first-child {
  grid-row: 1 / 3;
}

.event-detail-media:hover img,
.event-detail-media:focus-visible img {
  filter: brightness(0.9);
  transform: scale(1.025);
}

.event-detail-media:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.event-detail-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: #fff;
  background: rgba(24, 21, 19, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

body[data-page="space"] .event-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

body[data-page="space"] .event-detail-card {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body[data-page="space"] .event-detail-copy {
  align-content: start;
  padding: clamp(22px, 2.8vw, 30px);
}

body[data-page="space"] .event-detail-card img {
  height: auto;
  aspect-ratio: 1.45 / 1;
}

body[data-page="space"] .event-detail-card:hover {
  box-shadow: 0 18px 38px rgba(45, 40, 36, 0.1);
  transform: translateY(-2px);
}

.space-contact-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: clamp(34px, 4vw, 52px);
  text-align: center;
}

.space-contact-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: var(--body-md);
  font-weight: 500;
  line-height: 1.65;
}

.event-detail-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.event-detail-copy h3,
.detail-gallery-copy h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.event-detail-copy p,
.detail-gallery-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.68;
}

.gallery-detail-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7f7f4 100%);
}

.album-detail-list {
  display: grid;
  gap: 30px;
}

.album-detail-block {
  padding-top: 2px;
}

.album-detail-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(45, 40, 36, 0.12);
}

.album-detail-summary {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.album-detail-summary > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.68;
}

.album-download-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 15px;
  color: #fff;
  background: var(--green, #405d4a);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.album-download-link:hover,
.album-download-link:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.album-detail-head .script-label {
  margin-bottom: 8px;
}

.album-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}

.album-media-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: #fffaf2;
  background: #2d2824;
  border: 0;
  cursor: pointer;
}

.album-media-card img,
.album-media-card video,
.album-media-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.78;
  height: auto;
  border: 0;
  object-fit: cover;
  pointer-events: none;
  transition: transform 620ms ease, filter 260ms ease;
}

.album-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(22, 18, 15, 0.72) 100%);
  pointer-events: none;
}

.album-media-card:hover img,
.album-media-card:focus-visible img,
.album-media-card:hover video,
.album-media-card:focus-visible video,
.album-media-card:hover iframe,
.album-media-card:focus-visible iframe {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.04);
}

.album-media-card > span:not(.media-badge) {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  z-index: 2;
  overflow: hidden;
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.album-media-card .media-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #2d2824;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(255, 250, 242, 0.74);
  font-family: "Cinzel", serif;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-gallery-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  background: rgba(255, 255, 252, 0.9);
  border: 1px solid rgba(45, 40, 36, 0.09);
  box-shadow: 0 16px 34px rgba(45, 40, 36, 0.045);
}

.detail-gallery-media {
  position: relative;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #2d2824;
  cursor: pointer;
}

.detail-gallery-media img,
.detail-gallery-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 320ms ease;
}

.detail-gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22, 18, 15, 0.48) 100%);
  pointer-events: none;
}

.detail-gallery-media:hover img,
.detail-gallery-media:focus-visible img,
.detail-gallery-media:hover video,
.detail-gallery-media:focus-visible video {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.detail-gallery-media .media-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #2d2824;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(255, 250, 242, 0.72);
  font-family: "Cinzel", serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-gallery-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
}

.detail-gallery-copy span {
  color: #765531;
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

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

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

.celebration-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: rgba(255, 255, 252, 0.86);
  border: 1px solid rgba(45, 40, 36, 0.09);
  box-shadow: 0 16px 34px rgba(45, 40, 36, 0.045);
  text-align: left;
}

.celebration-card img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.celebration-card h3 {
  margin: 20px 20px 0;
  font-size: 0.95rem;
  line-height: 1.22;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.celebration-card p {
  flex: 1;
  margin: 12px 20px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.66;
}

.celebration-card .script-link {
  display: inline-block;
  align-self: flex-start;
  margin: 18px 20px 22px;
  padding-bottom: 7px;
  color: var(--accent-text);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.celebration-card .script-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(169, 130, 69, 0.62);
}

.contact-section {
  padding: clamp(42px, 4.8vw, 62px) 0 clamp(48px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 246, 0.98)),
    #f8f8f6;
  border-top: 1px solid rgba(45, 40, 36, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 4.8vw, 58px);
  align-items: start;
}

.contact-copy {
  max-width: 620px;
}

.contact-copy h1,
.contact-copy h2 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", serif;
  font-size: var(--heading-xl);
  font-weight: 500;
  line-height: 1.06;
}

.contact-copy p:not(.script-label) {
  max-width: 520px;
  color: var(--muted);
  font-size: var(--body-md);
  font-weight: 500;
  line-height: 1.55;
}

.booking-form {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(45, 40, 36, 0.1);
  box-shadow: 0 18px 42px rgba(45, 40, 36, 0.055);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: var(--accent-text);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(45, 40, 36, 0.16);
  border-radius: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #6b625b;
  opacity: 1;
}

.booking-form textarea {
  resize: vertical;
  min-height: 74px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(169, 130, 69, 0.84);
  box-shadow: 0 0 0 3px rgba(169, 130, 69, 0.14);
  outline: 0;
}

.booking-form button {
  justify-self: start;
  min-height: 46px;
  margin-top: 2px;
}

.booking-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #315f3d;
}

.form-status.is-error {
  color: #8a2f25;
}

.form-status.is-pending {
  color: #725331;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.contact-details {
  display: grid;
  padding: 4px 22px;
  background: rgba(255, 255, 252, 0.9);
  border: 1px solid rgba(45, 40, 36, 0.09);
  box-shadow: 0 18px 42px rgba(45, 40, 36, 0.055);
}

.contact-details article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(45, 40, 36, 0.1);
}

.contact-details article:last-child {
  border-bottom: 0;
}

.contact-details span {
  color: var(--accent-text);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.42;
}

.map-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 40, 36, 0.1);
  box-shadow: 0 18px 42px rgba(45, 40, 36, 0.055);
  background: #f5f5f2;
}

.map-panel iframe,
.map-panel .map-image {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  filter: saturate(0.86) contrast(0.94);
  object-fit: cover;
}

.map-open {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fffaf2;
  background: rgba(45, 40, 36, 0.86);
  font-family: "Cinzel", serif;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 54px 0 22px;
  background: #fff;
  border-top: 1px solid rgba(45, 40, 36, 0.08);
}

.footer-callout {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 44px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1.45fr) minmax(180px, 0.55fr) minmax(180px, 0.55fr);
  gap: 42px;
  align-items: center;
  padding: 34px 38px;
  background: rgba(255, 255, 252, 0.76);
  border: 1px solid rgba(45, 40, 36, 0.08);
}

.footer-brand {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.footer-brand img {
  width: 320px;
  height: auto;
  object-fit: contain;
}

.footer-brand-copy {
  display: grid;
  gap: 0;
}

.footer-brand-copy p {
  max-width: 360px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-left: 28px;
  border-left: 1px solid rgba(45, 40, 36, 0.08);
}

.footer-column h3 {
  margin: 0 0 6px;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
  outline: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: rgba(34, 29, 25, 0.82);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: #725737;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--text);
  outline: 0;
}

.floating-dot {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.floating-dot .brand-icon {
  width: 2.35rem;
  height: 2.35rem;
}

.floating-dot:hover,
.floating-dot:focus-visible {
  background: #1fbd5b;
  outline: 0;
}

.back-home {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  color: #fffaf2;
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(34, 29, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(34, 29, 25, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background 180ms ease;
}

.back-home i {
  font-size: 0.82rem;
}

.back-home:hover,
.back-home:focus-visible {
  color: #fff;
  background: #806232;
  outline: 0;
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(1080px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 18px 64px 22px;
  border: 0;
  background: rgba(18, 18, 18, 0.97);
  overflow: auto;
  transform: translate(-50%, -50%);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.lightbox-count {
  margin: 0;
  color: rgba(255, 250, 242, 0.64);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.08);
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 250, 242, 0.16);
  border-color: rgba(255, 250, 242, 0.42);
  outline: 0;
}

.lightbox-media {
  margin: 0;
}

.lightbox-media.is-entering {
  animation: lightbox-media-in 280ms ease both;
}

@keyframes lightbox-media-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lightbox-media img,
.lightbox-media video,
.lightbox-media iframe {
  width: 100%;
  max-height: 78vh;
  border: 0;
  object-fit: contain;
}

.lightbox-media video,
.lightbox-media iframe {
  background: #080808;
}

.lightbox-media iframe {
  aspect-ratio: 16 / 9;
}

.lightbox-media figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 40px, 1180px);
    --heading-xl: clamp(1.72rem, 3.8vw, 2.25rem);
    --heading-lg: clamp(1.56rem, 3.4vw, 2.02rem);
    --heading-md: clamp(1.42rem, 3.3vw, 1.9rem);
  }

  .editorial-grid,
  .editorial-grid.reverse,
  .overlay-grid,
  .celebration-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .public-events-layout {
    grid-template-columns: 1fr;
  }

  .editorial-copy,
  .overlay-copy {
    max-width: 100%;
  }

  .overlay-copy {
    min-height: 320px;
  }

  .section-heading {
    max-width: 640px;
  }

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

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

  body[data-page="events"] .event-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .album-overview-grid,
  .event-detail-grid,
  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .album-detail-head {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .album-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-gallery-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 92px;
    gap: 16px;
  }

  .menu-toggle {
    display: block;
    order: 1;
  }

  .brand {
    order: 2;
    width: min(214px, 58vw);
    height: 76px;
    justify-self: start;
  }

  .header-links {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 45;
    display: none;
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(45, 40, 36, 0.1);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 12px;
    justify-content: stretch;
  }
}

@media (max-width: 1200px) and (min-width: 981px) {
  .intro-section {
    padding: 44px 0 52px;
  }

  .intro-section .editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-section .editorial-copy {
    max-width: 760px;
  }

  .intro-section .editorial-copy p:not(.script-label) {
    max-width: 720px;
    margin-inline: auto;
  }

  .intro-section .editorial-media img {
    aspect-ratio: 2.05 / 1;
    max-height: 420px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1220px);
    --heading-xl: clamp(1.54rem, 6.5vw, 1.82rem);
    --heading-lg: clamp(1.44rem, 6vw, 1.68rem);
    --heading-md: clamp(1.3rem, 5.4vw, 1.52rem);
    --body-lg: 0.94rem;
    --body-md: 0.9rem;
  }

  .container {
    width: var(--container);
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  }

  .editorial-copy h1,
  .editorial-copy h2,
  .overlay-copy h2,
  .section-heading h2,
  .footer-callout h2,
  .celebration-card h3,
  .home-feature-card span,
  .hero-copy h1 {
    font-family: "Bodoni Moda", Georgia, serif;
  }

  .events-entry-section {
    padding: 42px 0 52px;
  }

  .events-entry-heading {
    text-align: left;
  }

  .events-entry-heading > p:not(.script-label) {
    margin-left: 0;
  }

  .event-choice-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-choice-card,
  .event-choice-card img {
    min-height: min(72vw, 310px);
  }

  .event-choice-card span {
    right: 22px;
    bottom: 20px;
    left: 22px;
    font-size: 1.85rem;
  }

  .events-panel-heading {
    text-align: left;
  }

  .events-panel-heading h2 {
    font-size: clamp(1.68rem, 7vw, 2.04rem);
  }

  .public-calendar-card {
    padding: 18px 14px;
  }

  .public-calendar-head {
    display: grid;
    align-items: start;
    gap: 16px;
  }

  .public-calendar-nav {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .public-events-contact {
    padding: 28px 22px;
  }

  .hero-slider {
    height: 310px;
    min-height: 310px;
  }

  .hero-dots {
    right: 16px;
    top: 18px;
    bottom: auto;
    gap: 8px;
  }

  .hero-copy {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    padding: 16px 20px 18px;
    color: #2d2824;
    background: #fffdf9;
    border-left: 0;
    text-align: center;
    text-shadow: none;
    transform: none;
  }

  .hero-kicker {
    display: none;
  }

  .hero-copy h1 {
    font-size: 1.62rem;
    line-height: 1.08;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-button {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.59rem;
  }

  .hero-link {
    display: none;
  }

  .hero-dot {
    width: 28px;
  }

  .home-feature-links {
    padding-bottom: 38px;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-feature-card,
  .home-feature-card img {
    min-height: 190px;
  }

  .home-feature-card img {
    aspect-ratio: 1.75 / 1;
  }

  .home-feature-card span {
    right: 18px;
    bottom: 17px;
    left: 18px;
    font-size: 1.7rem;
  }

  .intro-section,
  .story-section,
  .celebrations-section {
    padding: 38px 0 46px;
  }

  .editorial-grid {
    gap: 28px;
  }

  .editorial-copy {
    text-align: left;
  }

  .script-label {
    margin-bottom: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    line-height: 1.4;
  }

  .editorial-copy h1,
  .editorial-copy h2,
  .overlay-copy h2,
  .section-heading h2,
  .footer-callout h2 {
    font-size: var(--heading-xl);
    line-height: 1.08;
  }

  .intro-section .editorial-copy h1 {
    font-size: var(--heading-xl);
  }

  .story-copy h1,
  .story-copy h2,
  .section-heading h2,
  .contact-copy h1,
  .contact-copy h2 {
    font-size: var(--heading-lg);
  }

  .gallery-heading h2 {
    font-size: clamp(1.34rem, 5.8vw, 1.58rem);
  }

  .gallery-page-hero {
    padding: 42px 0 38px;
  }

  .gallery-page-hero-inner {
    text-align: left;
  }

  .gallery-page-hero h1 {
    font-size: clamp(1.68rem, 7vw, 2.04rem);
  }

  .album-overview-section,
  .event-detail-section,
  .gallery-detail-section {
    padding: 44px 0;
  }

  .album-overview-grid,
  .event-detail-grid,
  .detail-gallery-grid {
    gap: 16px;
  }

  .album-card-copy {
    padding: 18px;
  }

  .album-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .album-media-card img,
  .album-media-card video {
    aspect-ratio: 1 / 0.86;
  }

  .album-media-card > span:not(.media-badge) {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 0.62rem;
  }

  .detail-gallery-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .detail-gallery-media img,
  .detail-gallery-media video {
    aspect-ratio: 1.12 / 1;
  }

  .event-detail-copy,
  .detail-gallery-copy {
    padding: 20px;
  }

  .overlay-copy h2 {
    font-size: var(--heading-md);
  }

  .intro-section .editorial-copy p:not(.script-label) {
    font-size: var(--body-lg);
    line-height: 1.62;
  }

  .editorial-actions {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .editorial-media img {
    aspect-ratio: 1.35 / 1;
  }

  .story-section {
    padding: 42px 0 50px;
  }

  .story-grid {
    gap: 30px;
  }

  .story-copy {
    max-width: 100%;
  }

  .story-copy h1,
  .story-copy h2 {
    font-size: var(--heading-lg);
  }

  .story-media img {
    aspect-ratio: 1.08 / 1;
  }

  .story-notes {
    gap: 8px;
    margin-top: 20px;
  }

  .overlay-section {
    padding: 42px 0 54px;
  }

  .overlay-copy {
    min-height: 300px;
    padding: 22px;
    text-align: left;
  }

  .overlay-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 22px;
  }

  .overlay-list article,
  .overlay-list article:nth-child(2n),
  .overlay-list article:nth-last-child(-n + 2) {
    min-height: 62px;
    border-bottom: 1px solid rgba(45, 40, 36, 0.09);
  }

  .overlay-list article:last-child {
    border-bottom: 0;
  }

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

  .event-showcase-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="events"] .event-showcase-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="space"] .event-detail-grid {
    grid-template-columns: 1fr;
  }

  .event-showcase-card {
    grid-template-rows: minmax(190px, 1fr) 92px;
    min-height: 282px;
  }

  body[data-page="events"] .event-showcase-card {
    min-height: min(86vw, 360px);
  }

  body[data-page="events"] .event-showcase-card img {
    min-height: min(86vw, 360px);
  }

  body[data-page="events"] .event-showcase-copy {
    padding: 22px 20px;
  }

  body[data-page="events"] .event-detail-card img {
    aspect-ratio: 1.35 / 0.82;
  }

  body[data-page="space"] .event-detail-card img {
    aspect-ratio: 1.35 / 0.82;
  }

  body[data-page="space"] .event-detail-card,
  body[data-page="space"] .event-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 0;
  }

  body[data-page="space"] .event-detail-card:nth-child(even) .event-detail-media,
  body[data-page="space"] .event-detail-card:nth-child(even) .event-detail-copy {
    order: initial;
  }

  body[data-page="space"] .event-detail-card img {
    height: auto;
  }

  .event-detail-zoom {
    right: 10px;
    bottom: 10px;
  }

  .gallery-thumb,
  .gallery-thumb-1,
  .gallery-thumb-2,
  .gallery-thumb-3,
  .gallery-thumb-4,
  .gallery-thumb-5,
  .gallery-thumb-6,
  .gallery-thumb-7,
  .gallery-thumb-8,
  .gallery-thumb-9 {
    aspect-ratio: 1.34 / 1;
  }

  .gallery-thumb {
    display: block;
    width: 100%;
    min-height: 170px;
  }

  .gallery-thumb-1 {
    aspect-ratio: 1.08 / 1;
  }

  .gallery-thumb img,
  .gallery-thumb video {
    height: 100%;
  }

  .celebration-grid {
    gap: 34px;
  }

  .celebration-card {
    text-align: left;
  }

  .contact-section {
    padding: 42px 0 48px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .booking-form {
    padding: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-details article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .map-panel iframe,
  .map-panel .map-image {
    height: 280px;
  }

  .map-open {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
    text-align: center;
  }

  .site-footer {
    padding-top: 36px;
  }

  .footer-main {
    gap: 30px;
    padding: 28px 24px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-brand img {
    width: min(280px, 100%);
    height: auto;
  }

  .footer-column {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .lightbox {
    padding: 14px 14px 72px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

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

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

  .floating-dot {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .back-home {
    bottom: 18px;
    left: 18px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.61rem;
  }
}

@media (max-width: 420px) {
  :root {
    --heading-xl: clamp(1.44rem, 7.6vw, 1.72rem);
    --heading-lg: clamp(1.36rem, 7vw, 1.6rem);
    --heading-md: clamp(1.24rem, 6.2vw, 1.44rem);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: min(190px, 60vw);
    height: 66px;
  }

  .hero-copy {
    padding: 14px 16px 16px;
  }

  .hero-actions,
  .editorial-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-button,
  .button,
  .booking-form button {
    width: 100%;
    padding-inline: 14px;
    text-align: center;
  }

  .script-link {
    font-size: 0.72rem;
  }

  .gallery-thumb {
    min-height: 190px;
  }

  .contact-details,
  .footer-main {
    padding-inline: 18px;
  }
}

@media print {
  @page {
    size: A4 landscape;
    margin: 0;
  }

  * {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    width: 100%;
    background: var(--bg);
  }

  body {
    font-size: 12px;
  }

  .skip-link,
  .back-home,
  .floating-dot,
  .lightbox,
  .magic-scroll-field {
    display: none !important;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header {
    position: static;
    break-after: avoid;
  }

  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 74px;
    gap: 28px;
  }

  .menu-toggle {
    display: none !important;
  }

  .brand {
    order: 1;
    width: 190px;
    height: 66px;
  }

  .header-links {
    display: flex;
  }

  .site-nav {
    position: static;
    order: 2;
    display: flex !important;
    width: auto;
    padding: 0;
    gap: 20px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

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

  .hero {
    padding-bottom: 0;
    break-after: page;
  }

  .hero-slider {
    height: 660px;
    min-height: 660px;
    background:
      linear-gradient(90deg, rgba(26, 21, 17, 0.52), rgba(26, 21, 17, 0.12)),
      url("../assets/img/hero-enhanced/hero-client-hero.jpg") center center / cover no-repeat;
  }

  .hero-slide,
  .hero-slide img,
  .hero-slide-video video {
    display: none !important;
  }

  .hero-copy {
    left: 46px;
    bottom: 58px;
    max-width: 500px;
  }

  .hero-dots {
    display: none;
  }

  .intro-section,
  .story-section,
  .overlay-section,
  .gallery-section,
  .celebrations-section,
  .contact-section,
  .site-footer {
    break-inside: auto;
    page-break-inside: auto;
  }

  .intro-section,
  .story-section,
  .celebrations-section {
    padding: 54px 0 62px;
  }

  .container {
    width: min(1080px, calc(100vw - 56px));
  }

  .editorial-copy h1,
  .editorial-copy h2,
  .section-heading h2,
  .contact-copy h1,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
  }

  .gallery-thumb video {
    transform: none;
  }

  .map-panel iframe,
  .map-panel .map-image {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img,
  .hero-slide video,
  .hero-slide iframe,
  .hero-copy {
    animation: none;
    transition: none;
  }

  .lightbox-media.is-entering {
    animation: none;
  }

  .hero-slide,
  .hero-slide.is-active {
    transform: none;
  }

  .hero-slide img,
  .hero-slide video,
  .hero-slide iframe,
  .hero-slide.is-active img,
  .hero-slide.is-active video,
  .hero-slide.is-active iframe {
    transform: none;
  }
}
