
:root{
  --bg:#050505;
  --panel: rgba(12,12,12,.86);
  --panel2: rgba(18,18,18,.88);
  --text:#f6f6f6;
  --muted: rgba(246,246,246,.78);
  --gold:#d7b35a;
  --gold2:#f0d18d;
  --line: rgba(215,179,90,.25);
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 16px;
  --max: 1120px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  min-height:100vh;
}
/* Background image behind text on ALL pages */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(215,179,90,.22), transparent 55%),
    radial-gradient(760px 520px at 90% 18%, rgba(215,179,90,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.85));
  z-index:-2;
}


body::after{
  content:"";
  position:fixed;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.45));
  z-index:-1;
}

a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 22px}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand img{
  height:42px; width:auto; display:block;
  border-radius:10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.45);
}
.brand .stack{line-height:1.1}
.brand .stack .company{font-weight:800; letter-spacing:.3px}
.brand .stack .tag{font-size:12px; color:var(--muted); margin-top:3px}
nav{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
nav a{
  text-decoration:none;
  padding:10px 12px; border-radius:12px;
  border:1px solid transparent;
  color:rgba(246,246,246,.88);
  font-weight:700;
}
nav a:hover{border-color: rgba(215,179,90,.40); background: rgba(215,179,90,.10)}
nav a.active{border-color: rgba(215,179,90,.60); background: rgba(215,179,90,.14)}

/* Hero */
.hero{padding:48px 0 28px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:20px;
  align-items:flex-start;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(215,179,90,.40);
  background: rgba(0,0,0,.35);
  color: rgba(246,246,246,.92);
  font-size:13px;
}
.badge strong{color:var(--gold2); letter-spacing:.12em; text-transform:uppercase; font-size:12px}
h1{
  font-family: ui-serif, Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 4vw, 56px);
  margin:14px 0 12px;
  line-height:1.05;
}
.lead{
  font-size:18px; line-height:1.6;
  color: rgba(246,246,246,.82);
  margin:0 0 16px;
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(215,179,90,.55);
  background: rgba(215,179,90,.10);
}
.btn:hover{background: rgba(215,179,90,.16)}
.btn.secondary{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.btn.secondary:hover{background: rgba(215,179,90,.25)}

.heroCard{
  background: var(--panel);
  border:1px solid rgba(215,179,90,.18);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard .img{
  width:100%;
  background:#0b0b0b;
  padding:16px;
}

.heroCard img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
}

/* Sections */
.section{padding:42px 0}
.kicker{
  color: var(--gold2);
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
}
h2{font-size:28px; margin:8px 0 10px}
p{color: rgba(246,246,246,.82); line-height:1.75}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
  margin-top:16px;
}
.card{
  background: var(--panel2);
  border:1px solid rgba(215,179,90,.18);
  border-radius: var(--radius);
  padding:18px;
}

.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; font-size:14px; color: rgba(246,246,246,.76); line-height:1.65}

hr.sep{border:0;height:1px;background:rgba(255,255,255,.07);margin:18px 0}

/* Services */
.serviceWrap{
  background: var(--panel2);
  border:1px solid rgba(215,179,90,.18);
  border-radius: 20px;
  padding:22px;
}
.serviceWrap h2{margin-top:6px}
.serviceGroup{margin-top:18px;padding-top:18px;border-top:1px solid rgba(255,255,255,.07)}
.serviceGroup h3{margin:0 0 8px; font-size:18px}
.serviceGroup ul{margin:0; padding-left:18px; color: rgba(246,246,246,.80); line-height:1.75}

/* Contact */
.contactGrid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:16px}
.box{
  background: var(--panel2);
  border:1px solid rgba(215,179,90,.18);
  border-radius: var(--radius);
  padding:18px;
}
label{display:block;margin:10px 0 6px;color:rgba(246,246,246,.86);font-size:14px}
input,textarea{
  width:100%; padding:12px 12px; border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: var(--text);
  outline:none;
}
input:focus,textarea:focus{border-color: rgba(215,179,90,.60); box-shadow: 0 0 0 3px rgba(215,179,90,.14)}
textarea{min-height:130px; resize:vertical}
.small{font-size:12px;color:rgba(246,246,246,.68);line-height:1.6}

footer{
  margin-top:40px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}
.footerInner{
  display:flex; gap:14px; flex-wrap:wrap;
  align-items:center; justify-content:space-between;
  padding:22px 0;
  color: rgba(246,246,246,.72);
  font-size:13px;
}

.services {
  padding-top: 80px;
}

.serviceBlock {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 32px;
  margin-top: 32px;
}

.serviceBlock h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.serviceDesc {
  color: rgba(246,246,246,0.75);
  margin-bottom: 18px;
  max-width: 680px;
}

.serviceBlock ul {
  padding-left: 18px;
}

.serviceBlock li {
  margin-bottom: 8px;
}
/* Mobile hero layout: place graphic between header and text */
/* Mobile hero layout: About section goes UNDER the image */
/* Mobile: place image BETWEEN intro and About (no HTML changes) */
@media (max-width: 920px){
  .heroGrid{
    display:flex;
    flex-direction:column;
  }

  /* IMPORTANT: flatten heroText so its children can be reordered with the image */
  .heroText{
    display: contents;
  }

  /* Order everything explicitly */
  .heroText h1{ order: 1; }
  .heroText .lead{ order: 2; }
  .heroText .ctaRow{ order: 3; }

  .heroCard{
    order: 4;             /* image goes here */
    margin: 16px 0 20px;
  }

  .heroText hr.sep{ order: 5; }
  .heroText h2{ order: 6; }
  .heroText p{ order: 7; }
}
.hero + .section{
  padding-top: 28px;
}
.hero::after{
  content:"";
  display:block;
  height:1px;
  background: rgba(255,255,255,.08);
  margin-top:24px;
}
.services h2{
  margin-bottom: 6px;
}

.serviceIntro{
  margin-top: 8px;
}
.serviceIntro::after{
  content:"";
  display:block;
  height:1px;
  background: rgba(255,255,255,.08);
  margin-top: 24px;
}
@media (max-width: 720px){
  .contactGrid{
    grid-template-columns: 1fr;
  }
}


