:root{
  --bg:#070a10;
  --panel:#0c1422;
  --panel2:#0a111d;
  --text:#eaf2ff;
  --muted:#9db2d4;

  --accent:#ffd23a;   /* hazard yellow */
  --accent2:#ff7a18;  /* spark orange */
  --line:rgba(255,255,255,.10);

  --radius:18px;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --max:1120px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  color:var(--text);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1100px 600px at 10% 0%, rgba(255,122,24,.12), transparent 60%),
    radial-gradient(900px 520px at 90% 0%, rgba(255,210,58,.12), transparent 60%),
    linear-gradient(180deg, #05070c, #070a10 30%, #05070c);
  overflow-x:hidden;
}

/* gritty overlay */
body:before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025), rgba(255,255,255,.025) 1px, transparent 1px, transparent 4px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.35;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px;}
main{padding:34px 0 46px}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,10,16,.58);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px;}
.logo{
  width:40px; height:40px; border-radius:14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.25), transparent 60%),
    linear-gradient(135deg, rgba(255,210,58,.95), rgba(255,122,24,.85));
  box-shadow: 0 16px 40px rgba(255,210,58,.16);
}
.brandTitle{font-weight:950; letter-spacing:.2px; line-height:1.1;}
.brandSub{font-weight:750; font-size:12px; color:var(--muted);}

.navlinks{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end;}
.navlinks a.link{
  color:var(--muted);
  font-weight:900;
  font-size:13px;
  letter-spacing:.25px;
  padding:10px 10px;
  border-radius:12px;
}
.navlinks a.link:hover{color:var(--text); background:rgba(255,255,255,.04)}
.navlinks a.active{
  color:var(--text);
  border:1px solid rgba(255,210,58,.28);
  background: linear-gradient(180deg, rgba(255,210,58,.10), rgba(255,255,255,.03));
}

/* Front page image sizes */
.heroInner{
  align-items: center; /* keeps both sides even */
}

.hero-photo{
  margin:18px auto 0; /* centers horizontally */
  width:100%;
  max-width:480px;
  max-height:260px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 50px rgba(0,0,0,.35);

  display:flex;
  align-items:center;
  justify-content:center;
}


.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover; /* fills space without stretching */
  display:block;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  font-weight:950;
  letter-spacing:.2px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18)}
.btn.primary{
  border-color: rgba(255,210,58,.40);
  background: linear-gradient(135deg, rgba(255,210,58,.18), rgba(255,122,24,.12));
}
.btn.primary:hover{border-color: rgba(255,210,58,.60)}
.hideOnMobile{display:inline-flex}
@media(max-width:520px){ .hideOnMobile{display:none} }

/* Hero */
.hero{
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.heroBg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(7,10,16,.92) 0%, rgba(7,10,16,.70) 55%, rgba(7,10,16,.92) 100%),
    linear-gradient(180deg, rgba(7,10,16,.35), rgba(7,10,16,.85)),
    var(--heroImg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}
.heroStripe{
  position:absolute; right:-120px; top:-95px;
  width:380px; height:260px;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,210,58,.28) 0px,
    rgba(255,210,58,.28) 12px,
    rgba(0,0,0,0) 12px,
    rgba(0,0,0,0) 24px
  );
  transform: rotate(10deg);
  opacity:.45;
}
.heroInner{
  position:relative;
  padding:26px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
@media(max-width:920px){ .heroInner{grid-template-columns:1fr} }

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,210,58,.25);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-weight:900;
  font-size:13px;
}
.pill .spark{
  width:10px;height:10px;border-radius:99px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 3px rgba(255,210,58,.10);
}
h1{
  margin:10px 0 12px;
  font-size: clamp(30px, 3.9vw, 58px);
  letter-spacing:-.9px;
  line-height:1.02;
}
.lead{margin:0; color:var(--muted); line-height:1.6; font-size:16px;}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px;}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;}
.badge{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-weight:900;
  font-size:13px;
}
.badge b{color:var(--text)}
.sideCard{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(255,255,255,.03));
  padding:18px;
}
.sideCard h3{margin:0 0 10px}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}

/* Sections */
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  flex-wrap:wrap; gap:12px;
  margin:22px 0 14px;
}
.sectionHead h2{margin:0; letter-spacing:-.2px}
.sectionHead p{margin:0; color:var(--muted); max-width:720px; line-height:1.55}

.grid{display:grid; gap:16px}
.cols3{grid-template-columns:repeat(3,1fr)}
.cols2{grid-template-columns:repeat(2,1fr)}
@media(max-width:920px){ .cols3,.cols2{grid-template-columns:1fr} }

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(260px 140px at 20% 0%, rgba(255,210,58,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  padding:18px;
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.55}
.card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,210,58,.22);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-size:12px;
  font-weight:950;
  letter-spacing:.2px;
  margin-bottom:10px;
}

/* Gallery */

#lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  cursor:zoom-out;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
  box-shadow:0 25px 80px rgba(0,0,0,.7);
}

.gallery{
  display:grid; gap:14px;
  grid-template-columns: repeat(12, 1fr);
}
.gimg{
  height: 320px;
}
.gimg{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  box-shadow: 0 16px 45px rgba(0,0,0,.35);
  position:relative;
  background: #0b1220;
}
.gimg img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}
.gimg:after{
  content:"";
  pointer-events:none;
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.55));
}
.span6{grid-column: span 6}
.span4{grid-column: span 4}
.span8{grid-column: span 8}
@media(max-width:920px){ .span6,.span4,.span8{grid-column: span 12} }

/* Forms */
form{display:grid; gap:10px}
label{font-weight:950; font-size:13px; color:var(--muted)}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color: rgba(255,210,58,.40);
  box-shadow: 0 0 0 4px rgba(255,210,58,.10);
}

/* Footer + sticky call */
footer{padding:28px 0 46px; color:var(--muted)}
.footGrid{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px}
.small{font-size:12px}
.stickyCall{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; gap:10px; align-items:center;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,210,58,.35);
  background: rgba(12,20,34,.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 70px rgba(0,0,0,.55);
}
.stickyCall b{font-size:13px}
.stickyCall span{display:block; margin-top:2px; font-size:12px; color:var(--muted)}
code{font-family:var(--mono)}
