:root {
  --bg: #111010;
  --bg-2: #161514;
  --bg-card: rgba(255, 255, 255, 0.042);
  --gold: #fcc20c;
  --gold-dim: rgba(252, 194, 12, 0.14);
  --gold-glow: rgba(252, 194, 12, 0.22);
  --red: #9c3022;
  --red-dim: rgba(156, 48, 34, 0.18);
  --text: #f0ebe0;
  --muted: #9e9688;
  --line: rgba(255, 255, 255, 0.07);
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --max: 1200px;
  --ease: cubic-bezier(.25, .1, .25, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

body.locked {
  overflow: hidden;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

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

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

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

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

.site-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(252, 194, 12, 0.18) 0%, transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(156, 48, 34, 0.2) 0%, transparent 28%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.18) 0%, rgba(9, 9, 9, 0.28) 100%);
}

.site-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.42) 0%, rgba(10, 10, 10, 0.54) 52%, rgba(10, 10, 10, 0.68) 100%),
    radial-gradient(circle at 20% 18%, rgba(252, 194, 12, 0.1) 0%, transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(156, 48, 34, 0.14) 0%, transparent 24%);
}

.site-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: saturate(1.06) contrast(1.06) brightness(0.92);
}

.wrap {
  width: min(calc(100% - 2.4rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #ffe76b);
  color: #1a1200;
}

h1,
h2,
h3,
h4 {
  font-family: inherit;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 0;
  transition: transform 200ms var(--spring), box-shadow 200ms var(--ease), background 180ms var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #fde96b 100%);
  color: #1a1200;
  box-shadow: 0 8px 32px rgba(252, 194, 12, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 14px 42px rgba(252, 194, 12, 0.44);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(252, 194, 12, 0.4);
  background: rgba(252, 194, 12, 0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 300ms var(--ease), backdrop-filter 300ms, border-color 300ms;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(17, 16, 16, 0.88);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  object-fit: cover;
  border: 1px solid rgba(252, 194, 12, 0.25);
}

.nav-brand-name {
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 180ms;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.7rem;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 240ms var(--ease), opacity 240ms;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  background: rgba(15, 14, 14, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  backdrop-filter: blur(20px);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 180ms;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.mobile-cta {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.nav-mobile a.mobile-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #fde96b 100%);
  border-color: var(--gold);
  color: #1a1200;
  box-shadow: 0 8px 32px rgba(252, 194, 12, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-mobile a.mobile-cta:hover {
  color: #1a1200;
  box-shadow: 0 14px 42px rgba(252, 194, 12, 0.44);
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.18) 55%, rgba(10, 10, 10, 0.36) 100%),
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(156, 48, 34, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 70%, rgba(252, 194, 12, 0.08) 0%, transparent 55%);
  z-index: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.012) 80px,
    rgba(255, 255, 255, 0.012) 81px
  );
}

.hero-watermark {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem;
}

.hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 235, 224, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--spring);
}

.hero-chip.is-active {
  background: linear-gradient(135deg, rgba(252, 194, 12, 0.18), rgba(252, 194, 12, 0.08));
  border-color: rgba(252, 194, 12, 0.34);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-title {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-title-static {
  display: block;
}

.hero-title-dynamic {
  display: block;
  min-height: 2.4em;
  color: var(--gold);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.hero-title-dynamic.is-changing {
  opacity: 0.18;
  transform: translateY(8px);
}

.hero-lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.hero-stat {
  flex: 1;
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.hero-stat:last-child {
  border-right: 0;
  padding-right: 0;
  padding-left: 2rem;
}

.hero-stat:not(:first-child):not(:last-child) {
  padding-left: 2rem;
}

.hero-stat-num {
  font-family: inherit;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.hero-img-panel {
  position: absolute;
  right: 0;
  top: 76px;
  bottom: 0;
  width: min(44%, 560px);
  overflow: hidden;
}

.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-img-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 40%),
    linear-gradient(180deg, transparent 40%, var(--bg) 100%);
  z-index: 1;
}

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(252, 194, 12, 0.04);
  padding: 0.85rem 0;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

.section {
  padding: 7rem 0;
}

.section-sm {
  padding: 5rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.section-head .eyebrow {
  margin-bottom: 0.75rem;
}

.section-head h2 {
  margin-bottom: 1rem;
}

.section-head p,
.about-copy p,
.menu-item-body p,
.event-card p,
.event-main-overlay p,
.spec-list li,
.testi-text,
.contact-info p,
.service-info,
.footer-brand p,
.footer-col li {
  color: var(--muted);
  text-wrap: pretty;
}

.section-head p {
  font-size: 1.05rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(252, 194, 12, 0.15);
  border-radius: inherit;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(17, 16, 16, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(252, 194, 12, 0.25);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
}

.about-badge-num {
  font-family: inherit;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.about-button {
  width: fit-content;
}

.menu-section,
.testimonials-section,
.why-section {
  background: rgba(22, 21, 20, 0.38);
  backdrop-filter: blur(10px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--line);
}

.menu-item {
  background: rgba(22, 21, 20, 0.52);
  position: relative;
  overflow: hidden;
  transition: background 200ms;
}

.menu-item:hover {
  background: rgba(252, 194, 12, 0.04);
}

.menu-item-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

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

.menu-item-body {
  padding: 1.25rem;
}

.menu-item-body h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.menu-item-body p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.menu-note {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(252, 194, 12, 0.2);
  background: rgba(252, 194, 12, 0.06);
  font-size: 0.92rem;
  color: #eddca0;
}

.menu-note::before {
  content: "★";
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.event-main {
  grid-row: span 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  min-height: 560px;
}

.event-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.event-main:hover img {
  transform: scale(1.03);
}

.event-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 9, 0.92) 0%, rgba(10, 9, 9, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.event-main-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.event-main-overlay p {
  font-size: 0.92rem;
}

.event-tag {
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.event-side {
  display: grid;
  gap: 1rem;
}

.event-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 200ms, background 200ms, transform 200ms var(--spring);
}

.event-card:hover {
  border-color: rgba(252, 194, 12, 0.3);
  background: rgba(252, 194, 12, 0.04);
  transform: translateY(-3px);
}

.event-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold) 0%, #fde96b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1e1e;
}

.event-card-icon svg,
.channel-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.event-card h3 {
  font-size: 1.1rem;
}

.event-card p {
  font-size: 0.9rem;
  flex: 1;
}

.event-showcase {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}

.event-showcase-copy {
  padding: 2.5rem;
}

.event-showcase-copy h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(252, 194, 12, 0.3);
  flex-shrink: 0;
  margin-top: 0.2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23fcc20c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.event-showcase-img {
  height: 100%;
  min-height: 380px;
}

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

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.spec-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 1.5rem;
}

.spec-card h4 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.spec-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.spec-list li {
  font-size: 0.88rem;
  display: flex;
  gap: 0.5rem;
}

.spec-list li::before {
  content: "—";
  color: rgba(252, 194, 12, 0.5);
  flex-shrink: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--line);
}

.why-item {
  background: rgba(17, 16, 16, 0.52);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background 200ms;
}

.why-item:hover {
  background: rgba(252, 194, 12, 0.03);
}

.why-num {
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(252, 194, 12, 0.5);
  font-weight: 700;
}

.why-item h3 {
  font-size: 1.15rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease), opacity 420ms var(--ease);
}

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

.gallery-item.tall {
  grid-row: span 2;
  min-height: 500px;
}

.gallery-item img.is-swapping {
  opacity: 0.16;
}

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

.testi-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 200ms, transform 200ms var(--spring);
}

.testi-card:hover {
  border-color: rgba(252, 194, 12, 0.25);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.testi-text {
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.testi-author {
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-author::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(252, 194, 12, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

.contact-eyebrow {
  margin-bottom: 0.75rem;
}

.contact-channels {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: border-color 200ms, background 200ms, transform 200ms var(--spring);
  cursor: pointer;
}

.channel:hover {
  border-color: rgba(252, 194, 12, 0.3);
  background: rgba(252, 194, 12, 0.05);
  transform: translateX(4px);
}

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold) 0%, #fde96b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1e1e;
  flex-shrink: 0;
}

.channel-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.channel-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.channel-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.service-info {
  padding: 1.2rem 1.35rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bg-card);
  font-size: 0.88rem;
}

.service-info strong {
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(252, 194, 12, 0.05) 0%, rgba(156, 48, 34, 0.05) 100%),
    var(--bg-card);
}

.form-grid-inner {
  display: grid;
  gap: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.7);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 200ms, box-shadow 200ms;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(252, 194, 12, 0.5);
  box-shadow: 0 0 0 3px rgba(252, 194, 12, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(158, 150, 136, 0.5);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  padding: 1rem;
}

.form-hint {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  background: rgba(13, 12, 12, 0.54);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: inherit;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.footer-brand p {
  font-size: 0.88rem;
}

.footer-col h4 {
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-col li {
  font-size: 0.9rem;
}

.footer-col a {
  color: var(--muted);
  transition: color 180ms;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(158, 150, 136, 0.6);
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(252, 194, 12, 0.28);
  background: linear-gradient(135deg, var(--gold) 0%, #fde96b 100%);
  color: #1e1e1e;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(252, 194, 12, 0.24);
}

.legal-page {
  min-height: 100vh;
  padding: 4rem 0 5rem;
  background: var(--bg);
}

.legal-card {
  max-width: 860px;
  padding: 2rem;
  margin: 0 auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.legal-card h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.legal-card h2 {
  margin: 2rem 0 0.8rem;
  font-size: 1.4rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.subpage-hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 9, 0.46) 0%, rgba(10, 9, 9, 0.32) 48%, rgba(10, 9, 9, 0.18) 100%),
    radial-gradient(circle at 18% 22%, rgba(252, 194, 12, 0.14) 0%, transparent 22%),
    radial-gradient(circle at 78% 40%, rgba(156, 48, 34, 0.18) 0%, transparent 26%);
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.subpage-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.subpage-title {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.subpage-lead {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.subpage-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.subpage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 9, 0.08) 0%, rgba(10, 9, 9, 0.88) 100%);
}

.subpage-visual-card {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  padding: 1.4rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(252, 194, 12, 0.2);
  background: rgba(16, 15, 15, 0.82);
  backdrop-filter: blur(12px);
}

.subpage-visual-card h3 {
  margin: 0.9rem 0 0.45rem;
}

.subpage-visual-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.process-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.package-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.25rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    var(--bg-card);
  padding: 2rem;
}

.package-card.featured {
  border-color: rgba(252, 194, 12, 0.3);
  box-shadow: 0 16px 40px rgba(252, 194, 12, 0.08);
}

.package-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.package-top h3 {
  margin: 0.9rem 0 0.55rem;
}

.package-intro {
  max-width: 32ch;
  color: var(--muted);
  font-size: 0.94rem;
}

.package-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.package-pill {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(252, 194, 12, 0.15);
  background: rgba(252, 194, 12, 0.05);
}

.package-pill strong {
  font-size: 1.2rem;
  color: var(--gold);
  line-height: 1;
}

.package-pill span {
  font-size: 0.82rem;
  color: var(--muted);
}

.package-features {
  gap: 1rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-align: right;
}

.package-price span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.compact {
  margin-bottom: 0;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.calculator-form {
  padding: 0;
  overflow: hidden;
}

.step-card {
  padding: 1.6rem 2rem;
  border-bottom: 1px solid var(--line);
}

.step-card:last-child {
  border-bottom: 0;
}

.step-head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.step-count {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.step-head h3 {
  font-size: 1.2rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

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

.option-card {
  display: block;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card-box {
  height: 100%;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--spring), box-shadow 180ms var(--ease);
}

.option-card strong {
  font-size: 1rem;
}

.option-card small,
.option-card em {
  color: var(--muted);
  font-style: normal;
}

.option-card input:checked + .option-card-box {
  border-color: rgba(252, 194, 12, 0.42);
  background: rgba(252, 194, 12, 0.08);
  box-shadow: 0 14px 32px rgba(252, 194, 12, 0.08);
  transform: translateY(-2px);
}

.option-card input:disabled + .option-card-box {
  opacity: 0.48;
}

.selection-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.inline-note,
.discount-note {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.calc-panel {
  position: sticky;
  top: 96px;
}

.summary-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(252, 194, 12, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(19, 18, 17, 0.96);
}

.summary-card h3 {
  margin: 0.65rem 0 0.8rem;
}

.summary-copy {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}

.summary-row,
.summary-total,
.summary-meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.summary-row {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
}

.summary-row.discount strong {
  color: #9ee29d;
}

.summary-total {
  padding: 1rem 0 1.1rem;
  margin-bottom: 1.1rem;
}

.summary-total span {
  font-size: 0.92rem;
  color: var(--muted);
}

.summary-total strong {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1;
  color: var(--gold);
}

.summary-meta {
  display: grid;
  gap: 0.75rem;
}

.summary-meta div {
  padding: 0.9rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.025);
  align-items: flex-start;
}

.summary-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.summary-meta strong {
  flex: 1;
  text-align: right;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero-img-panel {
    display: none;
  }

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

  .events-grid,
  .about-grid,
  .contact-grid,
  .subpage-hero-inner,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .subpage-visual {
    min-height: 380px;
  }

  .subpage-hero {
    padding: 8rem 0 4.5rem;
  }

  .subpage-title {
    max-width: 13ch;
    font-size: clamp(2.35rem, 6vw, 3.5rem);
  }

  .calc-panel {
    position: static;
  }

  .event-main {
    min-height: 380px;
    grid-row: span 1;
  }

  .about-img-wrap {
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-inner {
    height: 72px;
    gap: 0.75rem;
  }

  .nav-brand {
    min-width: 0;
    gap: 0.65rem;
  }

  .nav-logo {
    width: 46px;
    height: 46px;
  }

  .nav-brand-name {
    font-size: 0.95rem;
  }

  .nav-mobile {
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem 1.2rem 2.4rem;
    gap: 0.85rem;
    overflow-y: auto;
  }

  .nav-mobile a {
    width: 100%;
    max-width: 100%;
    font-size: 1.08rem;
    text-align: center;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.04);
  }

  .section {
    padding: 5rem 0;
  }

  .hero-inner {
    padding: 3rem 0 4rem;
  }

  .site-video-bg video {
    object-position: center center;
    opacity: 0.7;
  }

  .hero-topline {
    gap: 0.55rem;
  }

  .hero-title {
    max-width: 11ch;
  }

  .hero-chip {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 0.48rem 0.75rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1.5rem;
  }

  .hero-stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .hero-stat:not(:first-child):not(:last-child) {
    padding-left: 0;
  }

  .hero-stat-num {
    font-size: 2rem;
  }

  .hero-stat-label {
    max-width: 28ch;
  }

  .hero-stat,
  .hero-stats {
    text-align: left;
  }

  .ticker-item {
    padding: 0 1.15rem;
    font-size: 0.74rem;
  }

  .section-head {
    margin-bottom: 2.4rem;
  }

  .section-head p {
    font-size: 0.98rem;
  }

  .events-grid,
  .contact-grid,
  .contact-channels {
    gap: 1.25rem;
  }

  .why-grid,
  .testimonials-grid,
  .specs-grid,
  .form-row,
  .footer-grid,
  .choice-grid,
  .choice-grid.two-col {
    grid-template-columns: 1fr;
  }

  .package-top {
    flex-direction: column;
  }

  .package-price {
    text-align: left;
  }

  .subpage-hero {
    padding: 7rem 0 4rem;
  }

  .subpage-hero-inner {
    gap: 1.25rem;
  }

  .subpage-copy {
    gap: 1rem;
  }

  .subpage-title {
    max-width: 14ch;
    font-size: clamp(2rem, 7.6vw, 2.7rem);
    line-height: 1.02;
  }

  .subpage-lead {
    font-size: 1rem;
  }

  .subpage-actions,
  .hero-actions {
    gap: 0.85rem;
  }

  .subpage-actions .btn,
  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .subpage-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .subpage-visual-card {
    position: static;
    margin: 1rem;
    padding: 1rem;
  }

  .subpage-visual::after {
    display: none;
  }

  .subpage-visual img {
    aspect-ratio: 16 / 10;
  }

  .package-card,
  .summary-card,
  .calc-panel,
  .contact-form {
    padding: 1.4rem;
  }

  .calculator-form,
  .calc-panel {
    width: 100%;
    margin-inline: auto;
  }

  .package-meta {
    grid-template-columns: 1fr;
  }

  .selection-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .option-card-box {
    min-height: auto;
    padding: 1rem;
  }

  .step-card {
    padding: 1.35rem 1.3rem;
  }

  .step-head {
    margin-bottom: 1rem;
  }

  .choice-grid {
    gap: 0.75rem;
  }

  .event-showcase-copy {
    padding: 1.6rem;
  }

  .about-img-wrap {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }

  .about-img-wrap img {
    aspect-ratio: 16 / 10;
  }

  .about-badge {
    position: static;
    margin: 1rem;
    align-self: flex-start;
    max-width: calc(100% - 2rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .gallery-item.tall {
    grid-row: span 1;
    min-height: 220px;
  }

  .gallery-item:not(.tall) {
    min-height: 180px;
  }

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

  .event-showcase-img {
    min-height: 280px;
  }

  .footer-grid {
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .wrap {
    width: min(calc(100% - 1.8rem), var(--max));
  }

  .nav-inner {
    height: 68px;
  }

  .nav-logo {
    width: 42px;
    height: 42px;
  }

  .nav-brand-name {
    font-size: 0.88rem;
  }

  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .subpage-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .subpage-actions .btn,
  .mobile-cta {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 4rem 0;
  }

  .about-badge,
  .contact-form,
  .event-showcase-copy,
  .event-card,
  .spec-card,
  .testi-card,
  .why-item,
  .package-card,
  .summary-card,
  .step-card {
    padding: 1.25rem;
  }

  .nav-mobile a {
    font-size: 1rem;
    padding: 0.9rem 0.95rem;
  }

  .about-badge {
    margin: 0.9rem;
    padding: 0.8rem 0.95rem;
    max-width: calc(100% - 1.8rem);
  }

  .about-badge-num {
    font-size: 1.7rem;
  }

  .about-badge-text {
    font-size: 0.76rem;
  }

  .hero-title-dynamic {
    min-height: 2.8em;
  }

  .hero-title {
    max-width: 9ch;
  }

  .hero-lead,
  .subpage-lead,
  .section-head p {
    font-size: 0.95rem;
  }

  .hero-stat-num,
  .package-price {
    font-size: 1.7rem;
  }

  .subpage-title {
    max-width: 12ch;
    font-size: 1.8rem;
  }

  .subpage-visual {
    min-height: auto;
  }

  .subpage-visual-card h3 {
    font-size: 1.15rem;
  }

  .package-intro,
  .subpage-visual-card p,
  .channel-value,
  .service-info,
  .form-hint {
    font-size: 0.88rem;
  }

  .hero-stats,
  .contact-channels,
  .process-grid,
  .package-grid,
  .testimonials-grid {
    gap: 1rem;
  }

  .gallery-item.tall,
  .gallery-item:not(.tall) {
    min-height: 200px;
  }

  .site-video-bg video {
    opacity: 0.72;
  }
}
