:root{
  --gold:#F2A845;
  --bg0:#06060a;
  --bg1:#0b0706;
  --ink:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.58);
  --stroke:rgba(255,255,255,.12);
  --shadow:0 28px 80px rgba(0,0,0,.65);
  --shadow2:0 14px 36px rgba(0,0,0,.42);
  --r14:14px; --r18:18px; --r22:22px; --r28:28px; --r34:34px;
  --max:1180px;

  --h1: clamp(30px, 3.8vw, 48px);
  --h2: clamp(18px, 2.2vw, 24px);
  --p: clamp(14px, 1.2vw, 15.5px);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 700px at 12% 12%, rgba(242,168,69,.22), transparent 56%),
    radial-gradient(900px 560px at 88% 8%, rgba(95,200,255,.12), transparent 60%),
    radial-gradient(900px 600px at 50% 95%, rgba(255,120,60,.10), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
a{ color:inherit; }

/* Ambient layers */
.aura{
  position:fixed; inset:-30%;
  pointer-events:none;
  filter: blur(52px);
  opacity:.55;
  background: conic-gradient(from 180deg,
    rgba(242,168,69,.22),
    rgba(95,200,255,.16),
    rgba(255,120,60,.14),
    rgba(242,168,69,.22)
  );
  animation: spin 18s linear infinite;
  z-index:-3;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.grid{
  position:fixed; inset:0;
  pointer-events:none;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 18%, black 0 55%, transparent 72%);
  opacity:.16;
  z-index:-2;
}

.wrap{ max-width:var(--max); margin:0 auto; padding:18px 16px 96px; }

/* Top nav */
.top{
  position:sticky; top:12px; z-index:50;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:12px 14px;
  border-radius: var(--r28);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid var(--stroke);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand{ display:flex; align-items:center; gap:12px; min-width:0; }
.mark{
  width:52px; height:52px;
  border-radius:18px;
  border:1px solid rgba(242,168,69,.30);
  background: rgba(0,0,0,.25);
  overflow:hidden;
  box-shadow: 0 0 0 3px rgba(242,168,69,.10);
  flex:0 0 auto;
}
.mark img{ width:100%; height:100%; object-fit:cover; display:block; }
.t1{
  margin:0; font-weight:950; letter-spacing:.3px;
  font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.t2{
  margin:2px 0 0; color:var(--muted);
  font-weight:700; font-size:12px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

.navActions{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:850; font-size:12px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(242,168,69,.26); }

.cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  background: linear-gradient(180deg, var(--gold), #d38c2f);
  border:1px solid rgba(255,255,255,.18);
  color:#140b05;
  text-decoration:none;
  font-weight:950; font-size:12px;
  box-shadow: 0 18px 44px rgba(242,168,69,.26);
  transition: transform .18s ease, box-shadow .18s ease;
  white-space:nowrap;
}
.cta:hover{ transform: translateY(-2px); box-shadow: 0 22px 60px rgba(242,168,69,.34); }
.spark{
  width:22px; height:22px; border-radius:10px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(0,0,0,.18);
}

/* Hero */
.hero{
  margin-top:16px;
  border-radius: var(--r34);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 320px at 18% 18%, rgba(242,168,69,.30), transparent 60%),
    radial-gradient(650px 320px at 86% 18%, rgba(95,200,255,.18), transparent 62%),
    radial-gradient(700px 380px at 55% 105%, rgba(255,120,60,.14), transparent 62%);
  opacity:.65;
  pointer-events:none;
}
.heroInner{
  position:relative;
  padding:26px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:stretch;
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(242,168,69,.22);
  font-weight:900; font-size:12px;
  color: rgba(255,255,255,.92);
  width: fit-content;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242,168,69,.14);
}

.headline{
  margin:14px 0 0;
  font-size: var(--h1);
  line-height: 1.03;
  letter-spacing: .2px;
  font-weight: 980;
}
.sub{
  margin:12px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 650;
  font-size: var(--p);
  max-width: 75ch;
}

.heroBtns{
  margin-top:18px;
  display:flex; flex-wrap:wrap;
  gap:12px;
  align-items:stretch;
}
.btnPrimary, .btnGhost{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 18px;
  border-radius: 18px;
  text-decoration:none;
  font-weight:980;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  min-width: 210px;
  text-align:center;
  flex: 1 1 220px;
}
.btnPrimary{
  background: linear-gradient(180deg, var(--gold), #d38c2f);
  border:1px solid rgba(255,255,255,.18);
  color:#140b05;
  box-shadow: 0 20px 52px rgba(242,168,69,.26);
}
.btnPrimary:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(242,168,69,.34); }

.btnGhost{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}
.btnGhost:hover{ transform: translateY(-2px); background: rgba(255,255,255,.10); border-color: rgba(242,168,69,.24); }

.trustRow{
  margin-top:16px;
  display:flex; flex-wrap:wrap;
  gap:10px;
}
.trust{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-weight:900;
  font-size:12px;
  flex: 1 1 220px;
}
.trust svg{ width:16px; height:16px; fill: var(--gold); }

/* Side conversion card */
.sideCard{
  border-radius: var(--r28);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding:16px;
  display:flex; flex-direction:column; gap:12px;
  min-width: 0;
}
.sideCard h2{
  margin:0;
  font-size:14px;
  font-weight:980;
  letter-spacing:.2px;
  color: rgba(255,255,255,.92);
}
.sideCard p{
  margin:0;
  color: var(--muted);
  font-weight:650;
  line-height:1.6;
  font-size:13px;
}
.note{
  margin-top:8px;
  color: var(--muted2);
  font-weight:750;
}
.miniList{
  margin:8px 0 0;
  display:grid; gap:10px;
}
.miniList a{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  text-decoration:none;
  color: rgba(255,255,255,.94);
  font-weight:950;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.miniList a:hover{ transform: translateY(-2px); border-color: rgba(242,168,69,.26); background: rgba(255,255,255,.10); }
.arrow{ color: rgba(242,168,69,.98); font-weight: 980; }

/* Hero image strip */
.heroShots{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top: 6px;
}
.shot{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  position:relative;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  aspect-ratio: 4/5;
}
.shot::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  pointer-events:none;
  opacity:.9;
}
.shot img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
}
.shotTag{
  position:absolute;
  left:10px; bottom:10px;
  z-index:2;
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.40);
  border:1px solid rgba(242,168,69,.20);
  color: rgba(255,255,255,.92);
  font-weight:900;
  font-size:12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.shotTag .dot{
  width:7px; height:7px;
  box-shadow: 0 0 0 3px rgba(242,168,69,.14);
}

/* Sections */
.section{
  margin-top:16px;
  border-radius: var(--r34);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.sectionHead{
  padding:14px 18px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap:wrap;
}
.sectionHead strong{ font-weight:980; letter-spacing:.2px; }
.sectionHead span{ color: var(--muted2); font-weight: 750; font-size: 12px; }

.content{ padding:18px; }

.ctaRow{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.ctaRow.center{ justify-content:center; }

/* Card grid */
.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.card{
  grid-column: span 6;
  padding:16px;
  border-radius: var(--r28);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease;
  position:relative;
  overflow:hidden;
  min-width:0;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 180px at 18% 18%, rgba(242,168,69,.18), transparent 60%),
    radial-gradient(380px 180px at 82% 22%, rgba(95,200,255,.12), transparent 62%);
  opacity:.55;
  pointer-events:none;
}
.card:hover{ transform: translateY(-2px); border-color: rgba(242,168,69,.26); }
.card h3{
  position:relative;
  margin:0;
  font-size:15px;
  font-weight:980;
  letter-spacing:.15px;
  color: rgba(255,255,255,.94);
}
.card p{
  position:relative;
  margin:8px 0 0;
  color: var(--muted);
  font-weight:650;
  line-height:1.65;
  font-size:13px;
}
.card .tagRow{
  position:relative;
  margin-top:12px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
  font-size:12px;
  color: rgba(255,255,255,.90);
}
.tag .tDot{
  width:8px; height:8px; border-radius:99px;
  background: var(--gold);
  box-shadow:0 0 0 4px rgba(242,168,69,.14);
}

/* Gallery */
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gItem{
  grid-column: span 4;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  position:relative;
  cursor:pointer;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease;
  min-height: 180px;
}
.gItem:hover{
  transform: translateY(-2px);
  border-color: rgba(242,168,69,.26);
}
.gItem img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}
.gCap{
  position:absolute; left:10px; bottom:10px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  border:1px solid rgba(242,168,69,.18);
  color: rgba(255,255,255,.92);
  font-weight:900;
  font-size:12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Lightbox */
.lb{
  position:fixed; inset:0; z-index:999;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px;
}
.lb.open{ display:grid; }
.lbInner{
  width: min(980px, 96vw);
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,10,14,.55);
  box-shadow: 0 24px 80px rgba(0,0,0,.70);
  position:relative;
}
.lbImg{
  width:100%;
  height: min(78vh, 720px);
  object-fit:contain;
  background: rgba(0,0,0,.35);
  display:block;
}
.lbTop{
  position:absolute; top:10px; right:10px;
  display:flex; gap:10px;
}
.lbBtn{
  width:42px; height:42px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-weight:950;
  cursor:pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:grid; place-items:center;
}
.lbBtn:hover{ border-color: rgba(242,168,69,.26); }

/* Social */
.socialCenter{ text-align:center; }
.socialCopy{
  margin:0 0 14px;
  color:var(--muted);
  font-weight:650;
  line-height:1.7;
}

/* Social icons */
.icons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.iconBtn{
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--gold), #d38c2f);
  border:1px solid rgba(255,255,255,.16);
  text-decoration:none;
  box-shadow: 0 14px 30px rgba(242,168,69,.18);
  transition: transform .18s ease, box-shadow .18s ease;
  flex: 0 0 auto;
}
.iconBtn:hover{ transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 44px rgba(242,168,69,.28); }
.iconBtn svg{ width:26px; height:26px; fill:#140b05; }

/* Footer */
footer{
  margin-top:14px;
  text-align:center;
  color: rgba(255,255,255,.60);
  font-weight: 650;
  font-size: 12px;
  padding: 0 8px;
}
footer a{ color: rgba(242,168,69,.95); text-decoration:none; font-weight: 950; }
footer a:hover{ color:#fff; text-decoration:underline; }

/* Mobile floating CTA */
.fab{
  position:fixed; right: 14px; bottom: 16px; z-index: 60;
  display:none; align-items:center; gap:10px;
  padding: 12px 14px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), #d38c2f);
  border:1px solid rgba(255,255,255,.18);
  color:#140b05; font-weight: 980; text-decoration:none;
  box-shadow: 0 18px 54px rgba(242,168,69,.34);
}
.fab svg{ width:18px; height:18px; fill:#140b05; }

/* Breakpoints */
@media (max-width: 980px){
  .heroInner{ grid-template-columns: 1fr; }
  .sideCard{ order: 2; }
  .heroShots{ grid-template-columns: 1fr 1fr; }
  .gItem{ grid-column: span 6; }
}
@media (max-width: 760px){
  .wrap{ padding:14px 12px 96px; }
  .top{ top:10px; padding:10px 12px; }
  .mark{ width:46px; height:46px; border-radius:16px; }
  .pill{ display:none; }
  .fab{ display:flex; }

  .heroInner{ padding:18px; }
  .heroBtns{ gap:10px; }
  .btnPrimary, .btnGhost{ width:100%; min-width:unset; }

  .trust{ flex: 1 1 100%; }

  .sectionHead{ padding:12px 14px; }
  .content{ padding:14px; }

  .card{ grid-column: span 12; }
  .gItem{ grid-column: span 12; }
}
@media (max-width: 420px){
  .t2{ display:none; }
  .cta{ padding:10px 12px; }
  .kicker{ width:100%; justify-content:center; }
  .heroShots{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  .aura{ animation:none; }
  .pill,.cta,.btnPrimary,.btnGhost,.card,.iconBtn,.miniList a,.gItem{ transition:none; }
}