:root {
  --ka-night: #0c1118;
  --ka-coal: #121a23;
  --ka-graphite: #1b2632;
  --ka-steel: #263445;
  --ka-ash: #637083;
  --ka-cloud: #eef2f6;
  --ka-paper: #f8f6f0;
  --ka-surface: #ffffff;
  --ka-surface-2: #f1f4f7;
  --ka-gold: #e3b341;
  --ka-gold-2: #ffcf5b;
  --ka-red: #c43b32;
  --ka-ruby: #8f251f;
  --ka-green: #1f8a70;
  --ka-ink: #17202a;
  --ka-muted: #647082;
  --ka-line: rgba(23, 32, 42, .12);
  --ka-line-dark: rgba(255, 255, 255, .13);
  --ka-shadow: 0 22px 55px rgba(12, 17, 24, .14);
  --ka-shadow-strong: 0 34px 90px rgba(12, 17, 24, .28);
  --ka-radius: 8px;
  --ka-radius-sm: 6px;
  --ka-container: 1180px;
  --ka-ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ka-ink);
  background:
    linear-gradient(180deg, rgba(248, 246, 240, .98), rgba(238, 242, 246, .98)),
    repeating-linear-gradient(90deg, rgba(23, 32, 42, .035) 0 1px, transparent 1px 80px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(227, 179, 65, .68);
  outline-offset: 3px;
}

.container {
  width: min(var(--ka-container), calc(100% - 32px));
  max-width: var(--ka-container);
}
.narrow {
  max-width: 880px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ka-night);
  background: var(--ka-gold-2);
  border-radius: var(--ka-radius-sm);
  font-weight: 900;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(12, 17, 24, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
  transition: background .24s var(--ka-ease), box-shadow .24s var(--ka-ease), transform .24s var(--ka-ease);
}
.site-header.is-scrolled {
  background: rgba(12, 17, 24, .94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}
.site-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}
.site-brand img,
.brand-emblem {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
}
.site-brand img {
  object-fit: contain;
  padding: 4px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}
.brand-emblem {
  display: grid;
  place-items: center;
  color: var(--ka-night);
  background: linear-gradient(135deg, var(--ka-gold-2), var(--ka-gold));
  font-weight: 1000;
  box-shadow: 0 0 0 5px rgba(227, 179, 65, .13);
}
.brand-copy {
  display: grid;
  line-height: 1.1;
}
.brand-name {
  font-size: 1.08rem;
  font-weight: 1000;
  letter-spacing: .01em;
}
.brand-sub {
  margin-top: 3px;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a,
.nav-links span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color .18s var(--ka-ease), background .18s var(--ka-ease), transform .18s var(--ka-ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--ka-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ka-ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta,
.nav-reservation {
  border-radius: var(--ka-radius-sm) !important;
}
.nav-cta {
  color: var(--ka-night) !important;
  background: linear-gradient(135deg, var(--ka-gold-2), var(--ka-gold)) !important;
  box-shadow: 0 12px 30px rgba(227, 179, 65, .22);
}
.nav-cta::after,
.nav-reservation::after { display: none; }
.nav-reservation {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .18);
}
.nav-cta.disabled { opacity: .66; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  border-radius: var(--ka-radius-sm);
}
.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 99px;
  transition: transform .2s var(--ka-ease), opacity .2s var(--ka-ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 16%, rgba(227, 179, 65, .16), transparent 27%),
    linear-gradient(135deg, rgba(12, 17, 24, .98), rgba(18, 26, 35, .96) 50%, rgba(38, 52, 69, .92)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .065) 0 1px, transparent 1px 28px);
}
.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 54%, rgba(227, 179, 65, .1) 54% 55%, transparent 55%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 58px);
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}
.hero-section { padding: 112px 0 88px; }
.page-hero { padding: 88px 0 66px; }
.page-hero.compact { padding: 68px 0 52px; }
.video-feature-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(227, 179, 65, .08), transparent 42%),
    var(--ka-night);
}
.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}
.video-feature-copy { max-width: 650px; }
.video-feature-copy h2 {
  max-width: 620px;
  margin: 12px 0 18px;
  color: #fff;
}
.video-feature-copy p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .72);
}
.promo-video-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--ka-radius-sm);
  background: #050709;
  box-shadow: var(--ka-shadow-strong);
}
.promo-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(227, 179, 65, .16);
}
.promo-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050709;
}
.hero-grid,
.split-section,
.contact-grid,
.payment-grid,
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .94fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}
.hero-copy,
.page-hero .container,
.page-hero .split-section,
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-copy h1,
.page-hero h1 {
  max-width: 940px;
  margin: 12px 0 18px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: .96;
  font-weight: 1000;
  letter-spacing: 0;
}
.hero-copy p,
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .79);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ka-gold-2);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .76rem;
  font-weight: 1000;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.section-kicker { color: var(--ka-ruby); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn-primary-public,
.btn-secondary-public,
.btn-ghost-public,
.btn-danger-public,
.btn-success-public {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--ka-radius-sm);
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s var(--ka-ease), box-shadow .18s var(--ka-ease), background .18s var(--ka-ease), border-color .18s var(--ka-ease);
}
.btn-primary-public {
  color: var(--ka-night);
  background: linear-gradient(135deg, var(--ka-gold-2), var(--ka-gold));
  box-shadow: 0 16px 34px rgba(227, 179, 65, .28);
}
.btn-secondary-public {
  color: var(--ka-night);
  background: #fff;
  box-shadow: 0 16px 34px rgba(12, 17, 24, .12);
}
.btn-ghost-public {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .06);
}
.btn-danger-public { color: #fff; background: linear-gradient(135deg, var(--ka-red), var(--ka-ruby)); }
.btn-success-public { color: #fff; background: linear-gradient(135deg, var(--ka-green), #166951); }
.btn-primary-public:hover,
.btn-secondary-public:hover,
.btn-ghost-public:hover,
.btn-danger-public:hover,
.btn-success-public:hover {
  transform: translateY(-2px);
  box-shadow: var(--ka-shadow);
}
.hero-visual {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--ka-radius);
  background:
    linear-gradient(145deg, rgba(227, 179, 65, .18), transparent 38%),
    linear-gradient(160deg, #263445, #0c1118);
  box-shadow: var(--ka-shadow-strong);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(227, 179, 65, .72);
  transform: skew(-13deg);
}
.track-lines {
  position: absolute;
  inset: 58px 18px 58px 72px;
  transform: skew(-13deg);
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}
.track-lines::before,
.track-lines::after {
  content: "";
  position: absolute;
  inset: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.track-lines::after { inset: 96px 0; }
.hero-badge,
.hero-metric {
  position: absolute;
  z-index: 2;
  border-radius: var(--ka-radius);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(12, 17, 24, .72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}
.hero-badge {
  right: 22px;
  bottom: 22px;
  padding: 14px 16px;
  color: #fff;
  font-weight: 1000;
}
.hero-badge span,
.hero-metric span {
  display: block;
  color: var(--ka-gold-2);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-metric {
  left: 22px;
  top: 22px;
  padding: 14px 16px;
  color: #fff;
}
.hero-metric strong { display: block; font-size: 2rem; line-height: 1; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 850;
}
.trust-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--ka-gold);
  border-radius: 50%;
}

.section {
  position: relative;
  padding: clamp(58px, 8vw, 96px) 0;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 76%, rgba(227, 179, 65, .055) 76% 77%, transparent 77%);
}
.section > .container { position: relative; z-index: 1; }
.muted-section {
  color: var(--ka-ink);
  background:
    linear-gradient(180deg, #eef2f6, #f8f6f0),
    repeating-linear-gradient(90deg, rgba(23, 32, 42, .04) 0 1px, transparent 1px 72px);
}
.feature-section,
.dark-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(12, 17, 24, .98), rgba(27, 38, 50, .96)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 28px);
}
.feature-section .section-kicker,
.dark-section .section-kicker { color: var(--ka-gold-2); }
.cta-box .section-kicker,
.form-aside .section-kicker,
.site-footer .section-kicker { color: var(--ka-gold-2); }
.feature-section .lead-text,
.dark-section .lead-text,
.feature-section p,
.dark-section p { color: rgba(255, 255, 255, .74); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.section-heading > div { max-width: 760px; }
.section-heading h2,
.split-section h2,
.cta-box h2,
.form-panel h2,
.payment-card h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: 0;
}
.lead-text {
  color: var(--ka-muted);
  font-size: 1.08rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ka-ruby);
  font-weight: 1000;
  text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .18s var(--ka-ease); }
.text-link:hover::after { transform: translateX(4px); }

.section-image,
.article-image {
  width: 100%;
  border-radius: var(--ka-radius);
  object-fit: cover;
  background: var(--ka-steel);
  box-shadow: var(--ka-shadow);
}
.section-image { aspect-ratio: 4 / 3; }
.article-image {
  max-height: 500px;
  margin-bottom: 28px;
}
.placeholder-large,
.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(227, 179, 65, .18), transparent 42%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, var(--ka-steel), var(--ka-night));
}
.image-placeholder span,
.placeholder-large span {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  font-weight: 1000;
  text-align: center;
}

.stats-band {
  position: relative;
  overflow: hidden;
  padding: 34px 0;
  color: #fff;
  background: var(--ka-night);
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(227, 179, 65, .16), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 86px);
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
}
.stats-grid div {
  padding: 12px 20px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.stats-grid div:first-child { border-left: 3px solid var(--ka-gold); }
.stats-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 1000;
}
.stats-grid span {
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  font-weight: 800;
}

.card-grid,
.people-grid,
.partner-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.content-card,
.person-card,
.partner-card,
.feature-grid article,
.payment-card,
.info-panel,
.status-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ka-line);
  border-radius: var(--ka-radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(12, 17, 24, .09);
}
.content-card,
.person-card,
.partner-card,
.feature-grid article {
  transition: transform .22s var(--ka-ease), box-shadow .22s var(--ka-ease), border-color .22s var(--ka-ease);
}
.content-card:hover,
.person-card:hover,
.partner-card:hover,
.feature-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 179, 65, .42);
  box-shadow: var(--ka-shadow);
}
.content-card::after,
.person-card::after,
.partner-card::after,
.feature-grid article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--ka-gold), var(--ka-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ka-ease);
}
.content-card:hover::after,
.person-card:hover::after,
.partner-card:hover::after,
.feature-grid article:hover::after { transform: scaleX(1); }
.content-card > img,
.content-card > .image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.track-card > img,
.track-card > .image-placeholder {
  aspect-ratio: 16 / 11;
}
.card-body {
  position: relative;
  padding: 20px;
}
.card-body h3,
.person-card h2,
.person-card h3,
.partner-card h2,
.feature-grid h3 {
  margin: 10px 0 8px;
  color: var(--ka-ink);
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 1000;
}
.feature-section .feature-grid h3 { color: #fff; }
.card-body p,
.person-card p,
.partner-card p,
.feature-grid p {
  color: var(--ka-muted);
  margin-bottom: 12px;
}
.price-pill,
.tag,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 1000;
}
.price-pill {
  color: #4d3500;
  background: linear-gradient(135deg, rgba(255, 207, 91, .36), rgba(227, 179, 65, .16));
  border: 1px solid rgba(227, 179, 65, .28);
}
.tag {
  color: #fff;
  background: linear-gradient(135deg, var(--ka-red), var(--ka-ruby));
}
.status-chip {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.card-actions a {
  color: var(--ka-ruby);
  font-weight: 1000;
  text-decoration: none;
}

.feature-grid article {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
    rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .12);
}
.feature-icon,
.contact-icon,
.step-index,
.status-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--ka-radius-sm);
  color: var(--ka-night);
  background: linear-gradient(135deg, var(--ka-gold-2), var(--ka-gold));
  font-weight: 1000;
}
.feature-grid .feature-icon { margin-bottom: 12px; }

.person-card,
.partner-card {
  padding: 18px;
}
.person-card img,
.person-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--ka-radius-sm);
  background: var(--ka-steel);
}
.person-placeholder {
  display: grid;
  place-items: center;
  color: var(--ka-gold-2);
  font-size: 3rem;
  font-weight: 1000;
}
.person-card span {
  display: inline-flex;
  margin: 3px 0 8px;
  color: var(--ka-ruby);
  font-weight: 1000;
}
.person-card a,
.partner-card a {
  color: var(--ka-ruby);
  font-weight: 1000;
  text-decoration: none;
}
.partner-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.partner-strip div,
.partner-card {
  min-height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
}
.partner-strip div {
  padding: 20px;
  border: 1px solid var(--ka-line);
  border-radius: var(--ka-radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 32px rgba(12, 17, 24, .07);
}
.partner-strip img,
.partner-card img {
  max-width: 170px;
  max-height: 92px;
  object-fit: contain;
  filter: saturate(.95) contrast(1.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  grid-column: span 3;
  min-height: 150px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--ka-radius);
  background: var(--ka-steel);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(12, 17, 24, .11);
}
.gallery-item:nth-child(7n + 1),
.gallery-item:nth-child(7n + 6) {
  grid-column: span 6;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ka-ease), filter .35s var(--ka-ease);
}
.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 11px;
  color: #fff;
  background: rgba(12, 17, 24, .72);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--ka-radius-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s var(--ka-ease), transform .22s var(--ka-ease);
  font-weight: 900;
}
.gallery-item:hover img { transform: scale(1.055); filter: contrast(1.05) saturate(1.05); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 9, 13, .9);
  backdrop-filter: blur(12px);
}
.gallery-modal.open { display: flex; animation: modalIn .18s var(--ka-ease); }
.gallery-modal figure {
  width: min(1040px, 100%);
  margin: 0;
  color: #fff;
}
.gallery-modal img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--ka-radius);
  box-shadow: var(--ka-shadow-strong);
}
.gallery-modal figcaption {
  max-width: 880px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .78);
  text-align: center;
}
.modal-close,
.modal-prev,
.modal-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .11);
  font-size: 1.45rem;
  line-height: 1;
}
.modal-close { right: 22px; top: 22px; }
.modal-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.modal-next { right: 22px; top: 50%; transform: translateY(-50%); }

.rich-text {
  color: #26323e;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--ka-line);
  border-radius: var(--ka-radius);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 44px rgba(12, 17, 24, .08);
}
.rich-text p:last-child { margin-bottom: 0; }
.article-shell .rich-text {
  font-size: 1.06rem;
  line-height: 1.8;
}
.detail-price {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 9px 13px;
  color: var(--ka-night);
  background: linear-gradient(135deg, var(--ka-gold-2), var(--ka-gold));
  border-radius: var(--ka-radius-sm);
  font-size: 1.05rem;
  font-weight: 1000;
}
.pagination-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.pagination-nav a {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ka-line);
  border-radius: var(--ka-radius-sm);
  color: var(--ka-ink);
  background: #fff;
  text-decoration: none;
  font-weight: 1000;
}
.pagination-nav a.active {
  color: var(--ka-night);
  background: var(--ka-gold);
  border-color: var(--ka-gold);
}

.contact-grid { align-items: stretch; }
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: center;
  padding: 17px;
  color: var(--ka-ink);
  background: #fff;
  border: 1px solid var(--ka-line);
  border-radius: var(--ka-radius);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(12, 17, 24, .07);
  transition: transform .18s var(--ka-ease), border-color .18s var(--ka-ease);
}
.contact-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 179, 65, .5);
}
.contact-list strong {
  display: block;
  color: var(--ka-ruby);
  font-weight: 1000;
}
.contact-list span,
.contact-list p { color: var(--ka-muted); }
.contact-list .contact-icon { color: var(--ka-night); }
.map-frame {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--ka-line);
  border-radius: var(--ka-radius);
  background: #fff;
  box-shadow: var(--ka-shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.cta-section {
  padding: 28px 0 clamp(64px, 8vw, 100px);
}
.cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 46px);
  color: #fff;
  border-radius: var(--ka-radius);
  background:
    linear-gradient(115deg, rgba(227, 179, 65, .18), transparent 43%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, var(--ka-night), var(--ka-graphite));
  box-shadow: var(--ka-shadow-strong);
}
.cta-box p { color: rgba(255, 255, 255, .76); margin: 10px 0 0; }

.empty-state {
  padding: clamp(28px, 5vw, 46px);
  color: var(--ka-muted);
  text-align: center;
  border: 1px dashed rgba(23, 32, 42, .22);
  border-radius: var(--ka-radius);
  background:
    linear-gradient(135deg, rgba(227, 179, 65, .1), transparent 42%),
    rgba(255, 255, 255, .9);
  box-shadow: 0 16px 36px rgba(12, 17, 24, .06);
}

.form-shell {
  align-items: start;
}
.form-panel,
.form-aside {
  position: relative;
}
.form-panel {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--ka-line);
  border-radius: var(--ka-radius);
  box-shadow: var(--ka-shadow);
}
.form-aside {
  color: #fff;
  padding: 24px;
  border-radius: var(--ka-radius);
  background:
    linear-gradient(135deg, rgba(227, 179, 65, .18), transparent 44%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, var(--ka-night), var(--ka-graphite));
  box-shadow: var(--ka-shadow);
}
.process-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, .78);
}
.process-list strong {
  display: block;
  color: #fff;
}
.public-form {
  margin-top: 22px;
}
.form-section {
  padding: 18px 0;
  border-top: 1px solid var(--ka-line);
}
.form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}
.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ka-ink);
  font-weight: 1000;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-field label,
.public-form label {
  display: block;
  margin-bottom: 7px;
  color: #273443;
  font-weight: 950;
}
.public-form input,
.public-form select,
.public-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ka-ink);
  background: #f8fafc;
  border: 1px solid rgba(23, 32, 42, .16);
  border-radius: var(--ka-radius-sm);
  transition: border-color .18s var(--ka-ease), box-shadow .18s var(--ka-ease), background .18s var(--ka-ease);
}
.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus {
  background: #fff;
  border-color: rgba(227, 179, 65, .82);
  box-shadow: 0 0 0 4px rgba(227, 179, 65, .16);
}
.public-form span,
.field-error {
  display: block;
  color: var(--ka-red);
  font-size: .9rem;
  margin-top: 5px;
}
.check-row {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  margin: 18px 0 20px;
  padding: 15px;
  color: #344252;
  background: #f8fafc;
  border: 1px solid var(--ka-line);
  border-radius: var(--ka-radius);
  font-weight: 600 !important;
}
.check-row input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}
.hp-field {
  position: absolute;
  left: -9999px;
}
.alert-public {
  margin-bottom: 16px;
  padding: 14px 16px;
  color: #7d211c;
  background: #fff1ef;
  border: 1px solid rgba(196, 59, 50, .24);
  border-radius: var(--ka-radius);
  font-weight: 800;
}
.price-preview {
  margin-top: 16px;
  padding: 14px 15px;
  color: #4d3500;
  background: linear-gradient(135deg, rgba(255, 207, 91, .28), rgba(227, 179, 65, .12));
  border: 1px solid rgba(227, 179, 65, .26);
  border-radius: var(--ka-radius);
  font-weight: 1000;
}

.payment-card,
.status-panel,
.info-panel {
  padding: clamp(22px, 4vw, 34px);
}
.payment-summary {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.payment-summary p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--ka-line);
}
.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.payment-actions form { margin: 0; }
.status-panel .payment-actions { justify-content: center; }
.status-panel {
  text-align: center;
}
.status-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
.status-panel.success .status-icon { background: linear-gradient(135deg, #42bd9a, var(--ka-green)); color: #fff; }
.status-panel.failed .status-icon { background: linear-gradient(135deg, var(--ka-red), var(--ka-ruby)); color: #fff; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, .76);
  background:
    linear-gradient(115deg, rgba(227, 179, 65, .11), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 84px),
    #090d12;
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 38px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--ka-radius);
  background: rgba(255, 255, 255, .055);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 34px;
}
.footer-brand {
  color: #fff;
  font-size: 1.32rem;
  font-weight: 1000;
  margin-bottom: 10px;
}
.site-footer h2 {
  color: #fff;
  font-size: .94rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.site-footer a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .18s var(--ka-ease), transform .18s var(--ka-ease);
}
.site-footer a:hover {
  color: var(--ka-gold-2);
  transform: translateX(3px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ka-ease), transform .55s var(--ka-ease);
}
.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1100px) {
  .nav-links a,
  .nav-links span { padding-inline: 9px; font-size: .88rem; }
}

@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background:
      linear-gradient(135deg, rgba(227, 179, 65, .1), transparent 40%),
      rgba(12, 17, 24, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--ka-radius);
    box-shadow: var(--ka-shadow-strong);
  }
  .nav-links.open { display: flex; animation: modalIn .16s var(--ka-ease); }
  .nav-links a,
  .nav-links span {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    border-radius: var(--ka-radius-sm);
  }
  .nav-cta,
  .nav-reservation { justify-content: center !important; }
  .hero-grid,
  .split-section,
  .video-feature,
  .contact-grid,
  .payment-grid,
  .form-shell,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-section { padding: 78px 0 64px; }
  .page-hero { padding: 70px 0 54px; }
  .hero-visual { min-height: 290px; }
  .video-feature-copy { max-width: 760px; }
  .promo-video-frame { width: min(100%, 330px); }
  .section-heading,
  .cta-box,
  .footer-cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-item,
  .gallery-item:nth-child(7n + 1),
  .gallery-item:nth-child(7n + 6) {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--ka-container)); }
  .brand-sub { display: none; }
  .hero-copy h1,
  .page-hero h1 { font-size: clamp(2.25rem, 13vw, 3.55rem); }
  .hero-actions,
  .payment-actions { flex-direction: column; }
  .payment-actions form { width: 100%; }
  .btn-primary-public,
  .btn-secondary-public,
  .btn-ghost-public,
  .btn-danger-public,
  .btn-success-public { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid div:nth-child(odd) { border-left: 3px solid var(--ka-gold); }
  .gallery-grid { gap: 8px; }
  .gallery-item,
  .gallery-item:nth-child(7n + 1),
  .gallery-item:nth-child(7n + 6) {
    grid-column: span 12;
  }
  .gallery-item img { min-height: 230px; }
  .promo-video-frame { width: min(100%, 300px); }
  .modal-prev,
  .modal-next {
    top: auto;
    bottom: 22px;
    transform: none;
  }
  .modal-prev { left: calc(50% - 58px); }
  .modal-next { right: calc(50% - 58px); }
  .payment-summary p { flex-direction: column; gap: 2px; }
}

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