/* =============================================
   WINDROSE — OFFICIAL LANDING PAGE STYLES
   ============================================= */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a238;
  --gold-light: #f0c96a;
  --gold-dark: #8a6b1a;
  --navy: #06090f;
  --navy-mid: #0b1220;
  --navy-light: #121d30;
  --navy-card: #0e1828;
  --sea: #0d2a45;
  --fog: rgba(140, 170, 200, 0.07);
  --text: #e8dcc8;
  --text-muted: #8fa0b5;
  --red: #8b1a1a;
  --font-title: 'Cinzel', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --glow-gold: 0 0 40px rgba(201, 162, 56, .35);
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utility ─────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-title);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: .88rem;
  letter-spacing: .08em;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateY(100%);
  transition: var(--transition);
}
.btn:hover::before { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a1000;
  border-color: var(--gold-light);
  box-shadow: 0 4px 24px rgba(201,162,56,.4);
}
.btn-primary:hover { box-shadow: 0 6px 36px rgba(201,162,56,.65); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn-secondary:hover { background: rgba(201,162,56,.12); transform: translateY(-2px); }

.btn-steam {
  background: linear-gradient(135deg, #1b2838, #2a475e);
  color: #c7d5e0;
  border-color: #66c0f4;
}
.btn-steam:hover { box-shadow: 0 0 24px rgba(102,192,244,.4); transform: translateY(-2px); }

.btn-large { padding: 18px 44px; font-size: 1rem; }

.btn-nav {
  font-family: var(--font-title);
  font-size: .78rem;
  letter-spacing: .1em;
  font-weight: 600;
  padding: 9px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold); color: #1a1000; }

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(6, 9, 15, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.7), 0 1px 0 rgba(201,162,56,.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(201,162,56,.6));
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .15em;
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(201,162,56,.5);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-title);
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: column;
  padding: 14px 20px 16px;
  gap: 14px;
  background: rgba(6,9,15,.98);
  border-top: 1px solid rgba(201,162,56,.2);
  box-shadow: 0 10px 30px rgba(0,0,0,.7);
  max-height: calc(100vh - 66px);
  overflow-y: auto;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(-10px);
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile a {
  font-family: var(--font-title);
  font-size: .95rem;
  letter-spacing: .08em;
  color: var(--text);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
}
.nav-mobile a:hover {
  color: var(--gold);
  background: rgba(201,162,56,.08);
  padding-left: 16px;
}

body.menu-open {
  overflow: hidden;
}


/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,9,15,.25) 0%,
    rgba(6,9,15,.5) 50%,
    rgba(6,9,15,.92) 100%
  );
}

.hero-fog {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(13,42,69,.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  animation: heroFadeIn 1.2s ease forwards;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,56,.4);
  border-radius: 2px;
  padding: 6px 18px;
  margin-bottom: 28px;
  background: rgba(201,162,56,.07);
}

.hero-logo {
  height: clamp(80px, 18vw, 160px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 40px rgba(201,162,56,.5));
}

.hero-tagline {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.hero-sub {
  font-size: .95rem;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .6;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollHint 2.5s ease infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: .4; transform: translateY(0); }
  50%       { opacity: .8; transform: translateY(6px); }
}

.scroll-arrow {
  width: 16px; height: 16px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  z-index: 3;
}

/* ── ABOUT ───────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,56,.3), transparent);
}

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

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-text p strong { color: var(--gold-light); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--gold);
  background: rgba(201,162,56,.1);
  border: 1px solid rgba(201,162,56,.3);
  border-radius: 3px;
  padding: 5px 14px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform .6s ease;
  border: 1px solid rgba(201,162,56,.15);
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }

.img-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(201,162,56,.2), inset 0 0 0 1px rgba(201,162,56,.2);
  pointer-events: none;
}

/* ── FEATURES ────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,56,.3), transparent);
  z-index: 2;
}

/* Video background */
.features-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.features-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.features-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 9, 15, .82) 0%,
    rgba(11, 18, 32, .88) 50%,
    rgba(6, 9, 15, .92) 100%
  );
}

/* Ensure content sits above video */
.features .container,
.features-bg-ornament {
  position: relative;
  z-index: 2;
}

.features-bg-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,162,56,.04) 0%, transparent 70%);
  pointer-events: none;
}


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

.feature-card {
  background: rgba(14, 24, 40, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,56,.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(201,162,56,.3); box-shadow: 0 12px 40px rgba(0,0,0,.5), var(--glow-gold); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: .05em;
}

.feature-card p {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ── GALLERY ─────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,56,.3), transparent);
}

.carousel-wrap {
  position: relative;
  margin-top: 16px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 600px;
  overflow: hidden;
  background: #000;
}

.carousel-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .6s ease;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .4s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide:hover img { transform: scale(1.02); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,9,15,.7);
  border: 1px solid rgba(201,162,56,.3);
  color: var(--gold-light);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(8px);
  line-height: 1;
}
.carousel-btn:hover { background: rgba(201,162,56,.2); border-color: var(--gold); box-shadow: var(--glow-gold); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,162,56,.25);
  border: 1px solid rgba(201,162,56,.3);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

.carousel-counter {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--text-muted);
}

/* ── STORY BANNER ────────────────────────── */
.story-banner {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
}

.story-bg { position: absolute; inset: 0; }
.story-bg-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6); }
.story-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(6,9,15,.95) 0%,
    rgba(6,9,15,.75) 50%,
    rgba(6,9,15,.95) 100%
  );
}

.story-content { position: relative; z-index: 2; }

.story-quote {
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--gold-light);
  text-align: center;
  position: relative;
}
.story-quote::before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: -40px; left: -20px;
  color: rgba(201,162,56,.15);
  font-style: normal;
  line-height: 1;
  pointer-events: none;
}

/* ── FAQ ─────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,56,.3), transparent);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(201,162,56,.15);
}
.faq-item:first-child { border-top: 1px solid rgba(201,162,56,.15); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-light); }
.faq-question[aria-expanded="true"] { color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(201,162,56,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(201,162,56,.15);
  border-color: var(--gold);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s ease;
  padding: 0 4px;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 4px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.8;
}
.faq-answer p strong { color: var(--text); }

/* ── CTA ─────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--navy-mid);
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,56,.3), transparent);
}

.cta-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: var(--navy-card);
  border: 1px solid rgba(201,162,56,.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

.cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(201,162,56,.15), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  font-family: var(--font-title);
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: #04060b;
  border-top: 1px solid rgba(201,162,56,.18);
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Brand column */
.footer-col--brand .footer-logo-text {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(201,162,56,.3);
}

.footer-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tag {
  font-family: var(--font-title);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--gold-dark);
  border: 1px solid rgba(201,162,56,.2);
  border-radius: 2px;
  padding: 3px 10px;
  background: rgba(201,162,56,.05);
}

/* Nav columns */
.footer-col-title {
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-col-links a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-store-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.footer-store-link svg { flex-shrink: 0; opacity: .7; }
.footer-store-link:hover svg { opacity: 1; }

/* Status column */
.footer-status {
  margin-bottom: 20px;
}

.footer-status-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1a1000;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.footer-status-text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-genre-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .83rem;
  color: var(--text-muted);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-family: var(--font-title);
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.footer-legal {
  font-size: .72rem;
  color: rgba(143,160,181,.4);
  text-align: right;
  max-width: 520px;
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
}

/* ── LIGHTBOX ────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 11, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 80px rgba(0,0,0,.8), 0 0 0 1px rgba(201,162,56,.2);
  transform: scale(.92);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  opacity: 0;
  display: block;
}
.lightbox.open .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,56,.3);
  background: rgba(6,9,15,.8);
  color: var(--gold-light);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(6px);
}
.lightbox-close:hover { background: rgba(201,162,56,.2); border-color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,56,.3);
  background: rgba(6,9,15,.75);
  color: var(--gold-light);
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(6px);
  line-height: 1;
}
.lightbox-nav:hover { background: rgba(201,162,56,.2); border-color: var(--gold); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--text-muted);
  background: rgba(6,9,15,.7);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(201,162,56,.15);
  backdrop-filter: blur(8px);
}



/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { order: -1; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 12px 16px; gap: 16px; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-burger { display: block; }
  .nav-mobile { position: absolute; top: 64px; left: 0; right: 0; width: 100%; z-index: 999; }

  .hero-content { padding: 90px 16px 60px; }
  .hero-badge { font-size: .65rem; letter-spacing: .14em; padding: 4px 14px; margin-bottom: 22px; }
  .hero-sub { font-size: .87rem; margin-bottom: 32px; }
  .hero-cta-group { gap: 10px; }

  .section-title { margin-bottom: 32px; }
  .about { padding: 80px 0; }
  .features, .gallery, .story-banner, .faq, .cta-section { padding: 70px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-img-wrap { order: -1; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 18px; }

  .carousel-btn { width: 38px; height: 38px; font-size: 1.3rem; }
  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }

  .cta-box { padding: 40px 24px; }
  .footer-top { padding: 48px 0 32px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-legal { text-align: center; }
  .cta-meta { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 70px 12px 50px; }
  .hero-logo { height: clamp(60px, 22vw, 130px); }
  .nav-inner { padding: 10px 12px; }
  .nav-burger { font-size: 1.3rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-sub { font-size: .82rem; letter-spacing: .08em; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .about-text p, .feature-card p, .cta-desc, .story-quote, .footer-desc { font-size: .95rem; }
  .about-grid, .footer-grid { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ── Scroll-based reveal ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
