:root {
  --bg: #F7F2EA;
  --bg-2: #EFE7DC;
  --dark: #18352D;
  --dark-2: #10241E;
  --gold: #B69A68;
  --gold-soft: rgba(182, 154, 104, 0.32);
  --gold-faint: rgba(182, 154, 104, 0.14);
  --ink: #25221F;
  --muted: #716B63;
  --white: #FFFFFF;
  --line: rgba(37, 34, 31, 0.12);
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --script: "Great Vibes", cursive;
  --max: 1280px;
  --pad-s: clamp(72px, 10vw, 120px);
  --pad-m: clamp(88px, 12vw, 150px);
  --shadow: 0 24px 60px -24px rgba(16, 36, 30, 0.35);
  --shadow-sm: 0 12px 34px -18px rgba(16, 36, 30, 0.28);
  --radius: 6px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 2000;
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - clamp(2rem, 6vw, 4.5rem), var(--max));
  margin-inline: auto;
}

.section {
  padding-block: var(--pad-s);
}

.no-js .reveal,
.js .reveal {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.orn {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 10px;
  background:
    linear-gradient(45deg, transparent 42%, var(--gold) 42%, var(--gold) 58%, transparent 58%) center/9px 9px no-repeat,
    linear-gradient(-45deg, transparent 42%, var(--gold) 42%, var(--gold) 58%, transparent 58%) center/9px 9px no-repeat;
}

.orn::before,
.orn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.orn::before {
  left: 1px;
}

.orn::after {
  right: 1px;
}

.section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 68px);
}

.section-head-wide {
  max-width: 720px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 620px;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  text-align: center;
}

.btn span {
  transition: transform 0.35s var(--ease);
}

.btn:hover span {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-ivory {
  background: var(--white);
  color: var(--dark);
}

.btn-ivory:hover {
  background: var(--bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: rgba(24, 53, 45, 0.4);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

.btn-nav {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.link-arrow,
.link-arrow:focus-visible {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--dark);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.link-arrow span {
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.link-arrow:hover span {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding-block: 22px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header-inner {
  width: min(100% - clamp(1.5rem, 5vw, 3.5rem), calc(var(--max) + 80px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--gold);
  padding-top: 4px;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.brand-tag {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 26px);
}

.nav-list a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header,
.site-header .brand-mark,
.site-header .brand-name {
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 242, 234, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(16, 36, 30, 0.35);
  padding-block: 12px;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px;
  transition: border-color 0.3s var(--ease);
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 1.6px;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s var(--ease) forwards;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(8, 20, 16, 0.82) 0%, rgba(8, 20, 16, 0.35) 45%, rgba(8, 20, 16, 0.25) 100%),
    linear-gradient(to right, rgba(8, 20, 16, 0.35) 0%, transparent 60%);
}

.hero-content {
  width: min(100% - clamp(1.5rem, 5vw, 3.5rem), var(--max));
  margin-inline: auto;
  padding-bottom: clamp(90px, 14vh, 150px);
  position: relative;
}

.hero-ornament {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(120px, 16vw, 200px);
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hero-ornament svg {
  width: 100%;
  height: auto;
}

.hero .eyebrow {
  color: #DFC79B;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.35rem, 6.2vw, 4.9rem);
  line-height: 1.12;
  max-width: 820px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-card {
  position: absolute;
  right: clamp(1.5rem, 6vw, 4.5rem);
  bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(247, 242, 234, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 260px;
}

.hero-card-script {
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.hero-card-text {
  font-size: 0.88rem;
  color: var(--muted);
}

.reveal-hero {
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) forwards;
}

.reveal-hero:nth-of-type(1) {
  animation-delay: 0.15s;
}

.reveal-hero:nth-of-type(2) {
  animation-delay: 0.3s;
}

.reveal-hero:nth-of-type(3) {
  animation-delay: 0.45s;
}

.reveal-hero:nth-of-type(4) {
  animation-delay: 0.6s;
}

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

.scroll-hint {
  position: absolute;
  left: clamp(1.5rem, 5vw, 3.5rem);
  bottom: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-hint-line {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.scroll-hint-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--white);
  animation: scrollDrop 2.2s var(--ease) infinite;
}

@keyframes scrollDrop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

.trust {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-block: 34px;
}

.trust-item {
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}

.service-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(182, 154, 104, 0.55);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 26px;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-icon {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.service-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.94rem;
  color: var(--muted);
}

.about {
  background: var(--bg-2);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-frame {
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: 2;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.about-badge-num {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: #DFC79B;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

.about-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.venues {
  background: var(--bg);
}

.venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.venue-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}

.venue-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.venue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.venue-card:hover .venue-media img {
  transform: scale(1.06);
}

.venue-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(16, 36, 30, 0.85);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.venue-body {
  padding: 28px 28px 30px;
}

.venue-index {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.venue-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  margin-bottom: 10px;
}

.venue-desc {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 22px;
  max-width: 480px;
}

.events {
  background: var(--bg-2);
}

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

.event-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  isolation: isolate;
}

.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.event-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 16, 0.78) 0%, rgba(8, 20, 16, 0.1) 55%);
  transition: background 0.5s var(--ease);
}

.event-tile:hover img {
  transform: scale(1.07);
}

.event-tile:hover::after {
  background: linear-gradient(to top, rgba(16, 36, 30, 0.9) 0%, rgba(16, 36, 30, 0.25) 60%);
}

.event-tile-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cinema {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  padding-block: 100px;
}

.cinema-media,
.cinema-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(8, 20, 16, 0.72), rgba(8, 20, 16, 0.55));
}

.cinema-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.cinema-script {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #DFC79B;
}

.cinema-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.16;
  text-wrap: balance;
}

.cinema-sub {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 12px;
}

.packages {
  background: var(--bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 34px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-sm);
}

.package-card-featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.package-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.package-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.package-card-featured .package-eyebrow {
  color: #DFC79B;
}

.package-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 4px;
}

.package-tag {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.package-card-featured .package-tag {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 34px;
  flex-grow: 1;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
}

.package-card .package-list li {
  color: var(--ink);
}

.package-card-featured .package-list li {
  color: rgba(255, 255, 255, 0.92);
}

.package-check {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--gold-faint);
  color: var(--gold);
}

.package-check svg {
  width: 11px;
  height: 11px;
}

.package-card-featured .package-check {
  background: rgba(223, 199, 155, 0.22);
  color: #DFC79B;
}

.gallery {
  background: var(--bg-2);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--dark);
}

.filter-btn.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 16, 0.6) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: none;
}

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

.gallery-cta {
  text-align: center;
  margin-top: 44px;
}

.testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 34px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 26px;
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold-faint);
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
}

.testimonial-role {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.cta-banner {
  position: relative;
  min-height: min(56vh, 560px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  padding-block: 90px;
}

.cta-media,
.cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(16, 36, 30, 0.86), rgba(16, 36, 30, 0.72));
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-script {
  font-family: var(--script);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #DFC79B;
}

.cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  text-wrap: balance;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.contact-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 38px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

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

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  width: 100%;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 13px 16px;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-faint);
}

.form-field input.has-error {
  border-color: #B4554E;
}

.btn-submit {
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.form-status.is-success {
  color: var(--dark);
}

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

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: clamp(56px, 8vw, 84px);
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-mark {
  color: #DFC79B;
}

.footer-tagline {
  font-family: var(--script);
  font-size: 1.35rem;
  color: #DFC79B;
  margin-top: 22px;
  line-height: 1.4;
}

.footer-heading {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.footer-links a:hover {
  color: #DFC79B;
  padding-left: 4px;
}

.footer-links li {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
  color: #DFC79B;
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-toggle {
    display: flex;
    color: var(--white);
  }

  .site-header.is-scrolled .nav-toggle {
    color: var(--dark);
    border-color: var(--line);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1100;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    background: var(--dark-2);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateX(4%);
    transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease), transform 0.45s var(--ease);
  }

  body.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-list a {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    padding: 8px 0;
  }

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

  .btn-nav {
    margin-top: 8px;
    background: var(--gold);
    color: var(--white);
  }

  body.menu-open .nav-toggle {
    position: fixed;
    top: 18px;
    right: clamp(1.5rem, 5vw, 3.5rem);
    z-index: 1200;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
  }

  body.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(3.8px) rotate(45deg);
  }

  body.menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-3.8px) rotate(-45deg);
  }

  .hero-card {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 560px;
  }

  .about-frame {
    inset: 18px -18px -18px 18px;
  }

  .about-badge {
    right: -6px;
  }

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

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

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .section {
    padding-block: var(--pad-s);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .trust-item:nth-child(3),
  .trust-item:first-child {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .event-tile-label {
    left: 14px;
    bottom: 14px;
    right: 14px;
    font-size: 1rem;
  }

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

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 420px;
  }

  .scroll-hint {
    display: none;
  }

  .hero-ornament {
    display: none;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-sub {
    margin-bottom: 30px;
  }
}

@media (min-width: 1600px) {
  :root {
    --max: 1360px;
  }
}

@media (hover: none) {
  .venue-card:hover,
  .service-card:hover,
  .package-card:hover,
  .testimonial-card:hover {
    transform: none;
  }
}