:root {
  --bg: #070707;
  --surface: #111;
  --surface-2: #181818;
  --text: #f6f2ed;
  --muted: #aaa39d;
  --red: #e12b16;
  --red-dark: #8e1609;
  --line: rgba(255,255,255,.10);
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(225,43,22,.09), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px;
  color: #ff6d59;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section { padding: 92px 0; }
.section-title {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.section-copy { max-width: 700px; color: var(--muted); font-size: 1.08rem; margin: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0,0,0,.88), rgba(0,0,0,.30), transparent);
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.site-header.scrolled {
  background: rgba(7,7,7,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #ff442a, #8d1004);
  box-shadow: 0 0 28px rgba(225,43,22,.28);
  font-size: 1.15rem;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: #d6d0ca;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover { color: white; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 10px 17px;
  background: rgba(255,255,255,.06);
}
.menu-button {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: white;
  font-size: 1.25rem;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media, .hero-media::after {
  position: absolute; inset: 0;
}
.hero-media {
  z-index: -2;
  background: url("assets/red-corridor.png") center / cover no-repeat;
  transform: scale(1.02);
}
.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.48) 48%, rgba(0,0,0,.25) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 42%),
    radial-gradient(circle at 72% 48%, transparent 0 11%, rgba(0,0,0,.22) 42%, rgba(0,0,0,.52) 100%);
}
.hero-inner { padding: 154px 0 92px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(10px);
  color: #ded7d1;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff3d25;
  box-shadow: 0 0 0 0 rgba(255,61,37,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255,61,37,0); } }
.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.7rem, 10vw, 8.8rem);
  line-height: .82;
  letter-spacing: -.085em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 44px #000;
}
.hero h1 span { color: var(--red); }
.hero-copy {
  max-width: 630px;
  margin: 28px 0 0;
  color: #d6cfca;
  font-size: clamp(1.05rem, 2vw, 1.27rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s, background .18s, border-color .18s;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, #f03b24, #a71708);
  box-shadow: 0 13px 30px rgba(191,29,11,.30);
}
.button-secondary {
  background: rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 50px;
  color: #bcb4ad;
  font-size: .88rem;
}
.hero-stat strong { display: block; color: white; font-size: 1.08rem; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 62px;
  align-items: center;
}
.intro-card {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.intro-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.intro-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82), transparent 55%);
}
.intro-card-label {
  position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 24px;
}
.intro-card-label strong { display: block; font-size: 1.35rem; }
.intro-card-label span { color: #ccc3bc; }

.feature-list { display: grid; gap: 13px; margin-top: 30px; }
.feature {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}
.feature-icon {
  width: 45px; height: 45px; display: grid; place-items: center;
  border-radius: 13px; background: rgba(225,43,22,.13); color: #ff5a43;
  font-size: 1.15rem;
}
.feature h3 { margin: 1px 0 3px; font-size: 1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; }

.gallery-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 175px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 17px;
  cursor: zoom-in;
  background: #151515;
  box-shadow: inset 0 0 0 1px var(--line);
}
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(n+5) { grid-column: span 4; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s, filter .35s;
}
.gallery-item::after {
  content: attr(data-caption);
  position: absolute; inset: auto 0 0;
  padding: 44px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: white; text-align: left;
  font-weight: 800; font-size: .92rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.gallery-item:hover img { transform: scale(1.035); filter: brightness(.82); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none; place-items: center;
  background: rgba(0,0,0,.92);
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 84vh; border-radius: 13px; box-shadow: var(--shadow); }
.lightbox-close {
  position: fixed; top: 20px; right: 22px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); color: white;
  font-size: 1.6rem; cursor: pointer;
}
.lightbox-caption { margin: 14px 0 0; text-align: center; color: #d3ccc6; }

.warning {
  position: relative;
  overflow: hidden;
  padding: 66px;
  border: 1px solid rgba(225,43,22,.30);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(225,43,22,.20), rgba(255,255,255,.025) 52%),
    #111;
  box-shadow: var(--shadow);
}
.warning::after {
  content: "!";
  position: absolute;
  right: 4%; top: 50%;
  transform: translateY(-50%);
  font-size: 15rem; line-height: 1; font-weight: 950;
  color: rgba(255,255,255,.035);
}
.warning h2 { position: relative; z-index: 1; max-width: 760px; margin: 0; font-size: clamp(2rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.055em; }
.warning p { position: relative; z-index: 1; max-width: 650px; color: #c8c0ba; }
.warning .button { position: relative; z-index: 1; margin-top: 10px; }

.site-footer {
  margin-top: 50px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: #9f9892;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }

/* Privacy page */
.policy-page { background: #090909; }
.policy-hero { padding: 150px 0 54px; border-bottom: 1px solid var(--line); }
.policy-hero h1 { margin: 0; font-size: clamp(2.8rem, 8vw, 6rem); line-height: .95; letter-spacing: -.065em; }
.policy-shell { display: grid; grid-template-columns: 250px minmax(0, 780px); gap: 60px; padding: 60px 0 100px; }
.policy-toc { position: sticky; top: 105px; align-self: start; }
.policy-toc strong { display: block; margin-bottom: 12px; }
.policy-toc a {
  display: block; padding: 6px 0;
  color: var(--muted); text-decoration: none; font-size: .9rem;
}
.policy-toc a:hover { color: white; }
.policy-content { color: #d7d1cc; }
.policy-content h2 {
  scroll-margin-top: 110px;
  margin: 42px 0 12px;
  color: white;
  font-size: 1.55rem;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin: 0 0 16px; }
.policy-content ul { padding-left: 22px; }
.policy-content li { margin: 8px 0; }
.policy-content a { color: #ff6b56; }
.policy-date { color: #aaa39d; margin-top: 16px; }
.policy-note {
  margin-top: 42px; padding: 19px 20px; border-radius: 15px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--muted);
}

@media (max-width: 850px) {
  .menu-button { display: grid; place-items: center; }
  .nav-links {
    position: fixed; top: 68px; left: 18px; right: 18px;
    display: none; padding: 18px;
    border: 1px solid var(--line); border-radius: 16px;
    background: rgba(10,10,10,.97); box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; gap: 13px; }
  .nav-cta { text-align: center; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-card { min-height: 420px; order: -1; }
  .gallery-item:nth-child(n) { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 12; }
  .policy-shell { grid-template-columns: 1fr; gap: 26px; }
  .policy-toc { display: none; }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 26px), var(--max)); }
  .section { padding: 68px 0; }
  .hero-inner { padding-bottom: 64px; }
  .hero h1 { font-size: clamp(3.35rem, 19vw, 5.2rem); }
  .hero-copy { font-size: 1rem; }
  .hero-stats { gap: 17px 24px; }
  .gallery-head { align-items: start; flex-direction: column; }
  .gallery-grid { grid-auto-rows: 120px; gap: 9px; }
  .gallery-item:nth-child(n) { grid-column: span 12; grid-row: span 2; }
  .warning { padding: 35px 24px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
