:root {
  --ink: #151915;
  --muted: #5f665f;
  --line: #d8d2c4;
  --paper: #faf7ef;
  --white: #ffffff;
  --gold: #c79a3a;
  --gold-dark: #805e20;
  --champagne: #f0dfb3;
  --green: #112c25;
  --sage: #eff1e8;
  --charcoal: #070d0b;
  --shadow: 0 24px 70px rgba(13, 23, 19, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 240, 222, 0.76)),
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(18, 53, 45, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 53, 45, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: 25;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--champagne), var(--gold-dark));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(18, 53, 45, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
  transition: padding 260ms var(--ease-out), background 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.site-header.is-scrolled {
  padding-block: 9px;
  background: rgba(7, 13, 11, 0.98);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.brand img {
  width: 144px;
  height: auto;
}

nav {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  position: relative;
  padding: 12px 0;
  transition: color 220ms var(--ease-out);
}

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

nav a:hover,
nav a[aria-current="page"] {
  color: var(--white);
}

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

.header-cta,
.button,
.inquiry-form button,
.booking-form button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  font-weight: 800;
}

.header-cta {
  position: relative;
  overflow: hidden;
  padding: 0 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(184, 138, 45, 0.24);
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.header-cta::after,
.button.primary::after,
.booking-form button::after,
.inquiry-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-120%);
  transition: transform 620ms var(--ease-out);
}

.header-cta:hover::after,
.button.primary:hover::after,
.booking-form button:hover::after,
.inquiry-form button:hover::after {
  transform: translateX(120%);
}

.header-cta:hover,
.button:hover,
.inquiry-form button:hover,
.booking-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 53, 45, 0.22);
}

.header-cta:active,
.button:active,
.inquiry-form button:active,
.booking-form button:active,
.header-cta.is-pressed,
.button.is-pressed,
.inquiry-form button.is-pressed,
.booking-form button.is-pressed {
  transform: translateY(0) scale(0.98);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 160px clamp(20px, 6vw, 80px) 120px;
  background: var(--charcoal);
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 80px) 64px;
  color: var(--white);
}

.page-hero.compact {
  min-height: 58vh;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(184, 138, 45, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(10, 25, 20, 0.82), rgba(10, 25, 20, 0.34));
}

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

.page-hero div {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

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

.hero-media {
  object-fit: cover;
  transform: scale(calc(1.02 + var(--hero-drift, 0) * 0.0008));
  will-change: transform;
}

.hero-shade {
  background:
    radial-gradient(circle at 74% 16%, rgba(199, 154, 58, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(4, 9, 8, 0.94), rgba(10, 25, 20, 0.64) 46%, rgba(10, 25, 20, 0.16));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: var(--white);
}

.hero-content::before {
  content: "";
  display: block;
  width: 132px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--gold);
  box-shadow: 42px 0 0 rgba(255, 255, 255, 0.72);
}

.hero-content::after,
.page-hero div::after {
  content: "";
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-top: 28px;
  border: 1px solid rgba(240, 223, 179, 0.7);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 46%, rgba(240, 223, 179, 0.76) 47%, rgba(240, 223, 179, 0.76) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(240, 223, 179, 0.76) 47%, rgba(240, 223, 179, 0.76) 53%, transparent 54%),
    rgba(199, 154, 58, 0.08);
  box-shadow: inset 0 0 0 6px rgba(199, 154, 58, 0.12), 0 12px 40px rgba(0, 0, 0, 0.2);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Gilda Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6.8vw, 82px);
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.button.primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(184, 138, 45, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 38px;
  left: clamp(20px, 6vw, 80px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 0;
  color: var(--white);
}

.hero-panel span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(13, 23, 19, 0.84), rgba(42, 33, 18, 0.72));
  backdrop-filter: blur(14px);
  font-weight: 700;
}

.info-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.info-rail div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 30px clamp(20px, 4vw, 44px);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 239, 0.96));
}

.info-rail strong {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-rail span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.prestige-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(199, 154, 58, 0.5), rgba(17, 44, 37, 0.18), rgba(199, 154, 58, 0.5));
}

.prestige-card {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 30px clamp(20px, 3vw, 38px);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 58, 0.13), transparent 34%),
    #fffdfa;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.prestige-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(199, 154, 58, 0.22);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 360ms var(--ease-out), transform 360ms var(--ease-out);
}

.prestige-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.prestige-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.prestige-card span {
  color: var(--gold-dark);
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.9;
}

.prestige-card p {
  position: relative;
  max-width: 270px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.legacy-highlights {
  background:
    linear-gradient(180deg, rgba(17, 44, 37, 0.045), rgba(255, 255, 255, 0.92)),
    var(--paper);
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-list span,
.highlight-list a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(199, 154, 58, 0.35);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 239, 0.92)),
    var(--white);
  color: var(--green);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out);
}

.highlight-list span:hover,
.highlight-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 154, 58, 0.68);
  box-shadow: 0 14px 38px rgba(13, 23, 19, 0.1);
}

.section {
  padding: clamp(66px, 8vw, 108px) clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
  gap: 52px;
  align-items: start;
}

.intro p:last-child {
  margin-top: 32px;
  font-size: 18px;
}

.numbered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 0;
}

.numbered article {
  min-height: 340px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 239, 0.96)),
    var(--white);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

.vip-suite {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(7, 13, 11, 0.96), rgba(17, 44, 37, 0.94)),
    var(--charcoal);
  color: var(--white);
}

.vip-suite p {
  color: rgba(255, 255, 255, 0.74);
}

.vip-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(240, 223, 179, 0.22);
  background: rgba(240, 223, 179, 0.18);
}

.vip-service-grid article {
  min-height: 230px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(7, 13, 11, 0.68);
  transition: transform 320ms var(--ease-out), background 320ms var(--ease-out);
}

.vip-service-grid article:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 58, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
}

.vip-service-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--champagne);
  font-family: "Gilda Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.vip-service-grid h3 {
  color: var(--white);
}

.numbered article:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 138, 45, 0.46);
  box-shadow: var(--shadow);
}

.numbered span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-family: "Gilda Display", Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.numbered h3 {
  font-size: 24px;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: clamp(66px, 8vw, 112px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(17, 44, 37, 0.98), rgba(7, 13, 11, 0.98)),
    var(--green);
  color: var(--white);
}

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

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.feature-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.feature-media div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  max-width: 260px;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  animation: floatBadge 4.8s var(--ease-out) infinite alternate;
}

.feature-media strong {
  color: var(--gold);
  font-family: "Gilda Display", Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.feature-media span {
  color: var(--muted);
  line-height: 1.5;
}

.media-band {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  background: var(--green);
  color: var(--white);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), inset 0 -1px rgba(255, 255, 255, 0.08);
}

.media-band img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.media-text {
  padding: clamp(36px, 6vw, 72px);
}

.media-text p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.showcase {
  background: linear-gradient(180deg, var(--paper), #ffffff 62%, var(--sage));
}

.motion-showcase {
  background:
    linear-gradient(180deg, rgba(250, 247, 239, 0.98), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

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

.journey-grid article {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(199, 154, 58, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(7, 13, 11, 0.05), rgba(7, 13, 11, 0.88)),
    var(--green);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(13, 23, 19, 0.14);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}

.journey-grid article::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(240, 223, 179, 0.22), transparent 62%);
  transform: translateY(30%);
  transition: transform 500ms var(--ease-out);
}

.journey-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 58, 0.58);
  box-shadow: 0 26px 72px rgba(13, 23, 19, 0.24);
}

.journey-grid article:hover::before {
  transform: translateY(8%);
}

.journey-grid small {
  position: relative;
  color: var(--champagne);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-grid h3,
.journey-grid p {
  position: relative;
}

.journey-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.original-story {
  background: var(--paper);
}

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

.story-grid article,
.group-story {
  border: 1px solid rgba(199, 154, 58, 0.24);
  border-radius: 6px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 58, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.94);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 16px 48px rgba(13, 23, 19, 0.08);
}

.director-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(66px, 8vw, 112px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(7, 13, 11, 0.97), rgba(17, 44, 37, 0.94)),
    var(--charcoal);
  color: var(--white);
}

.director-note p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.group-story > p {
  max-width: 980px;
  font-size: 18px;
}

.venue-facts {
  margin: -16px 0 36px;
}

.facility-detail-list {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(250, 247, 239, 0.98), rgba(239, 241, 232, 0.98)),
    var(--sage);
}

.facility-detail-list article {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 0.56fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 58, 0.24);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(13, 23, 19, 0.1);
}

.facility-detail-list article:nth-of-type(even) img {
  order: 2;
}

.facility-detail-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-detail-list article > div {
  padding: clamp(24px, 4vw, 42px);
}

.facility-detail-list h3 {
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.facility-detail-list ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--green);
  font-weight: 700;
  line-height: 1.7;
}

.venue-card,
.facility-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 36px rgba(23, 32, 28, 0.06);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

.venue-card:hover,
.facility-grid article:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(184, 138, 45, 0.46);
  box-shadow: var(--shadow);
}

.venue-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.venue-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
}

.venue-card.large img {
  height: 560px;
}

.venue-card:hover img,
.facility-grid article:hover img,
.gallery-grid img:hover {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

.venue-card div,
.facility-grid article {
  padding: 24px;
}

.events {
  padding: clamp(66px, 8vw, 108px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(7, 13, 11, 0.98), rgba(17, 44, 37, 0.96)),
    var(--charcoal);
  color: var(--white);
}

.events p {
  color: rgba(255, 255, 255, 0.72);
}

.page-routes {
  background:
    linear-gradient(180deg, rgba(239, 241, 232, 0.94), rgba(250, 247, 239, 0.98)),
    var(--sage);
}

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

.route-card {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(199, 154, 58, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 13, 11, 0.04), rgba(7, 13, 11, 0.88)),
    var(--green);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(13, 23, 19, 0.14);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(240, 223, 179, 0.34);
  background:
    url("assets/vicc-v-emblem.png") center / 78% auto no-repeat,
    rgba(255, 255, 255, 0.08);
  opacity: 0.38;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
  transform: translate3d(6px, -4px, 0) rotate(-5deg);
  animation: logoFloatSoft 7s var(--ease-out) infinite alternate;
}

.route-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 58, 0.58);
  box-shadow: 0 28px 78px rgba(13, 23, 19, 0.24);
}

.route-card:hover::before {
  opacity: 0.7;
}

.route-card span,
.route-card h3,
.route-card p {
  position: relative;
  z-index: 1;
}

.route-card span {
  margin-bottom: 72px;
  color: var(--champagne);
  font-family: "Gilda Display", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.route-card h3 {
  color: var(--white);
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 400;
}

.route-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.event-list div {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  transition: background 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.event-list div::before,
.booking-summary::before,
.dark-cta div::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 46px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}

.event-list div:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.event-list div:hover::before,
.booking-summary:hover::before,
.dark-cta div:hover::before {
  transform: scaleX(1);
}

.premium-band {
  background: var(--sage);
}

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

.facility-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  margin: -24px -24px 24px;
  max-width: calc(100% + 48px);
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
}

.gallery {
  padding: clamp(66px, 8vw, 108px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(180deg, rgba(199, 154, 58, 0.12), transparent 24%),
    #070d0b;
  color: var(--white);
}

.page-gallery {
  position: relative;
  background:
    linear-gradient(180deg, rgba(250, 247, 239, 0.96), rgba(239, 241, 232, 0.9)),
    var(--paper);
  color: var(--ink);
}

.gallery-hero img {
  object-position: center;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.gallery-intro .section-heading {
  margin: 0;
}

.gallery-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-stat-grid article {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(199, 154, 58, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 239, 0.78)),
    var(--white);
  box-shadow: 0 18px 48px rgba(13, 23, 19, 0.08);
}

.gallery-stat-grid article::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 92px;
  height: 92px;
  background: url("assets/vicc-v-emblem.png") center / contain no-repeat;
  opacity: 0.12;
  filter: sepia(1) saturate(1.4) hue-rotate(350deg) drop-shadow(0 18px 28px rgba(7, 13, 11, 0.2));
  transform: translate3d(8px, 0, 0) rotate(-5deg);
  animation: logoFloatSoft 7s var(--ease-out) infinite alternate;
}

.gallery-stat-grid article:hover::after {
  opacity: 0.22;
  transform: translate3d(-2px, -8px, 0) rotate(3deg) scale(1.04);
}

.gallery-stat-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-family: "Gilda Display", Georgia, serif;
  font-size: 44px;
  line-height: 0.9;
}

.gallery-stat-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.video-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.video-card {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(199, 154, 58, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 239, 0.9)),
    var(--white);
  box-shadow: 0 18px 52px rgba(13, 23, 19, 0.1);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.54) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 780ms var(--ease-out);
}

.video-card.featured {
  grid-column: span 2;
  align-content: start;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 154, 58, 0.62);
  box-shadow: var(--shadow);
}

.video-card:hover::before {
  transform: translateX(120%);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--charcoal);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin-bottom: 0;
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.08;
}

.video-card:not(.featured) h3 {
  font-size: clamp(20px, 1.8vw, 25px);
}

.video-card p:last-child {
  margin-bottom: 0;
}

.gallery-photo-heading {
  margin-top: 8px;
}

.original-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border: 1px solid rgba(199, 154, 58, 0.24);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 18px 54px rgba(7, 13, 11, 0.16);
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out), border-color 420ms var(--ease-out);
}

.gallery-tile.wide {
  grid-column: span 2;
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.01);
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
}

.gallery-tile figcaption {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(240, 223, 179, 0.22);
  border-radius: 6px;
  background: rgba(7, 13, 11, 0.72);
  color: var(--white);
  backdrop-filter: blur(14px);
  transform: translateY(8px);
  opacity: 0.94;
  transition: transform 360ms var(--ease-out), opacity 360ms var(--ease-out);
}

.gallery-tile span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-tile strong {
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.02;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 13, 11, 0.72)),
    radial-gradient(circle at 16% 12%, rgba(240, 223, 179, 0.2), transparent 26%);
  opacity: 0.92;
  transition: opacity 420ms var(--ease-out);
}

.gallery-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 154, 58, 0.58);
  box-shadow: 0 30px 80px rgba(7, 13, 11, 0.24);
}

.gallery-tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.04);
}

.gallery-tile:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.dark-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(66px, 8vw, 112px) clamp(20px, 6vw, 80px);
  color: var(--white);
}

.dark-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(199, 154, 58, 0.2), transparent 25%),
    linear-gradient(90deg, rgba(7, 13, 11, 0.93), rgba(13, 23, 19, 0.46));
}

.dark-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-cta div {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.dark-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 54px;
  align-items: start;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 34px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(250, 247, 239, 0.96), rgba(239, 241, 232, 0.98)),
    var(--sage);
}

.booking-form,
.booking-summary {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.form-intro {
  max-width: 720px;
}

.form-intro p:last-child {
  margin-bottom: 0;
}

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

.addon-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #fffdfa, #f8f4ea);
}

.addon-group legend {
  padding: 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.addon-group label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.addon-group label:hover {
  color: var(--gold-dark);
}

.addon-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.form-message {
  min-height: 28px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.booking-complete {
  border-color: rgba(184, 138, 45, 0.5);
}

.booking-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
  padding: 30px;
  background:
    radial-gradient(circle at 88% 8%, rgba(199, 154, 58, 0.22), transparent 25%),
    linear-gradient(180deg, rgba(17, 44, 37, 0.98), rgba(7, 13, 11, 0.98)),
    var(--green);
  color: var(--white);
  overflow: hidden;
}

.booking-summary h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.booking-summary dl {
  display: grid;
  gap: 1px;
  margin: 0;
}

.booking-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-summary dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 800;
}

.booking-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.estimate {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(184, 138, 45, 0.5);
  background: linear-gradient(135deg, rgba(199, 154, 58, 0.18), rgba(240, 223, 179, 0.08));
}

.estimate span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimate strong {
  color: var(--champagne);
  font-family: "Gilda Display", Georgia, serif;
  font-size: 44px;
  font-weight: 400;
}

.summary-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.booking-actions {
  display: grid;
  gap: 10px;
}

.booking-actions a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--white);
  font-weight: 800;
}

.contact-hero img {
  object-position: center;
}

.refined-contact {
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(250, 247, 239, 0.98), rgba(239, 241, 232, 0.9)),
    var(--paper);
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-copy p {
  max-width: 660px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--green);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #334038;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfcfa;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(184, 138, 45, 0.12);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
}

.inquiry-form button,
.booking-form button {
  border: 0;
  background: var(--gold);
  color: var(--white);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(7, 13, 11, 0.98), rgba(17, 44, 37, 0.96)),
    var(--charcoal);
  color: var(--white);
}

.contact-method-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(240, 223, 179, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 320ms var(--ease-out), border-color 320ms var(--ease-out), background 320ms var(--ease-out);
}

.contact-method-card::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 100px;
  height: 100px;
  background: url("assets/vicc-v-emblem.png") center / contain no-repeat;
  opacity: 0.12;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
  animation: logoFloatSoft 7s var(--ease-out) infinite alternate;
}

.contact-method-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 223, 179, 0.54);
  background:
    radial-gradient(circle at 88% 0%, rgba(199, 154, 58, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
}

.contact-method-card span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-method-card h3 {
  color: var(--white);
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.contact-method-card a,
.contact-method-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.contact-method-card a {
  width: fit-content;
}

.contact-method-card a:hover {
  color: var(--champagne);
}

.contact-planning-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--white);
}

.planning-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.planning-checklist span {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(199, 154, 58, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 239, 0.92)),
    var(--white);
  color: var(--green);
  font-weight: 800;
  box-shadow: 0 16px 46px rgba(13, 23, 19, 0.08);
}

.planning-checklist span::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 18px;
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.prestige-card,
.highlight-list span,
.highlight-list a,
.numbered article,
.venue-card,
.facility-grid article,
.story-grid article,
.group-story,
.facility-detail-list article,
.event-list div,
.vip-service-grid article,
.journey-grid article,
.contact-preview,
.booking-form,
.booking-summary {
  isolation: isolate;
}

.prestige-card,
.numbered article,
.venue-card,
.facility-grid article,
.story-grid article,
.group-story,
.facility-detail-list article,
.contact-preview,
.booking-form {
  border-color: rgba(199, 154, 58, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 239, 0.92)),
    var(--white);
  box-shadow: 0 18px 52px rgba(13, 23, 19, 0.1);
}

.venue-card,
.facility-grid article,
.story-grid article,
.contact-preview,
.booking-form {
  position: relative;
}

.venue-card::before,
.facility-grid article::before,
.story-grid article::before,
.contact-preview::before,
.booking-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(199, 154, 58, 0.44), transparent 28%),
    linear-gradient(315deg, rgba(17, 44, 37, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 340ms var(--ease-out);
}

.venue-card:hover::before,
.facility-grid article:hover::before,
.story-grid article:hover::before,
.contact-preview:hover::before,
.booking-form:hover::before {
  opacity: 1;
}

.venue-card div,
.facility-grid article,
.story-grid article {
  border-bottom: 3px solid rgba(199, 154, 58, 0.48);
}

.v-motion-card {
  position: relative;
  isolation: isolate;
  perspective: 900px;
  transform-style: preserve-3d;
}

.v-motion-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: -1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 223, 179, 0.48);
  background:
    url("assets/vicc-v-emblem.png") center / 82% auto no-repeat,
    linear-gradient(135deg, rgba(240, 223, 179, 0.2), rgba(199, 154, 58, 0.08)),
    rgba(7, 13, 11, 0.24);
  backdrop-filter: blur(10px);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.2));
  box-shadow:
    inset 0 0 0 6px rgba(199, 154, 58, 0.08),
    inset 0 0 24px rgba(240, 223, 179, 0.1),
    0 22px 54px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  transform: translate3d(8px, -6px, -26px) rotateX(18deg) rotateY(-22deg);
  transform-origin: center;
  animation: vSealFloat 5.8s var(--ease-out) infinite alternate;
  pointer-events: none;
}

.v-motion-card::before {
  background:
    radial-gradient(circle at var(--mx, 72%) var(--my, 18%), rgba(240, 223, 179, 0.24), transparent 22%),
    linear-gradient(135deg, rgba(199, 154, 58, 0.36), transparent 28%),
    linear-gradient(315deg, rgba(17, 44, 37, 0.16), transparent 34%);
}

.v-motion-card:hover {
  transform: translateY(-7px) rotateX(1.4deg) rotateY(-1.8deg);
}

.v-motion-card:hover::after {
  opacity: 0.88;
  animation-duration: 2.8s;
  transform: translate3d(0, -10px, 8px) rotateX(8deg) rotateY(-12deg) scale(1.04);
}

.venue-card h3,
.facility-grid h3,
.story-grid h3,
.event-list h3,
.journey-grid h3,
.group-proof h3 {
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}

.venue-card p,
.facility-grid p,
.story-grid p,
.event-list p,
.journey-grid p,
.group-proof p {
  font-size: 15px;
}

.venue-card img,
.facility-grid img,
.gallery-grid img,
.facility-detail-list img {
  filter: saturate(0.96) contrast(1.04);
}

.venue-card:hover img,
.facility-grid article:hover img,
.gallery-grid img:hover,
.facility-detail-list article:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.06);
}

.contact-preview {
  display: grid;
  gap: 16px;
  min-height: 360px;
  align-content: end;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(199, 154, 58, 0.32);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(7, 13, 11, 0.14), rgba(7, 13, 11, 0.9)),
    url("assets/kabani.jpg") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-preview span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-preview strong {
  max-width: 420px;
  font-family: "Gilda Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.06;
}

.contact-preview p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.modal-trigger {
  margin: 22px 0 6px;
  border: 0;
  cursor: pointer;
}

.modal {
  width: min(720px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
}

.modal::backdrop {
  background: rgba(7, 13, 11, 0.72);
  backdrop-filter: blur(10px);
}

.modal-shell {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(199, 154, 58, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 0%, rgba(199, 154, 58, 0.2), transparent 25%),
    linear-gradient(180deg, #fffdfa, #f7f0de);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 38px;
  border: 1px solid rgba(199, 154, 58, 0.34);
  border-radius: 4px;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.modal .inquiry-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.chairman-note {
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  align-items: center;
}

.chairman-portrait {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(240, 223, 179, 0.3);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 8%, rgba(240, 223, 179, 0.2), transparent 35%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.chairman-portrait img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
}

.chairman-portrait span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 223, 179, 0.36);
  background: rgba(7, 13, 11, 0.72);
  color: var(--champagne);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.chairman-copy p:last-child {
  max-width: 820px;
}

.group-message {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

.group-message > p {
  margin: 0;
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: rgba(17, 44, 37, 0.04);
  font-size: 18px;
}

.group-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.group-proof article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(199, 154, 58, 0.26);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 247, 239, 0.82)),
    var(--white);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

.group-proof article:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 154, 58, 0.56);
  box-shadow: var(--shadow);
}

.group-proof span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-family: "Gilda Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.booking-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(24px, 4vw, 52px);
}

.booking-form {
  overflow: hidden;
  border-radius: 8px;
}

.booking-form .form-intro {
  max-width: none;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(199, 154, 58, 0.25);
}

.form-grid {
  gap: 16px;
}

.form-grid label,
.booking-form > label {
  padding: 16px;
  border: 1px solid rgba(216, 210, 196, 0.78);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.form-grid label:focus-within,
.booking-form > label:focus-within {
  border-color: rgba(199, 154, 58, 0.72);
  box-shadow: 0 12px 34px rgba(13, 23, 19, 0.08);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border-color: transparent;
  background: rgba(239, 241, 232, 0.58);
}

.booking-summary {
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 13, 11, 0.2);
}

.booking-summary dl div {
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.045);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 6vw, 80px) 26px;
  background:
    radial-gradient(circle at 82% 0%, rgba(199, 154, 58, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(7, 13, 11, 0.98), rgba(17, 44, 37, 0.98)),
    var(--green);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(240, 223, 179, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 223, 179, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

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

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(240, 223, 179, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.footer-cta h2 {
  max-width: 840px;
  font-size: clamp(30px, 4vw, 54px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.62fr) minmax(190px, 0.82fr) minmax(240px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: 4px 0 clamp(28px, 4vw, 42px);
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 22px;
}

.footer-brand p,
.footer-contact p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3,
.footer-contact h3 {
  margin: 0 0 8px;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-contact a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  transition: color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.footer-column a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--champagne);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 223, 179, 0.18);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  transition: color 220ms var(--ease-out), transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.footer-bottom a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom a:hover {
  border-color: rgba(240, 223, 179, 0.5);
  background: rgba(240, 223, 179, 0.1);
  transform: translateY(-2px);
}

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

.reveal-hero .eyebrow,
.reveal-hero h1,
.reveal-hero .hero-copy,
.reveal-hero .hero-actions,
.reveal-hero .hero-panel {
  animation: heroRise 820ms var(--ease-out) both;
}

.reveal-hero h1 {
  animation-delay: 90ms;
}

.reveal-hero .hero-copy {
  animation-delay: 180ms;
}

.reveal-hero .hero-actions {
  animation-delay: 270ms;
}

.reveal-hero .hero-panel {
  animation-delay: 360ms;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

@keyframes floatBadge {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes vSealFloat {
  0% {
    transform: translate3d(8px, -6px, -26px) rotateX(18deg) rotateY(-22deg);
  }
  48% {
    transform: translate3d(-4px, 4px, -10px) rotateX(8deg) rotateY(16deg);
  }
  100% {
    transform: translate3d(6px, -12px, 0) rotateX(20deg) rotateY(-8deg);
  }
}

@keyframes logoFloatSoft {
  0% {
    transform: translate3d(8px, 0, 0) rotate(-5deg) scale(0.96);
  }
  50% {
    transform: translate3d(-4px, -10px, 0) rotate(3deg) scale(1.02);
  }
  100% {
    transform: translate3d(4px, -16px, 0) rotate(-2deg) scale(1);
  }
}

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .intro,
  .media-band,
  .feature-split,
  .vip-suite,
  .director-note,
  .chairman-note,
  .group-message,
  .facility-detail-list article,
  .booking-layout,
  .contact,
  .contact-planning-panel {
    grid-template-columns: 1fr;
  }

  .info-rail,
  .prestige-strip,
  .numbered {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-band img {
    height: 440px;
  }

  .venue-grid,
  .event-list,
  .route-grid,
  .contact-methods,
  .facility-grid,
  .vip-service-grid,
  .journey-grid,
  .story-grid,
  .group-proof,
  .gallery-intro,
  .gallery-stat-grid,
  .video-showcase,
  .original-gallery-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .video-card.featured,
  .gallery-tile.wide,
  .gallery-tile.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .venue-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .venue-card.large img {
    height: 360px;
  }

  .original-gallery-grid {
    grid-auto-rows: 320px;
  }

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

  .facility-detail-list article:nth-of-type(even) img {
    order: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
  }

  .brand img {
    width: 118px;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
    padding-top: 118px;
  }

  .page-hero,
  .page-hero.compact {
    min-height: 520px;
    padding-top: 118px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .info-rail,
  .prestige-strip,
  .numbered {
    grid-template-columns: 1fr;
  }

  .feature-media,
  .feature-media img {
    min-height: 360px;
  }

  .chairman-portrait,
  .chairman-portrait img,
  .contact-preview {
    min-height: 320px;
  }

  .booking-summary dl div {
    align-items: start;
    flex-direction: column;
  }

  .booking-summary dd {
    text-align: left;
  }

  .modal-close {
    position: static;
    justify-self: end;
  }

  .form-grid,
  .vip-service-grid,
  .addon-group {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

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

  .footer-cta .button {
    justify-self: start;
  }

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

  .venue-card img,
  .facility-grid img {
    height: 245px;
  }

  .original-gallery-grid {
    grid-auto-rows: 260px;
  }

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

  .gallery-stat-grid article {
    min-height: 112px;
  }

  .planning-checklist {
    grid-template-columns: 1fr;
  }
}

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

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

  .feature-media div {
    animation: none;
  }

  .v-motion-card::after {
    animation: none;
    transform: none;
  }
}
