:root{
  --bg:#050605;
  --panel: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --accent: #9CFF6A;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color: var(--text);
  background:
    radial-gradient(900px 450px at 20% 0%, rgba(156,255,106,.14), transparent 60%),
    radial-gradient(900px 450px at 90% 10%, rgba(44,160,255,.10), transparent 55%),
    var(--bg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.45;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

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

/* Topbar */
.topbar{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(6,8,6,.55);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 0;
  gap:10px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  white-space:nowrap;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(156,255,106,.7);
}
.topbar-phone{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight:800;
}

/* Hero */
.hero{ padding: 34px 0 18px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.hero-logo{
  width:min(520px, 100%);
  margin-bottom: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}
h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 56px);
  line-height:1.02;
  letter-spacing:-.02em;
}
.accent{ color: var(--accent); }
.lead{
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 16px;
  max-width: 60ch;
}

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 16px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight:900;
  letter-spacing:.01em;
}
.btn.primary{
  background: linear-gradient(180deg, rgba(156,255,106,.95), rgba(156,255,106,.70));
  color:#031003;
  border-color: rgba(156,255,106,.6);
}
.btn.ghost{
  background: rgba(255,255,255,.06);
}
.btn.wide{ width:100%; }

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.chip{
  padding: 9px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight:800;
  font-size: 14px;
}

/* Card */
.card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-title{
  padding: 14px 14px 10px;
  font-weight: 900;
  letter-spacing:.02em;
}
.services-img{
  width:100%;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.card-footer{
  padding: 12px 14px 14px;
  color: var(--muted);
  font-weight:700;
}

/* Sections */
.section{ padding: 34px 0; }
.section.alt{
  background: var(--bg);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

.section-head h2{
  margin:0 0 6px;
  font-size: 28px;
}
.section-head p{
  margin:0 0 16px;
  color: var(--muted);
}

.bullets{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.bullet{
  padding: 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  font-weight:700;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.shot{
  grid-column: span 6;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.shot img{
  width:100%;
  height: 320px;
  object-fit: cover;
}
.shot.tall{ grid-column: span 6; }
.shot.tall img{ height: 420px; }
.shot.wide{ grid-column: span 12; }
.shot.wide img{ height: 420px; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items:start;
}
.contact-card{
  padding: 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.contact-card h3{ margin:0 0 6px; }
.lead2{ margin:0 0 12px; color: var(--muted); }
.mini{ margin-top: 12px; color: var(--muted); font-weight:700; display:grid; gap:8px; }

.form{
  padding: 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  display:grid;
  gap: 12px;
}
label{ display:grid; gap:8px; font-weight:800; }
input, textarea{
  background: rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 12px;
  color: var(--text);
  font-size: 16px;
}
.small{ margin:0; font-size: 13px; }
.muted{ color: var(--muted); }

/* Footer */
.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight:800;
}
.footer-right{ display:flex; align-items:center; gap:10px; }
.sep{ opacity:.55; }

/* Mobile */
@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .bullets{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .shot{ grid-column: span 12; }
  .shot img{ height: 320px; }
  .shot.tall img, .shot.wide img{ height: 320px; }
}
... all your current CSS ...

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .bullets{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .shot{ grid-column: span 12; }
  .shot img{ height: 320px; }
  .shot.tall img, .shot.wide img{ height: 320px; }
}

/* ==== LOGO FIX (paste below here) ==== */
.hero-logo{
  width: min(520px, 100%);
  height: auto;
  display: block;
  background: #7a7a7a;
  padding: 16px;
  border-radius: 14px;
  border: 0 !important;
  box-shadow: none !important;
}
/* Fix: stop background/gradient bleed into Project Photos section */
.section.alt{
  background: var(--bg);         /* make it solid instead of translucent */
  position: relative;
  z-index: 1;
  overflow: hidden;              /* clips any glow spill */
}

/* Optional: add a clean divider line so it looks intentional */
.section.alt::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:1px;
  background: rgba(255,255,255,.08);
}
/* Kill the green band between sections (stop body gradients showing through) */
.section{
  background: var(--bg);
  position: relative;
  z-index: 1;
}

/* Keep alt sections solid too (you can tint it later if you want) */
.section.alt{
  background: var(--bg);
  overflow: hidden;
}

/* Optional: subtle divider line between stacked sections */
.section + .section{
  border-top: 1px solid rgba(255,255,255,.08);
}
