:root {
  --ink: #15130f;
  --ink-soft: #25221c;
  --paper: #f5f1e9;
  --paper-deep: #e9e2d6;
  --cream: #fffaf1;
  --gold: #c8a46b;
  --gold-light: #dfc596;
  --olive: #667052;
  --line: rgba(21, 19, 15, 0.14);
  --muted: #716c62;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

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

button,
summary,
select {
  cursor: pointer;
}

svg {
  display: block;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  transition: top 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(18, 16, 13, 0.93);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 64px, 1380px);
  height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: 244px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.42));
  transform: translateZ(0);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 40px);
}

.main-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover {
  color: #fff;
}

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

.main-nav .nav-cta {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.main-nav .nav-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: #fff;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 740px;
  height: 100svh;
  overflow: hidden;
  background: #10100e;
  color: #fff;
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  opacity: 0;
  overflow: hidden;
  transition: opacity 1000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.035);
  transition: transform 7s linear;
}

.hero-slide.is-active img {
  transform: scale(1.085);
}

.hero-slide:nth-child(4) img { object-position: center 45%; }

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.82) 0%, rgba(10, 10, 9, 0.44) 49%, rgba(10, 10, 9, 0.14) 78%),
    linear-gradient(0deg, rgba(10, 10, 9, 0.72) 0%, transparent 45%, rgba(10, 10, 9, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 64px, 1380px);
  height: 100%;
  margin-inline: auto;
  padding: 138px 0 92px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

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

.opening-pill {
  width: fit-content;
  margin-bottom: 28px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(15, 14, 12, 0.22);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.opening-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(200, 164, 107, 0.14);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(200, 164, 107, 0); }
}

.eyebrow,
.section-kicker {
  margin: 0 0 17px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(54px, 6.7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

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

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg,
.inline-link svg,
.footer-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:hover svg,
.inline-link:hover svg,
.footer-cta a:hover svg { transform: translateX(4px); }

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

.button-gold:hover { background: var(--gold-light); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.text-link span {
  color: var(--gold-light);
  font-size: 20px;
}

.slider-controls {
  min-width: 230px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(15, 14, 12, 0.18);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease;
}

.slider-controls button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.slide-progress {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.slide-progress i {
  position: relative;
  flex: 1;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
}

.slide-progress b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: var(--gold-light);
  transition: width 450ms ease;
}

.fact-rail {
  position: relative;
  z-index: 4;
  width: min(100% - 64px, 1240px);
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cream);
  box-shadow: 0 22px 70px rgba(39, 32, 20, 0.16);
}

.fact {
  min-height: 130px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.fact + .fact { border-left: 1px solid var(--line); }

.fact strong {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.fact span {
  max-width: 105px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.section {
  padding: 130px 0;
}

.section-shell {
  width: min(100% - 64px, 1240px);
  margin-inline: auto;
}

.section-kicker {
  color: #987442;
}

.section-kicker.light {
  color: var(--gold-light);
}

.intro-section {
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.intro-visual {
  position: relative;
  min-height: 670px;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  background: #d7d0c4;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame-main {
  width: 83%;
  height: 570px;
}

.image-frame-small {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 42%;
  height: 325px;
  border: 10px solid var(--paper);
}

.visual-seal {
  position: absolute;
  left: -32px;
  bottom: 10px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 19, 15, 0.28);
  border-radius: 50%;
  background: var(--paper);
  line-height: 1.15;
  transform: rotate(-8deg);
}

.visual-seal::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(21, 19, 15, 0.15);
  border-radius: inherit;
  content: "";
}

.visual-seal span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.visual-seal strong {
  margin: 3px 0;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
}

.intro-copy h2,
.section-heading h2,
.facilities-copy h2,
.registration-copy h2,
.location-copy h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
}

.intro-copy .lead-copy {
  margin: 35px 0 18px;
  color: #342f28;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;
}

.intro-copy > p:not(.section-kicker):not(.lead-copy) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.intro-copy .origin-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(200, 164, 107, 0.1);
  color: #5c554b;
  font-size: 13px;
  line-height: 1.75;
}

.origin-note a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.inline-link {
  width: fit-content;
  margin-top: 31px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.section-heading.centered > p:last-child {
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--muted);
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.space-card {
  position: relative;
  height: 470px;
  overflow: hidden;
  background: #292821;
}

.space-card-wide {
  grid-column: 1 / -1;
  height: 610px;
}

.space-card::after,
.gallery-item::after,
.location-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 12, 10, 0.78) 0%, transparent 55%);
  content: "";
  pointer-events: none;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.space-card:hover img { transform: scale(1.035); }

.space-card-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 34px 38px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  color: #fff;
}

.space-card-overlay > span {
  padding-bottom: 6px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.space-card-overlay h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 33px;
  font-weight: 400;
}

.space-card-overlay p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facilities-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(200, 164, 107, 0.11), transparent 29%),
    var(--ink);
  color: #fff;
}

.facilities-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 9vw, 140px);
}

.facilities-copy h2 {
  font-size: clamp(42px, 4.5vw, 65px);
}

.facilities-copy > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.9;
}

.capacity-blocks {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.capacity-blocks > div {
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.capacity-blocks > div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.capacity-blocks strong {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.capacity-blocks span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.facility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 44px;
}

.facility-list article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 164, 107, 0.5);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 19px;
}

.facility-list h3 {
  margin: 1px 0 6px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
}

.facility-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.7;
}

.venue-packages-section {
  background: #f6f2ea;
}

.venue-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.venue-package-card {
  position: relative;
  min-width: 0;
  padding: 0 clamp(25px, 3vw, 38px) clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd7cd;
  border-top: 4px solid #14835d;
  background: #fff;
  box-shadow: 0 16px 38px rgba(48, 39, 28, 0.08);
  color: var(--ink);
}

.venue-package-card-featured {
  border-color: #ddd7cd;
  border-top-color: #c59732;
  background: #fff;
  box-shadow: 0 16px 38px rgba(48, 39, 28, 0.08);
  color: var(--ink);
}

.venue-package-head {
  padding: 29px 0 25px;
  display: block;
  border-bottom: 1px solid var(--line);
}

.venue-package-card-featured .venue-package-head {
  border-color: var(--line);
}

.package-label,
.price-block > span,
.venue-detail-group h4,
.cost-grid span,
.event-package-copy > span,
.admin-contact-block > span,
.open-house-meta span {
  color: #987442;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-label {
  width: fit-content;
  padding: 6px 11px;
  display: inline-flex;
  border-radius: 999px;
  background: #14835d;
  color: #fff;
  font-size: 8px;
}

.venue-package-card-featured .package-label {
  background: #c59732;
  color: #fff;
}

.venue-package-head h3 {
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.05;
}

.price-block {
  margin-top: 18px;
  text-align: left;
}

.price-block > span,
.price-block strong,
.price-block del {
  display: block;
}

.price-block strong {
  margin-top: 3px;
  color: #14835d;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.6vw, 37px);
  font-weight: 400;
  line-height: 1.1;
}

.venue-package-card-featured .price-block strong { color: #b78419; }

.price-block del {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.venue-package-card-featured .price-block del { color: var(--muted); }

.venue-detail-columns {
  padding: 26px 0 5px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.venue-detail-group h4 {
  margin: 0 0 10px;
  color: #2e2a24;
  font-size: 10px;
}

.venue-detail-group ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.venue-detail-group li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-top: 1px solid rgba(21, 19, 15, 0.09);
  color: #4d473e;
  font-size: 11px;
  line-height: 1.45;
}

.venue-detail-group li::before {
  position: absolute;
  top: 9px;
  left: 0;
  color: #14835d;
  content: "✓";
  font-size: 11px;
  font-weight: 800;
}

.venue-package-card-featured .venue-detail-group li { color: #4d473e; }
.venue-package-card-featured .venue-detail-group li::before { color: #b78419; }

.venue-package-terms {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.venue-package-card-featured .venue-package-terms { border-color: var(--line); }

.venue-package-terms > p {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-left: 3px solid #c59732;
  background: #f8f3e8;
  color: #5f574d;
  font-size: 11px;
  line-height: 1.7;
}

.venue-package-card-featured .venue-package-terms > p { color: #5f574d; }

.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cost-grid p {
  margin: 0;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(21, 19, 15, 0.09);
  color: #5f574d;
  font-size: 10px;
}

.cost-grid p strong { white-space: nowrap; }
.venue-package-card-featured .cost-grid p { color: #5f574d; }

.package-booking-button {
  width: 100%;
  min-height: 48px;
  margin-top: 26px;
  border-color: #0e5039;
  background: #0e5039;
  color: #fff;
}

.venue-package-card-featured .package-booking-button {
  border-color: #b78419;
  background: #b78419;
  color: #fff;
}

.event-packages-section {
  background: #eee8de;
  color: var(--ink);
}

.event-packages-section .gallery-heading > p { color: var(--muted); }

.event-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.event-package-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9d3c9;
  border-top: 4px solid #14835d;
  background: #fff;
  box-shadow: 0 15px 35px rgba(48, 39, 28, 0.07);
}

.event-package-card:nth-child(2) { border-top-color: #2574a9; }
.event-package-card:nth-child(3) { border-top-color: #c59732; }

.flyer-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid #e2ddd4;
  background: #17140f;
}

.flyer-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.flyer-link:hover img { transform: scale(1.025); }

.flyer-view-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(16, 15, 12, 0.86);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-package-copy {
  padding: 25px 24px 27px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.event-package-copy > span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #14835d;
  color: #fff;
  font-size: 8px;
}

.event-package-card:nth-child(2) .event-package-copy > span { background: #2574a9; }
.event-package-card:nth-child(3) .event-package-copy > span { background: #c59732; }

.event-package-copy h3 {
  margin: 14px 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.event-package-copy > strong {
  display: block;
  color: #14835d;
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 400;
}

.event-package-card:nth-child(2) .event-package-copy > strong { color: #2574a9; }
.event-package-card:nth-child(3) .event-package-copy > strong { color: #b78419; }

.event-package-copy > p {
  margin: 11px 0 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.event-feature-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.event-feature-list li {
  position: relative;
  padding: 9px 0 9px 20px;
  border-top: 1px solid rgba(21, 19, 15, 0.09);
  color: #4d473e;
  font-size: 10px;
  line-height: 1.45;
}

.event-feature-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  color: #14835d;
  content: "✓";
  font-weight: 800;
}

.event-package-card:nth-child(2) .event-feature-list li::before { color: #2574a9; }
.event-package-card:nth-child(3) .event-feature-list li::before { color: #b78419; }

.event-booking-button {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  border-color: #0e5039;
  background: #0e5039;
  color: #fff;
}

.event-booking-button:hover {
  border-color: #157652;
  background: #157652;
  color: #fff;
}

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

.gallery-heading {
  margin-bottom: 65px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.gallery-heading h2 {
  font-size: clamp(42px, 4.6vw, 64px);
}

.gallery-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 270px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d8d2c8;
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 13; }
.gallery-item:nth-child(3) { grid-column: 6 / 9; }
.gallery-item:nth-child(4) { grid-column: 9 / 13; }
.gallery-item:nth-child(5) { grid-column: 1 / 13; height: 390px; }
.gallery-item:nth-child(6) { grid-column: 1 / 5; height: 390px; }
.gallery-item:nth-child(7) { grid-column: 5 / 9; height: 390px; }
.gallery-item:nth-child(8) { grid-column: 9 / 13; height: 390px; }
.gallery-item:nth-child(9) { grid-column: 1 / 7; height: 430px; }
.gallery-item:nth-child(10) { grid-column: 7 / 13; height: 430px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.gallery-item:nth-child(5) img { object-position: center 45%; }
.gallery-item:nth-child(9) img { object-position: center 40%; }
.gallery-item:nth-child(10) img { object-position: center 35%; }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.opening-banner {
  overflow: hidden;
  border-top: 1px solid rgba(21, 19, 15, 0.12);
  border-bottom: 1px solid rgba(21, 19, 15, 0.12);
  background: var(--gold);
}

.marquee-line {
  width: max-content;
  padding: 23px 0;
  display: flex;
  align-items: center;
  gap: 33px;
  font-family: var(--font-serif);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
  animation: marquee 22s linear infinite;
}

.marquee-line i {
  font-family: var(--font-sans);
  font-size: 17px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.registration-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 95%, rgba(200, 164, 107, 0.16), transparent 30%),
    radial-gradient(circle at 95% 5%, rgba(102, 112, 82, 0.13), transparent 30%),
    var(--ink-soft);
  color: #fff;
}

.registration-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.registration-copy h2 {
  font-size: clamp(45px, 5vw, 70px);
}

.registration-copy > p:not(.section-kicker) {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.9;
}

.registration-copy ul {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.registration-copy li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.registration-copy li span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.open-house-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.open-house-poster {
  position: relative;
  max-width: 540px;
  padding: 10px;
  border: 1px solid rgba(200, 164, 107, 0.5);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.open-house-poster::after {
  position: absolute;
  inset: 22px -20px -22px 20px;
  z-index: -1;
  border: 1px solid rgba(200, 164, 107, 0.2);
  content: "";
}

.open-house-poster img {
  width: 100%;
  height: auto;
}

.open-house-copy > p strong { color: #fff; }

.open-house-meta {
  margin: 31px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.open-house-meta > div {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.open-house-meta span,
.open-house-meta strong { display: block; }
.open-house-meta span { color: var(--gold-light); }
.open-house-meta strong { margin-top: 5px; font-size: 12px; line-height: 1.55; }

.open-house-copy ul { margin-top: 30px; }

.open-house-button {
  width: fit-content;
  margin-top: 31px;
}

.catering-cta-section {
  padding: 50px 0;
  background: var(--gold);
  color: var(--ink);
}

.catering-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.catering-cta-copy {
  max-width: 760px;
}

.catering-cta-copy .section-kicker {
  margin-bottom: 9px;
  color: rgba(21, 19, 15, 0.66);
}

.catering-cta-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.catering-cta-copy > p:last-child {
  margin: 10px 0 0;
  color: rgba(21, 19, 15, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.catering-cta-button {
  flex: 0 0 auto;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.catering-cta-button:hover {
  background: #302a22;
}

.form-card {
  padding: clamp(30px, 4vw, 52px);
  background: var(--cream);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  color: var(--ink);
}

.form-head {
  margin-bottom: 32px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.form-head > span {
  display: block;
  font-family: var(--font-serif);
  font-size: 33px;
}

.form-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-card form {
  display: grid;
  gap: 19px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

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

.form-card label > span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(21, 19, 15, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-card input,
.form-card select {
  height: 50px;
  padding: 0 14px;
}

.form-card textarea {
  min-height: 90px;
  padding: 12px 14px;
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 164, 107, 0.15);
  outline: none;
}

.form-card input::placeholder,
.form-card textarea::placeholder { color: #9a958b; }

.button-dark {
  width: 100%;
  margin-top: 4px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  border-color: #302a22;
  background: #302a22;
}

.form-submit svg {
  width: 20px;
  height: 20px;
}

.form-note,
.form-status,
.noscript-note {
  margin: -5px 0 0;
  color: #8d887e;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.form-status {
  margin: 0;
  color: #517142;
  font-weight: 650;
}

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

.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: clamp(65px, 9vw, 140px);
}

.location-image {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-label {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 25px;
  left: 27px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.location-copy h2 {
  font-size: clamp(43px, 4.6vw, 65px);
}

.address-block {
  margin-top: 43px;
  padding: 23px 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.address-block > span,
.contact-lines a > span {
  padding-top: 4px;
  color: #8a8377;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.address-block p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.45;
}

.contact-lines {
  margin: 18px 0 35px;
}

.contact-lines a {
  padding: 8px 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  font-size: 13px;
}

.contact-lines a:hover { color: #987442; }

.admin-contact-block {
  margin: -14px 0 34px;
  padding: 19px 21px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.admin-contact-block > span {
  display: block;
  margin-bottom: 12px;
}

.admin-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}

.admin-contact-grid a {
  font-size: 12px;
  font-weight: 650;
}

.admin-contact-grid a:hover { color: #987442; }

.button-outline-dark {
  border-color: var(--ink);
}

.button-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

.faq-section {
  padding-top: 80px;
  background: var(--paper);
}

.faq-grid {
  padding-top: 80px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(65px, 9vw, 145px);
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  font-size: clamp(40px, 4.2vw, 60px);
}

.faq-heading > p:not(.section-kicker) {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.faq-list summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 20px;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  color: #987442;
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
  max-width: 690px;
  margin: -3px 42px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.site-footer {
  padding: 80px max(32px, calc((100% - 1240px) / 2)) 28px;
  background: #11100d;
  color: #fff;
}

.footer-main {
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 60px;
}

.footer-brand img {
  width: 246px;
  height: auto;
  filter:
    drop-shadow(-1px -1px 0 rgba(255, 242, 207, 0.2))
    drop-shadow(1px 1px 0 rgba(65, 40, 15, 0.72))
    drop-shadow(0 5px 10px rgba(0, 0, 0, 0.34));
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-cta p {
  margin: 0 0 7px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-cta a {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: var(--font-serif);
  font-size: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-socials a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-socials .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.wa-quick-panel {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  width: 154px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.wa-quick-button {
  width: 100%;
  min-height: 56px;
  padding: 0 16px 0 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 13px 35px rgba(18, 73, 38, 0.3);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
  pointer-events: auto;
}

.wa-quick-admin {
  border-color: rgba(255, 255, 255, 0.22);
  background: #1d1a15;
  box-shadow: 0 13px 35px rgba(0, 0, 0, 0.25);
}

.wa-quick-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 42px rgba(18, 73, 38, 0.38);
}

.wa-quick-button svg {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
}

.wa-quick-button > span {
  display: grid;
  line-height: 1.05;
}

.wa-quick-button small {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.wa-quick-button strong {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

/* REV3 — distinct premium card systems */
.venue-package-card,
.event-package-card,
.package-modal {
  --card-gold: #d7ad57;
  --card-gold-light: #f2d899;
  --card-white: #fbf8f1;
  --card-muted: rgba(255, 255, 255, 0.68);
  --card-line: rgba(215, 173, 87, 0.3);
}

/* Venue Only: comparison/pricing cards without imagery */
.venue-package-grid .venue-package-card {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(25px, 3vw, 38px) clamp(28px, 3vw, 36px);
  border: 1px solid var(--card-line);
  border-top: 3px solid var(--card-gold);
  background:
    radial-gradient(circle at 100% 0, rgba(215, 173, 87, 0.11), transparent 32%),
    linear-gradient(145deg, #1b1915 0%, #0d0c0a 72%);
  box-shadow: 0 22px 54px rgba(18, 14, 9, 0.2);
  color: var(--card-white);
}

.venue-package-grid .venue-package-card-featured {
  border-color: rgba(215, 173, 87, 0.55);
  border-top-color: var(--card-gold-light);
  background:
    radial-gradient(circle at 100% 0, rgba(215, 173, 87, 0.19), transparent 36%),
    linear-gradient(145deg, #201c15 0%, #0d0c0a 72%);
}

.venue-card-number {
  position: absolute;
  top: 15px;
  right: 22px;
  color: rgba(215, 173, 87, 0.14);
  font-family: var(--font-serif);
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.venue-package-grid .venue-package-head {
  position: relative;
  z-index: 1;
  border-color: var(--card-line);
}

.venue-package-grid .package-label {
  padding: 6px 11px;
  border: 1px solid rgba(215, 173, 87, 0.58);
  border-radius: 0;
  background: transparent;
  color: var(--card-gold-light);
}

.venue-package-grid .venue-package-head h3 {
  max-width: calc(100% - 76px);
  color: var(--card-white);
}

.venue-package-grid .price-block > span,
.venue-package-grid .venue-detail-group h4,
.venue-package-grid .cost-grid span {
  color: var(--card-gold-light);
}

.venue-package-grid .price-block strong,
.venue-package-grid .venue-package-card-featured .price-block strong {
  color: var(--card-gold);
}

.venue-package-grid .price-block del,
.venue-package-grid .venue-package-card-featured .price-block del {
  color: rgba(255, 255, 255, 0.47);
}

.venue-package-grid .venue-detail-group li,
.venue-package-grid .venue-package-card-featured .venue-detail-group li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.79);
  font-size: 11px;
}

.venue-package-grid .venue-detail-group li::before,
.venue-package-grid .venue-package-card-featured .venue-detail-group li::before {
  color: var(--card-gold);
}

.venue-package-grid .venue-package-terms,
.venue-package-grid .venue-package-card-featured .venue-package-terms {
  border-color: var(--card-line);
}

.venue-package-grid .venue-package-terms > p,
.venue-package-grid .venue-package-card-featured .venue-package-terms > p {
  border-left-color: var(--card-gold);
  background: rgba(215, 173, 87, 0.09);
  color: rgba(255, 255, 255, 0.78);
}

.venue-package-grid .venue-package-terms > p strong {
  color: var(--card-white);
}

.venue-package-grid .cost-grid p,
.venue-package-grid .venue-package-card-featured .cost-grid p {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--card-muted);
}

.venue-package-grid .cost-grid p strong { color: var(--card-white); }

.venue-package-grid .package-booking-button,
.venue-package-grid .venue-package-card-featured .package-booking-button {
  border-color: var(--card-gold);
  background: var(--card-gold);
  color: #17130c;
}

.venue-package-grid .package-booking-button:hover,
.venue-package-grid .venue-package-card-featured .package-booking-button:hover {
  border-color: var(--card-gold-light);
  background: var(--card-gold-light);
  color: #17130c;
}

/* Wedding & Lamaran: image-led all-in package cards */
.event-package-grid .event-package-card {
  overflow: hidden;
  border: 1px solid rgba(215, 173, 87, 0.36);
  border-top: 1px solid rgba(215, 173, 87, 0.58);
  background:
    linear-gradient(160deg, rgba(215, 173, 87, 0.07), transparent 38%),
    #11100d;
  box-shadow: 0 22px 54px rgba(18, 14, 9, 0.22);
  color: var(--card-white);
}

.event-package-grid .flyer-link {
  border-bottom-color: rgba(215, 173, 87, 0.38);
}

.event-package-grid .flyer-view-label {
  border: 1px solid rgba(242, 216, 153, 0.44);
  background: rgba(11, 10, 8, 0.9);
  color: var(--card-gold-light);
}

.event-package-grid .event-package-copy > span,
.event-package-grid .event-package-card:nth-child(2) .event-package-copy > span,
.event-package-grid .event-package-card:nth-child(3) .event-package-copy > span {
  border: 1px solid rgba(215, 173, 87, 0.52);
  border-radius: 0;
  background: transparent;
  color: var(--card-gold-light);
}

.event-package-grid .event-package-copy h3 { color: var(--card-white); }

.event-package-grid .event-package-copy > strong,
.event-package-grid .event-package-card:nth-child(2) .event-package-copy > strong,
.event-package-grid .event-package-card:nth-child(3) .event-package-copy > strong {
  color: var(--card-gold);
}

.event-package-grid .event-package-copy > p { color: var(--card-muted); }

.event-package-grid .event-feature-list li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.79);
  font-size: 11px;
}

.event-package-grid .event-feature-list li::before,
.event-package-grid .event-package-card:nth-child(2) .event-feature-list li::before,
.event-package-grid .event-package-card:nth-child(3) .event-feature-list li::before {
  color: var(--card-gold);
}

.event-action-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.event-detail-button,
.event-booking-button {
  width: 100%;
  min-height: 47px;
  margin: 0;
  padding-right: 11px;
  padding-left: 11px;
}

.event-detail-button {
  border-color: rgba(215, 173, 87, 0.8);
  background: transparent;
  color: var(--card-gold-light);
}

.event-detail-button:hover {
  border-color: var(--card-gold-light);
  background: rgba(215, 173, 87, 0.1);
  color: #fff;
}

.event-booking-button,
.event-booking-button:hover {
  border-color: var(--card-gold);
  background: var(--card-gold);
  color: #17130c;
}

.event-booking-button:hover {
  border-color: var(--card-gold-light);
  background: var(--card-gold-light);
}

/* In-page package detail dialogs */
body.modal-open { overflow: hidden; }

.package-modal {
  width: min(1040px, calc(100% - 36px));
  max-width: 1040px;
  max-height: 88vh;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 173, 87, 0.58);
  background: #11100d;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58);
  color: var(--card-white);
}

.package-modal::backdrop {
  background: rgba(8, 7, 6, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.package-modal.is-open { display: block; }

.package-modal-frame {
  position: relative;
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.package-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(215, 173, 87, 0.55);
  border-radius: 50%;
  background: rgba(10, 9, 7, 0.78);
  color: var(--card-gold-light);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.package-modal-close:hover { background: rgba(215, 173, 87, 0.14); }

.package-modal-header {
  padding: 42px 78px 33px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 35px;
  border-bottom: 1px solid var(--card-line);
  background:
    radial-gradient(circle at 100% 0, rgba(215, 173, 87, 0.18), transparent 42%),
    #171511;
}

.package-modal-eyebrow {
  margin: 0 0 12px;
  color: var(--card-gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-modal-header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.04;
}

.package-modal-price { min-width: 210px; text-align: right; }

.package-modal-price span,
.package-modal-price strong,
.package-modal-price del { display: block; }

.package-modal-price span {
  color: var(--card-gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-modal-price strong {
  margin-top: 5px;
  color: var(--card-gold);
  font-family: var(--font-serif);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 400;
}

.package-modal-price del {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}

.package-modal-body {
  padding: 31px 42px 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.modal-detail-group,
.package-modal-note {
  margin: 0;
  padding: 21px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(215, 173, 87, 0.55);
  background: rgba(255, 255, 255, 0.025);
}

.modal-detail-group h3 {
  margin: 0 0 12px;
  color: var(--card-gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.modal-detail-group ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.modal-detail-group li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.55;
}

.modal-detail-group li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--card-gold);
  content: "•";
}

.package-modal-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-color: rgba(215, 173, 87, 0.46);
  background: rgba(215, 173, 87, 0.09);
}

.package-modal-note strong {
  color: var(--card-gold-light);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-modal-note span {
  color: var(--card-white);
  font-family: var(--font-serif);
  font-size: 20px;
  text-align: right;
}

.package-modal-note-wide { grid-column: 1 / -1; }
.package-modal-note-wide span { max-width: 690px; font-size: 16px; line-height: 1.5; }

.package-modal-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding: 20px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid var(--card-line);
  background: rgba(15, 14, 11, 0.97);
}

.package-modal-footer p {
  max-width: 660px;
  margin: 0;
  color: var(--card-muted);
  font-size: 11px;
  line-height: 1.6;
}

.package-modal-footer p strong { color: var(--card-white); }

.modal-booking-button {
  flex: 0 0 auto;
  border-color: var(--card-gold);
  background: var(--card-gold);
  color: #17130c;
}

.modal-booking-button:hover {
  border-color: var(--card-gold-light);
  background: var(--card-gold-light);
  color: #17130c;
}

/* Calm editorial gallery: fixed rows, no overlapping mosaic */
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 22px;
}

.gallery-grid > .gallery-item,
.gallery-grid > .gallery-item:nth-child(1),
.gallery-grid > .gallery-item:nth-child(2),
.gallery-grid > .gallery-item:nth-child(3),
.gallery-grid > .gallery-item:nth-child(4),
.gallery-grid > .gallery-item:nth-child(5),
.gallery-grid > .gallery-item:nth-child(6),
.gallery-grid > .gallery-item:nth-child(7),
.gallery-grid > .gallery-item:nth-child(8),
.gallery-grid > .gallery-item:nth-child(9),
.gallery-grid > .gallery-item:nth-child(10) {
  height: auto;
  grid-column: auto;
  grid-row: auto;
  border: 1px solid rgba(177, 133, 57, 0.28);
  background: #17140f;
  box-shadow: 0 18px 42px rgba(31, 24, 16, 0.12);
}

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

.gallery-item::after {
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10, 8, 5, 0.8), transparent);
  content: "";
  pointer-events: none;
}

.gallery-item figcaption {
  right: 22px;
  bottom: 19px;
  left: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(242, 216, 153, 0.48);
  color: #fff8e7;
}

@media (max-width: 1100px) {
  .header-inner,
  .hero-content,
  .section-shell,
  .fact-rail {
    width: min(100% - 44px, 1240px);
  }

  .main-nav { gap: 20px; }
  .main-nav > a { font-size: 10px; }
  .brand { width: 210px; }
  .hero h1 { max-width: 680px; }
  .fact { padding: 24px 20px; }
  .fact strong { font-size: 39px; }
  .intro-grid { gap: 65px; }
  .facilities-layout { gap: 65px; }
  .gallery-grid { grid-auto-rows: 290px; }
}

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

  .header-inner { height: 76px; }
  .brand { width: 198px; }
  .menu-toggle { display: block; }

  .site-header.is-menu-open {
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .main-nav {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    padding: calc(100px + env(safe-area-inset-top)) 26px calc(32px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    background: rgba(18, 16, 13, 0.98);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

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

  .main-nav > a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .main-nav .nav-cta {
    width: auto;
    margin-top: 20px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .hero-content {
    padding-bottom: 65px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 36px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 9, 0.7) 0%, rgba(10, 10, 9, 0.2) 100%),
      linear-gradient(0deg, rgba(10, 10, 9, 0.84) 0%, rgba(10, 10, 9, 0.13) 68%, rgba(10, 10, 9, 0.45) 100%);
  }

  .slider-controls { padding: 0; }
  .fact-rail { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .fact:nth-child(4) { border-top: 1px solid var(--line); }

  .section { padding: 100px 0; }
  .intro-grid,
  .facilities-layout,
  .registration-grid,
  .open-house-grid,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy { max-width: 620px; }
  .facilities-copy { max-width: 700px; }
  .venue-package-grid { grid-template-columns: 1fr; }
  .event-package-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }
  .gallery-grid > .gallery-item:nth-child(1),
  .gallery-grid > .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-heading { grid-template-columns: 1fr; gap: 25px; }
  .registration-copy { max-width: 680px; }
  .registration-grid { gap: 65px; }
  .open-house-grid { gap: 65px; }
  .open-house-poster { width: min(100%, 520px); }
  .location-grid { gap: 60px; }
  .location-copy { max-width: 620px; }
  .faq-grid { gap: 55px; }
  .faq-heading { max-width: 560px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-socials { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .header-inner,
  .hero-content,
  .section-shell,
  .fact-rail {
    width: min(100% - 32px, 1240px);
  }

  .brand { width: 178px; }
  .hero { min-height: 700px; }
  .hero-content { padding: 115px 0 52px; }
  .hero-slide img { object-position: center; }
  .hero-slide:nth-child(1) img { object-position: 58% center; }
  .opening-pill { margin-bottom: 22px; font-size: 9px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(49px, 14vw, 69px); line-height: 0.96; }
  .hero-lead { max-width: 520px; margin-top: 21px; font-size: 14px; line-height: 1.68; }
  .hero-actions { width: 100%; margin-top: 27px; align-items: flex-start; flex-direction: column; gap: 17px; }
  .button-gold { width: 100%; }
  .slider-controls { min-width: 210px; }

  .fact-rail { margin-top: 0; box-shadow: none; }
  .fact { min-height: 105px; padding: 20px 16px; gap: 11px; }
  .fact strong { font-size: 34px; }
  .fact span { font-size: 8px; }

  .section { padding: 82px 0; }
  .intro-visual { min-height: 505px; }
  .image-frame-main { width: 89%; height: 425px; }
  .image-frame-small { width: 44%; height: 245px; border-width: 7px; }
  .visual-seal { left: -10px; width: 96px; height: 96px; }
  .visual-seal strong { font-size: 21px; }
  .intro-copy h2,
  .section-heading h2,
  .facilities-copy h2,
  .registration-copy h2,
  .location-copy h2,
  .faq-heading h2 { font-size: clamp(39px, 11vw, 52px); }
  .intro-copy .lead-copy { margin-top: 26px; font-size: 19px; }

  .section-heading.centered { margin-bottom: 42px; text-align: left; }
  .section-heading.centered > p:last-child { margin-left: 0; }
  .space-grid { grid-template-columns: 1fr; gap: 14px; }
  .space-card,
  .space-card-wide { grid-column: auto; height: 420px; }
  .space-card-wide { height: 430px; }
  .space-card-overlay { padding: 24px; }

  .facility-list { grid-template-columns: 1fr; }
  .facility-list article:nth-child(2n) { border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .capacity-blocks > div { padding-right: 9px; }
  .capacity-blocks > div + div { padding-left: 16px; }
  .capacity-blocks strong { font-size: 39px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
    gap: 14px;
  }
  .gallery-grid > .gallery-item,
  .gallery-grid > .gallery-item:nth-child(1),
  .gallery-grid > .gallery-item:nth-child(2),
  .gallery-grid > .gallery-item:nth-child(3),
  .gallery-grid > .gallery-item:nth-child(4),
  .gallery-grid > .gallery-item:nth-child(5),
  .gallery-grid > .gallery-item:nth-child(6),
  .gallery-grid > .gallery-item:nth-child(7),
  .gallery-grid > .gallery-item:nth-child(8),
  .gallery-grid > .gallery-item:nth-child(9),
  .gallery-grid > .gallery-item:nth-child(10) {
    height: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .marquee-line { padding: 18px 0; gap: 20px; }
  .venue-package-head { flex-direction: column; }
  .price-block { text-align: left; }
  .venue-detail-columns { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: 1fr; }
  .event-package-grid { grid-template-columns: 1fr; }
  .package-modal { width: min(100% - 20px, 1040px); max-height: 92vh; }
  .package-modal-frame { max-height: 92vh; }
  .package-modal-close { top: 12px; right: 12px; }
  .package-modal-header {
    padding: 58px 22px 25px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 21px;
  }
  .package-modal-price { min-width: 0; text-align: left; }
  .package-modal-body { padding: 20px; grid-template-columns: 1fr; gap: 11px; }
  .package-modal-note,
  .package-modal-note-wide { grid-column: auto; align-items: flex-start; flex-direction: column; }
  .package-modal-note span,
  .package-modal-note-wide span { text-align: left; }
  .package-modal-footer {
    position: static;
    padding: 19px 20px 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }
  .modal-booking-button { width: 100%; }
  .open-house-meta { grid-template-columns: 1fr; }
  .open-house-button { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .catering-cta-section { padding: 40px 0; }
  .catering-cta-inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .catering-cta-button { width: 100%; }
  .location-image { height: 500px; }
  .address-block,
  .contact-lines a { grid-template-columns: 76px 1fr; }
  .address-block p { font-size: 22px; }
  .faq-section { padding-top: 45px; }
  .faq-grid { padding-top: 55px; }

  .site-footer { padding: 65px 16px 22px; }
  .footer-main { padding-bottom: 48px; grid-template-columns: 1fr; gap: 38px; }
  .footer-socials { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .wa-quick-panel { right: 12px; bottom: 12px; width: 128px; gap: 8px; }
  .wa-quick-button { min-height: 48px; padding: 0 11px; gap: 8px; }
  .wa-quick-button svg { width: 23px; height: 23px; }
  .wa-quick-button small { display: none; }
  .wa-quick-button strong { margin-top: 0; font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* V2.0 — normal pricing, updated gallery, unified ecosystem shell */
.venue-package-media {
  position: relative;
  width: calc(100% + clamp(50px, 6vw, 76px));
  aspect-ratio: 16 / 9;
  margin: 0 calc(clamp(25px, 3vw, 38px) * -1);
  overflow: hidden;
  background: #181510;
}

.venue-package-media::after {
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(0deg, rgba(15, 12, 8, .4), transparent);
  content: "";
}

.venue-package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.event-package-card:nth-child(4) { border-top-color: #735635; }
.event-package-card:nth-child(4) .event-package-copy > span { background: #735635; }
.event-package-card:nth-child(4) .event-package-copy > strong { color: #735635; }
.event-package-card:nth-child(4) .event-feature-list li::before { color: #735635; }

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 285px;
  gap: 16px;
}

.gallery-grid > .gallery-item,
.gallery-grid > .gallery-item:nth-child(n) {
  position: relative;
  display: block;
  height: auto;
  min-height: 0;
  grid-column: auto;
  grid-row: auto;
  overflow: hidden;
  border: 1px solid rgba(177, 133, 57, .25);
  background: #17140f;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 15px 34px rgba(31, 24, 16, .1);
}

.gallery-grid > .gallery-item:nth-child(1),
.gallery-grid > .gallery-item:nth-child(8),
.gallery-grid > .gallery-item:nth-child(15),
.gallery-grid > .gallery-item:nth-child(22) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,0,1);
}

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

.gallery-item > span {
  position: absolute;
  right: 20px;
  bottom: 17px;
  left: 20px;
  z-index: 2;
  padding-top: 10px;
  border-top: 1px solid rgba(242, 216, 153, .48);
  color: #fff8e7;
  font-family: var(--font-serif);
  font-size: 17px;
}

.consultation-section { background: #171713; }
.consultation-section .open-house-poster { aspect-ratio: 4 / 3; width: 100%; }
.consultation-section .open-house-poster img { width: 100%; height: 100%; object-fit: cover; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.visit-actions .button { margin-top: 0; }
.button-outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.button-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

.map-embed-block {
  width: min(1240px, calc(100% - 48px));
  margin: 54px auto 0;
  overflow: hidden;
  border: 1px solid #d9c9ae;
  border-radius: 3px;
  background: #e8e2d7;
  box-shadow: 0 18px 48px rgba(39, 29, 18, .12);
}

.map-embed-block iframe { display: block; width: 100%; min-height: 440px; }

@media (max-width: 900px) {
  .event-package-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid > .gallery-item:nth-child(n) { grid-column: auto; }
  .gallery-grid > .gallery-item:nth-child(1),
  .gallery-grid > .gallery-item:nth-child(10),
  .gallery-grid > .gallery-item:nth-child(19) { grid-column: span 2; }
}

@media (max-width: 680px) {
  .event-package-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 275px; }
  .gallery-grid > .gallery-item:nth-child(n) { grid-column: auto; }
  .visit-actions { display: grid; }
  .visit-actions .button { width: 100%; }
  .map-embed-block { width: calc(100% - 32px); margin-top: 34px; }
  .map-embed-block iframe { min-height: 360px; }
}

/* V3.0 — concise home gallery using verified venue photography only */
.home-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
}

.home-gallery-grid > .gallery-item,
.home-gallery-grid > .gallery-item:nth-child(n) {
  grid-column: auto;
  aspect-ratio: 4 / 3;
  height: auto;
}

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

.gallery-all-button {
  gap: 13px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.gallery-all-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

@media (max-width: 900px) {
  .home-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-gallery-grid > .gallery-item:nth-child(n) { grid-column: auto; }
}

@media (max-width: 560px) {
  .home-gallery-grid { grid-template-columns: 1fr; }
  .home-gallery-grid > .gallery-item:nth-child(n) { grid-column: auto; }
  .gallery-all-button { width: 100%; }
}
