:root {
  --bg: #08090b;
  --bg-soft: #111318;
  --panel: rgba(15, 17, 22, 0.72);
  --panel-solid: #14171d;
  --text: #f4f6f8;
  --muted: #b6bdc8;
  --line: rgba(255, 255, 255, 0.14);
  --yellow: #dfff00;
  --red: #e10612;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 20px; background: var(--yellow); color: #000; padding: 10px 14px; z-index: 100; }
.skip-link:focus { left: 20px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header .brand { display: inline-flex; align-items: center; }
.site-header .brand img { width: 286px; height: auto; filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)); }
.desktop-nav { display: flex; gap: 26px; color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.desktop-nav a { transition: color 160ms ease; }
.desktop-nav a:hover { color: var(--yellow); }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(223,255,0,.58); border-radius: 999px; color: var(--yellow); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.hero { min-height: 100vh; position: relative; display: grid; align-items: end; isolation: isolate; padding: 128px 0 58px; }
.hero-media { position: absolute; inset: 0; background-image: url('../img/hero-action.webp'); background-size: cover; background-position: center 47%; transform: scale(1.02); z-index: -3; }
.hero-overlay { position: absolute; inset: 0; background:
  radial-gradient(circle at 70% 30%, rgba(223,255,0,.14), transparent 32%),
  linear-gradient(90deg, rgba(8,9,11,.92) 0%, rgba(8,9,11,.66) 45%, rgba(8,9,11,.24) 100%),
  linear-gradient(0deg, rgba(8,9,11,1) 0%, rgba(8,9,11,.35) 42%, rgba(8,9,11,.38) 100%);
  z-index: -2;
}
.hero-content { position: relative; max-width: 900px; margin-left: max(20px, calc((100vw - 1180px)/2)); }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 36px; height: 2px; background: var(--yellow); box-shadow: 0 0 18px rgba(223,255,0,.72); }
.hero-logo { width: min(330px, 64vw); margin-bottom: 22px; }
h1, h2, h3 { font-family: Rajdhani, Inter, sans-serif; line-height: .95; margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(76px, 13vw, 188px); text-transform: uppercase; font-weight: 700; }
h2 { font-size: clamp(42px, 7vw, 84px); font-weight: 700; text-transform: uppercase; }
h3 { font-size: 30px; font-weight: 700; text-transform: uppercase; }
.hero-subtitle { margin: 12px 0 0; font-size: clamp(18px, 2.2vw, 28px); font-weight: 800; color: #fff; }
.hero-copy { max-width: 680px; margin: 18px 0 0; font-size: clamp(16px, 1.4vw, 20px); color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 21px; border-radius: 999px; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #070707; background: var(--yellow); box-shadow: 0 10px 35px rgba(223,255,0,.18); }
.btn-secondary { border: 1px solid rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.quick-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; width: min(820px, 100%); margin-top: 42px; }
.quick-facts div { border: 1px solid var(--line); background: rgba(255,255,255,.055); padding: 16px; border-radius: 18px; backdrop-filter: blur(14px); }
.quick-facts span { display: block; font-family: Rajdhani, Inter, sans-serif; font-size: 26px; font-weight: 700; line-height: 1; text-transform: uppercase; }
.quick-facts small { display: block; color: var(--muted); margin-top: 7px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.scroll-cue { position: absolute; right: 34px; bottom: 40px; writing-mode: vertical-rl; color: rgba(255,255,255,.72); font-size: 11px; text-transform: uppercase; letter-spacing: .22em; font-weight: 900; }
.scroll-cue::after { content: ""; display: inline-block; width: 1px; height: 42px; background: var(--yellow); margin-top: 12px; }

.section { padding: 104px 0; position: relative; }
.intro-section { background: linear-gradient(180deg, #08090b, #101217); }
.two-col { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr); gap: 54px; align-items: center; }
.content-block p:not(.section-kicker), .coming-copy p, .focus-card p { color: var(--muted); font-size: 18px; max-width: 680px; }
.content-block p + p { margin-top: 18px; }
.portrait-card { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--panel-solid); box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; }
.portrait-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.portrait-card figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 16px 18px; border-radius: 18px; background: rgba(8,9,11,.72); border: 1px solid var(--line); backdrop-filter: blur(14px); }
.portrait-card strong { display: block; font-family: Rajdhani, Inter, sans-serif; font-size: 32px; text-transform: uppercase; line-height: 1; }
.portrait-card span { color: var(--yellow); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }

.highlights-section { background: #08090b; }
.section-head { max-width: 780px; margin-bottom: 34px; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.highlight-card { min-height: 245px; padding: 26px; border-radius: 24px; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); position: relative; overflow: hidden; }
.highlight-card::after { content: ""; position: absolute; width: 132px; height: 132px; right: -58px; top: -48px; border-radius: 999px; background: radial-gradient(circle, rgba(223,255,0,.2), transparent 64%); }
.highlight-card span { color: var(--yellow); font-family: Rajdhani, Inter, sans-serif; font-size: 48px; font-weight: 700; opacity: .9; }
.highlight-card h3 { margin-top: 28px; }
.highlight-card p { color: var(--muted); margin-bottom: 0; }

.image-strip { padding: 0; background: var(--bg-soft); }
.mosaic { display: grid; grid-template-columns: 1.1fr .9fr 1fr .8fr; gap: 6px; min-height: 430px; }
.mosaic img { width: 100%; height: 430px; object-fit: cover; filter: saturate(1.05) contrast(1.02); }
.mosaic img:nth-child(2) { object-position: center; }

.focus-section { background: linear-gradient(180deg, #101217, #08090b); }
.focus-card { border: 1px solid rgba(223,255,0,.28); border-radius: var(--radius); padding: clamp(28px, 5vw, 58px); background:
  radial-gradient(circle at 90% 10%, rgba(223,255,0,.16), transparent 32%),
  linear-gradient(160deg, rgba(255,255,255,.085), rgba(255,255,255,.026));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 36px;
  align-items: end;
}
.focus-card p { margin: 0; }

.coming-section { background: #08090b; }
.coming-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: center; }
.gallery-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.gallery-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.contact-section { padding-top: 0; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 5vw, 58px); background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); display: grid; grid-template-columns: 1fr .78fr; gap: 34px; align-items: start; }
.contact-actions { display: grid; gap: 12px; }
.contact-actions p { margin: 0 0 8px; color: var(--muted); }
.contact-actions strong { color: #fff; font-size: 20px; }
.contact-actions a, .social-links a { color: #fff; border-bottom: 1px solid rgba(223,255,0,.5); width: fit-content; font-weight: 800; }
.social-links { grid-column: 1 / -1; display: flex; gap: 18px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: #07080a; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }
.footer-inner img { width: 116px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .nav-wrap { height: 70px; }
  .site-header .brand img { width: 218px; }
  .nav-cta { padding: 9px 13px; font-size: 11px; }
  .hero { min-height: 92vh; padding: 108px 0 42px; align-items: end; }
  .hero-media { background-position: center; }
  .hero-overlay { background:
    radial-gradient(circle at 70% 20%, rgba(223,255,0,.12), transparent 34%),
    linear-gradient(0deg, rgba(8,9,11,1) 0%, rgba(8,9,11,.74) 45%, rgba(8,9,11,.48) 100%); }
  h1 { font-size: clamp(62px, 18vw, 120px); }
  .quick-facts { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 28px; }
  .scroll-cue { display: none; }
  .section { padding: 76px 0; }
  .two-col, .focus-card, .coming-grid, .contact-card { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic img { height: 310px; }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 28px, 1180px); }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .quick-facts { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic img { height: 300px; }
  h2 { font-size: 40px; }
  .content-block p:not(.section-kicker), .coming-copy p, .focus-card p { font-size: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
