:root {
  --orange: #ff9a00;
  --orange-2: #ffb000;
  --black: #090909;
  --panel: #141414;
  --panel-2: #1c1c1c;
  --line: rgba(255,255,255,.1);
  --text: #f7f7f7;
  --muted: #aaa;
  --shell: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,9,9,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; font-weight: 900; letter-spacing: -1.2px; font-size: 28px; }
.brand-main { padding: 2px 6px 2px 0; }
.brand-tag { padding: 1px 8px 3px; color: #090909; background: var(--orange); border-radius: 6px; }
.brand-small { font-size: 21px; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #c7c7c7; font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 10px 15px; border-radius: 8px; background: var(--orange); color: #090909 !important; }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: transparent; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; }

.hero { position: relative; overflow: hidden; min-height: 740px; display: grid; align-items: center; background: radial-gradient(circle at 72% 30%, rgba(255,154,0,.16), transparent 34%), linear-gradient(115deg, #090909 0%, #101010 52%, #090909 100%); }
.hero::before { content: "XREAM"; position: absolute; left: -28px; bottom: -96px; font-size: clamp(160px, 25vw, 390px); line-height: 1; font-weight: 1000; letter-spacing: -.08em; color: rgba(255,255,255,.025); pointer-events: none; }
.hero-glow { position: absolute; width: 500px; height: 500px; right: -220px; top: 80px; border-radius: 50%; background: rgba(255,154,0,.14); filter: blur(70px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 72px; align-items: center; padding-block: 80px; }
.eyebrow, .kicker { margin: 0 0 18px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.eyebrow span { display: inline-block; width: 26px; height: 2px; margin: 0 10px 3px 0; background: var(--orange); }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(54px, 8vw, 104px); line-height: .96; letter-spacing: -.065em; }
.hero h1 span { color: var(--orange); }
.hero-text { max-width: 620px; margin: 28px 0 0; color: #bcbcbc; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9px; font-size: 14px; font-weight: 900; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #090909; }
.button-primary:hover { background: var(--orange-2); }
.button-ghost { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.45); }
.mini-stats { display: flex; gap: 34px; margin-top: 42px; }
.mini-stats div { display: flex; flex-direction: column; }
.mini-stats strong { font-size: 17px; color: #fff; }
.mini-stats span { color: #777; font-size: 12px; font-weight: 700; }
.hero-media { position: relative; margin: 0; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 35px 80px rgba(0,0,0,.55); transform: rotate(1.4deg); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(0,0,0,.78)); pointer-events: none; }
.hero-media img { aspect-ratio: 4 / 5; object-fit: cover; }
.hero-media figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,154,0,.12); }

.section { padding: 110px 0; }
.section-dark { background: #0d0d0d; border-block: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.section-heading h2 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.05; letter-spacing: -.045em; }
.about-copy { color: #a7a7a7; font-size: 17px; }
.about-copy p { margin-top: 0; }
.about-copy .lead { color: #fff; font-size: 26px; line-height: 1.35; font-weight: 800; }
.gallery-section { background: #111; }
.row-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 38px; }
.row-heading > p { max-width: 430px; margin: 0; color: #8d8d8d; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 275px); gap: 16px; }
.photo-card { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius); background: #222; cursor: zoom-in; }
.photo-card-large { grid-row: 1 / 3; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.photo-card:hover img { transform: scale(1.035); filter: brightness(.72); }
.photo-overlay { position: absolute; inset: auto 0 0; padding: 70px 24px 22px; display: flex; flex-direction: column; align-items: flex-start; background: linear-gradient(transparent, rgba(0,0,0,.85)); text-align: left; }
.photo-overlay strong { font-size: 18px; letter-spacing: -.02em; }
.photo-overlay small { color: #bdbdbd; }
.facts-section { background: #0a0a0a; }
.centered { text-align: center; margin-bottom: 46px; }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.fact-card { min-height: 245px; padding: 26px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(145deg, #171717, #101010); }
.fact-card span { color: var(--orange); font-size: 12px; font-weight: 900; }
.fact-card h3 { margin: 48px 0 10px; font-size: 23px; }
.fact-card p { margin: 0; color: #919191; font-size: 14px; }
.quote-section { padding: 120px 0; background: var(--orange); color: #090909; }
.quote-inner { text-align: center; }
.quote-mark { margin: 0; font: 900 110px/0.5 Georgia, serif; }
.quote-inner blockquote { max-width: 920px; margin: 28px auto; font-size: clamp(34px, 5vw, 68px); line-height: 1.12; letter-spacing: -.045em; font-weight: 950; }
.quote-author { margin: 0; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: #080808; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; color: #777; font-size: 12px; }
.footer-inner p { margin: 0; }
.footer-inner p:nth-child(2) { text-align: center; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 40px; background: rgba(0,0,0,.92); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(100%, 1100px); max-height: 86vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,.7); }
.lightbox-close { position: absolute; top: 18px; right: 24px; border: 0; background: transparent; color: #fff; font-size: 42px; cursor: pointer; }

@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .mini-stats { justify-content: center; }
  .hero-media { width: min(100%, 560px); margin-inline: auto; transform: none; }
  .about-grid { gap: 35px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .menu-button { display: block; }
  .nav-links { position: absolute; top: 74px; left: 14px; right: 14px; padding: 14px; display: none; align-items: stretch; flex-direction: column; gap: 4px; background: #111; border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 25px 60px rgba(0,0,0,.5); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .hero-grid { padding-block: 62px; }
  .hero h1 { font-size: clamp(50px, 17vw, 78px); }
  .hero-text { font-size: 16px; }
  .mini-stats { gap: 22px; }
  .section { padding: 78px 0; }
  .row-heading { display: block; }
  .row-heading > p { margin-top: 18px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 430px 230px 230px; }
  .photo-card-large { grid-row: auto; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-card { min-height: 210px; }
  .lightbox { padding: 20px; }
}
