:root {
  --bg: #0a0908;
  --bg-soft: #171412;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(20, 18, 16, 0.86);
  --gold: #d5b36c;
  --gold-soft: #f2d8a4;
  --ivory: #f5efe8;
  --stone: #d9c9ba;
  --muted: #cbb9aa;
  --slate: #73675f;
  --brand-blue: #1d3342;
  --brand-silver: #dde7ee;
  --brand-steel: #7d8ea0;
  --shadow: rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(213,179,108,0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(63,99,129,0.16), transparent 29%),
    var(--bg);
  color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0));
  mix-blend-mode: screen;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.hidden { display: none !important; }
#site { position: relative; z-index: 10; }

#steam-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  opacity: 0.9;
  filter: blur(0.4px) saturate(1.1);
}

#intro {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(9,8,7,0.96), rgba(13,12,11,1));
  z-index: 9999;
}

.intro-inner {
  text-align: center;
  animation: intro-pop 2s cubic-bezier(0.18, 0.8, 0.24, 1) forwards;
  animation-fill-mode: both;
}

.intro-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(78vw, 860px);
  padding: 18px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.intro-copy-block {
  text-align: center;
}

.intro-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  text-shadow: 0 18px 45px rgba(0,0,0,0.38);
}

.intro-brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.intro-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.8;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(17,15,14,0.2));
  border: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 26px rgba(0,0,0,0.16);
}

.brand-mark svg,
.intro-brand .brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.brand-mark svg text {
  font-family: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.12em;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.26));
}

.brand-mark-large {
  width: 150px;
  height: 150px;
  border-radius: 22px;
  border-width: 0;
  flex-shrink: 0;
}

.intro-brand-word {
  display: block;
  font-family: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 3.8vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  line-height: 0.76;
  font-weight: 500;
  font-style: normal;
  text-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.intro-brand-word-second {
  letter-spacing: 0.1em;
}

.intro-brand-sub {
  margin-top: 8px;
  color: rgba(217, 201, 186, 0.9);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 500;
}

.logo-sub {
  margin-top: 12px;
  color: var(--stone);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.shimmer {
  position: relative;
  margin-top: 18px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  filter: blur(8px);
  opacity: 0;
  animation: shimmer 2.4s 0.1s forwards;
}

#intro {
  transition: opacity 0.8s ease, filter 0.8s ease;
}

#intro.fade-out {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.2s ease, filter 1.2s ease;
}

@keyframes intro-pop {
  0% { transform: scale(0.92) translateY(20px); opacity: 0; }
  55% { transform: scale(1.02) translateY(0); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes shimmer {
  0% { opacity: 0; transform: translateX(-30%); }
  35% { opacity: 1; transform: translateX(8%); }
  100% { opacity: 0; transform: translateX(72%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  width: 100%;
  margin: 0;
  padding: 18px clamp(18px, 3vw, 42px);
  background: linear-gradient(180deg, rgba(12,12,12,0.88), rgba(12,12,12,0.58));
  backdrop-filter: blur(18px) saturate(1.2);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 0.8;
  position: relative;
  letter-spacing: 0.08em;
}

.brand-wordmark::before {
  display: none;
}

.brand-name {
  font-family: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 1.7vw, 1.8rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0,0,0,0.18);
  font-variant-ligatures: discretionary-ligatures;
}

.brand-name-second {
  letter-spacing: 0.1em;
  color: rgba(245,239,232,0.9);
}

.brand-sub {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217, 201, 186, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(245,239,232,0.75);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav a:hover {
  transform: translateY(-1px);
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.nav a.cta {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(213,179,108,0.15), rgba(245,217,149,0.17));
  border: 1px solid rgba(213,179,108,0.32);
  color: rgba(255,255,255,0.96);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  border-color: rgba(213,179,108,0.5);
}

.hero {
  position: relative;
  display: flex;
  min-height: 82vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 42%),
    rgba(7,7,6,0.32);
}

.hero-slides, .hero-slides .slide {
  position: absolute;
  inset: 0;
}

.hero-slides .slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 12s ease;
  will-change: opacity, transform;
}

.hero-slides .slide.active {
  opacity: 1;
  transform: scale(1.13);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,5,0.34), rgba(8,7,6,0.68));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-glow-one {
  width: 360px;
  height: 360px;
  left: 12%;
  top: 10%;
  background: rgba(212,176,106,0.3);
}
.hero-glow-two {
  width: 420px;
  height: 420px;
  right: 10%;
  bottom: 10%;
  background: rgba(61, 111, 157, 0.26);
}

.hero-content {
  position: relative;
  z-index: 8;
  width: min(1100px, calc(100% - 48px));
  text-align: center;
  padding-top: 72px;
  padding-bottom: 92px;
}

.hero-content .lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  display: none;
}

.eyebrow, .section-tag {
  display: inline-block;
  border: 1px solid rgba(159, 182, 196, 0.28);
  background: rgba(255,255,255,0.02);
  color: rgba(245,239,232,0.9);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.64rem;
  padding: 10px 18px;
  border-radius: 14px;
  backdrop-filter: blur(5px);
}

.cinema {
  margin: 22px auto 18px;
  font-family: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(4.1rem, 7.2vw, 8.6rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
  color: rgba(255,255,255,0.98);
  max-width: 1000px;
  text-shadow: 0 18px 64px rgba(0,0,0,0.52);
  font-variant-ligatures: discretionary-ligatures;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(242,233,223,0.8);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f5d995);
  border-color: rgba(255,255,255,0.15);
  color: #1b1208;
  box-shadow: 0 14px 30px rgba(213,179,108,0.25);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--ivory);
  border-color: rgba(255,255,255,0.12);
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(9, 9, 8, 0.38);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,176,106,0.14);
  color: var(--stone);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-cards {
  display: none;
}

.stats-bar {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}

.intro-copy .container,
.experience-layout {
  display: flex;
  gap: 32px;
  align-items: center;
}

.text, .experience-copy {
  flex: 1;
}

h2 {
  margin: 12px 0 18px;
  font-family: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1, h2, h3, .brand-name, .intro-brand-word {
  font-feature-settings: "liga" 1, "kern" 1;
}

p {
  color: rgba(242,233,223,0.78);
  line-height: 1.9;
  font-size: 1.02rem;
}

.image {
  flex: 1;
  min-height: 420px;
  border-radius: 28px;
  background-color: rgba(33, 30, 27, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  overflow: hidden;
}

.quick-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}
.quick-features div {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--muted);
}

.cta-sales {
  border-radius: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(212,176,106,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(212,176,106,0.15);
  color: var(--ivory);
  font-weight: 500;
}

.features {
  position: relative;
  padding: 24px 0 0;
}

.section-heading {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 24px;
}

.grid-3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0;
  padding: 24px 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 14px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}

h3 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.features article ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(242,233,223,0.78);
  line-height: 2;
}

.experience {
  padding-top: 0;
}

.experience-card {
  min-height: 500px;
  position: relative;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.feature-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  color: var(--ivory);
}
.feature-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,176,106,0.18), rgba(255,255,255,0.03));
  color: var(--gold-soft);
  font-weight: 700;
}

.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.card {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.05);
}
.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.card:hover img { transform: scale(1.08); }
.card span {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
}

.center {
  text-align: center;
  margin-top: 18px;
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px 40px;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 26px;
  max-width: 760px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212,176,106,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,176,106,0.12);
}

.review-score {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
}

.review-score-copy {
  color: rgba(242,233,223,0.76);
  line-height: 1.7;
  font-size: 0.96rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-grid p {
  margin-top: 0;
  line-height: 1.8;
}

.stars {
  margin-bottom: 10px;
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

.person {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.person span {
  color: var(--stone);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact {
  padding: 24px 0 18px;
}
.contact .container {
  align-items: flex-start;
}
.contact .grid-2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 26px;
  padding: 0 24px;
}

.contact-card {
  padding: 26px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
  color: var(--ivory);
  padding: 13px 14px;
}
.form textarea { resize: vertical; min-height: 120px; }

.mini-contact {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.mini-contact div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.mini-contact span {
  color: var(--stone);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.widget-chat { margin-top: 18px; }
.chat {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.04);
}
.msgs {
  max-height: 190px;
  overflow: auto;
  display: grid;
  gap: 10px;
}
.msg {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: rgba(242,233,223,0.8);
}
.msg.other {
  border: 1px solid rgba(212,176,106,0.14);
}
.chat .actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: stretch;
}
.chat .actions input {
  width: 100%;
  min-width: 0;
}
.chat .btn {
  padding: 12px 14px;
}

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

.whatsapp-btn {
  background: linear-gradient(135deg, #17a958, #1dd46b);
  color: #f4fff9;
  border-color: rgba(255,255,255,0.2);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #17a958, #1dd46b);
  color: #f5fff9;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(17, 169, 88, 0.35);
  border: 1px solid rgba(255,255,255,0.18);
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: min(320px, calc(100% - 24px));
  background: rgba(17,15,14,0.9);
  border: 1px solid rgba(212,176,106,0.18);
  border-radius: 20px;
  box-shadow: 0 26px 66px rgba(0,0,0,0.36);
  backdrop-filter: blur(12px);
  z-index: 49;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.floating-chat.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--gold-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.floating-chat-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: var(--ivory);
  cursor: pointer;
}
.floating-chat-body {
  padding: 12px 14px 0;
  display: grid;
  gap: 10px;
}
.floating-chat-inputs {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
}
.floating-chat-inputs input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ivory);
}
.floating-chat-inputs button {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #f5d995);
  color: #1b1208;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 30px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--stone);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(12,12,12,0.8), rgba(12,12,12,0.4));
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-wordmark::before {
    display: none;
  }

  .brand-name {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
    line-height: 1.05;
  }

  .brand-sub {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    gap: 4px;
    padding: 6px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar { display: none; }

  .nav a {
    font-size: 0.46rem;
    letter-spacing: 0.1em;
    padding: 8px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,7,6,0.72);
  backdrop-filter: blur(12px);
  z-index: 1200;
}
.modal.hidden { display: none; }
.modal-panel {
  position: relative;
  width: min(980px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17,16,15,0.94), rgba(14,13,12,0.92));
  border: 1px solid rgba(212,176,106,0.18);
  box-shadow: 0 38px 120px rgba(0,0,0,0.6);
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  color: var(--ivory);
  cursor: pointer;
}
.modal-left, .modal-right {
  padding: 26px 10px 12px;
}
.modal-features {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 2;
  color: rgba(242,233,223,0.8);
}
.modal-price {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,176,106,0.12), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,176,106,0.2);
  color: var(--gold-soft);
  font-weight: 700;
}

button:focus,
input:focus,
select:focus,
a:focus {
  outline: 3px solid rgba(212,176,106,0.12);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-meta { gap: 8px; }
  .stats-bar { grid-template-columns: repeat(2, minmax(160px,1fr)); }
  .cards, .testimonial-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .contact .grid-2, .modal-panel { grid-template-columns: 1fr; }
  .intro-copy .container,
  .experience-layout { flex-direction: column; }
  .card-one { left: 4%; bottom: 10%; }
  .card-two { right: 4%; top: 16%; }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px 14px;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
  .nav a {
    flex: 1 1 42%;
    text-align: center;
    padding: 12px 8px;
    font-size: 0.68rem;
  }
  .brand-wordmark {
    text-align: center;
    letter-spacing: 0.1em;
  }
  .brand-name {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
    letter-spacing: 0.14em;
  }
  .brand-name-second {
    letter-spacing: 0.18em;
  }
  .hero-content {
    padding-top: 42px;
    width: min(100% - 18px, 760px);
  }
  .eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.62rem;
  }
  .cinema {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
    line-height: 0.94;
  }
  .lead {
    font-size: 1rem;
    line-height: 1.7;
  }
  .actions {
    gap: 12px;
  }
  .btn {
    width: 100%;
    padding: 15px 18px;
  }
  .hero-meta {
    gap: 8px;
  }
  .hero-meta span {
    width: 100%;
    justify-content: center;
    letter-spacing: 0.08em;
  }
  .hero-cards { display: none; }
  .stats-bar { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .hero { min-height: 72vh; }
  .review-summary {
    flex-direction: column;
    text-align: center;
    padding: 16px 18px;
  }
  .contact-card, .modal-left, .modal-right { padding-left: 10px; padding-right: 10px; }
  .intro-card {
    min-width: 0;
    width: min(90vw, 680px);
    padding: 20px 18px;
  }
  .intro-brand {
    letter-spacing: 0.1em;
    font-size: clamp(1.9rem, 8vw, 3.3rem);
  }
  .intro-brand-second {
    letter-spacing: 0.18em;
  }
  .logo-sub {
    letter-spacing: 0.15em;
    font-size: 0.62rem;
  }
}
