:root{
  --topbar-h: 72px; /* mobile fixed topbar height */
  --bg:#22282d;
  --bg2:#2b3238;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --chrome:rgba(255,255,255,.18);
  --shine:rgba(255,255,255,.45);
  --accent: #a7b6c6; /* steel */
  --accent2:#dfe7ef; /* bright steel */
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background-color: var(--bg);
  position: relative;
  overflow-x: hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(5,8,14,.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:800; letter-spacing:.5px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06)),
    radial-gradient(80px 80px at 30% 25%, rgba(255,255,255,.45), transparent 45%);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand__name{font-weight:800}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{display:flex; gap:18px; align-items:center}
.nav a{
  font-size:14px; color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition:.18s ease;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.nav__cta{
  color:var(--bg) !important;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  font-weight:700;
  border: 1px solid rgba(255,255,255,.25);
}

.hamburger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.hamburger span{display:block; height:2px; margin:6px 10px; background:rgba(255,255,255,.75)}

.mobileNav{
  display:none;
  padding: 8px 0 14px;
  border-top:1px solid var(--line);
}
.mobileNav a{
  display:block;
  padding:12px 0;
  color:var(--muted);
}

.hero{
  position:relative;
  padding: 54px 0 40px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:-20%;
  background:
    radial-gradient(900px 450px at 20% 20%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(700px 500px at 75% 30%, rgba(170,200,255,.10), transparent 62%),
    conic-gradient(from 120deg at 50% 50%, rgba(255,255,255,.06), transparent 30%, rgba(255,255,255,.05), transparent 70%, rgba(255,255,255,.07));
  filter: blur(18px);
  opacity:.45;
  pointer-events:none;
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 28px;
  align-items:start;
}

.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--muted);
  font-size: 13px;
}

.hero h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height:1.05;
  letter-spacing:-.5px;
}
.hero p{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height:1.6;
  max-width: 56ch;
}

.hero__actions{display:flex; gap:12px; margin:18px 0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 700;
  cursor:pointer;
  transition:.18s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08)}
.btn--primary{
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-color: rgba(255,255,255,.22);
}
.btn--ghost{background: transparent}
.btn--full{width:100%}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 6px;
}
.stat{
  padding: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}
.stat__num{font-weight:900; letter-spacing:.2px}
.stat__label{color:var(--muted); font-size:12px; margin-top:4px}

.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__cardTop{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 14px 10px;
}
.hero__cardTitle{font-weight:800}
.hero__cardBadge{
  font-size:12px; color:var(--bg);
  padding: 6px 10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border: 1px solid rgba(255,255,255,.25);
  font-weight:800;
}

.featured{
  position:relative;
  height: 260px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(500px 260px at 30% 25%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  overflow:hidden;
}
.featured img{
  width:100%; height:100%;
  object-fit:cover;
  filter: contrast(1.05) saturate(1.05);
}
.featured__fallback{
  position:absolute; inset:0;
  display:grid; place-items:center;
  text-align:center;
  padding:18px;
}
.fallback__title{font-weight:900; margin-bottom:6px}
.fallback__text{color:var(--muted); font-size:13px}
.featured--fallback .featured__fallback{opacity:1}

.hero__cardInfo{padding: 12px 14px 16px}
.infoRow{display:flex; justify-content:space-between; gap:10px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.10)}
.infoRow:last-child{border-bottom:none}
.infoRow span{color:var(--muted)}
.infoRow strong{font-weight:900}

.section{padding: 56px 0}
.section--alt{
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sectionHead{margin-bottom: 18px}
.sectionHead h2{
  margin:0;
  font-size: 28px;
  letter-spacing: -.3px;
}
.sectionHead p{margin:8px 0 0; color: var(--muted); line-height:1.6}

.cardsGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.card__img{
  height: 190px;
  background:
    radial-gradient(400px 240px at 25% 25%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-bottom:1px solid rgba(255,255,255,.10);
  position:relative;
}
.card__img img{width:100%; height:100%; object-fit:cover}
.card__body{padding: 14px}
.card__body h3{margin:0 0 8px; font-size: 16px}
.card__body p{margin:0; color:var(--muted); line-height:1.6; font-size: 13.5px}

.chipRow{display:flex; flex-wrap:wrap; gap:8px; margin-top: 12px}
.chip{
  font-size:12px;
  color: rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius:999px;
  padding:6px 10px;
}

.imgFallback__inner{
  display:none;
  position:absolute; inset:0;
  padding:18px;
  text-align:center;
  place-items:center;
}
.imgFallback .imgFallback__inner{display:grid}
.imgFallback__title{font-weight:900}
.imgFallback__text{color:var(--muted); font-size:13px; margin-top:6px}

.galleryTools{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin: 16px 0 18px;
  flex-wrap:wrap;
}
.searchWrap input{
  width:min(520px, 92vw);
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
.searchWrap input::placeholder{color: rgba(255,255,255,.45)}
.hint{color:var(--muted); font-size: 13px}

.masonry{
  columns: 4 220px;
  column-gap: 14px;
}
.tile{
  break-inside: avoid;
  margin-bottom: 14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  cursor:pointer;
  transition: .18s ease;
}
.tile:hover{transform: translateY(-2px); background: rgba(255,255,255,.07)}
.tile img{width:100%; height:auto; display:block}
.tile .tile__cap{
  padding: 10px 12px;
  border-top:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 13px;
}

.servicesGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service{
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.service__icon{font-size:22px; margin-bottom: 10px}
.service h3{margin:0 0 8px}
.service p{margin:0; color:var(--muted); line-height:1.6; font-size: 13.5px}

.contactGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
.contactCard{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.contactCard--info{position:sticky; top: 86px; height: fit-content}
.contactCard h3{margin:0 0 10px}
.muted{color:var(--muted)}

.form{display:grid; gap: 12px; margin-top: 10px}
label{display:grid; gap: 8px; color: var(--muted); font-size: 13px}
input, textarea{
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
textarea{resize: vertical; min-height: 120px}
.fileLabel input{padding: 10px}

.finePrint{color: var(--muted); font-size: 12.5px; margin-top: 12px}
.infoList{display:grid; gap: 10px; margin-top: 12px}
.infoItem{display:flex; justify-content:space-between; gap: 14px; padding: 10px 0; border-bottom:1px solid rgba(255,255,255,.10)}
.infoItem:last-child{border-bottom:none}
.infoKey{color:var(--muted)}
.infoVal a{color: var(--accent2); text-decoration: underline; text-underline-offset: 3px}

.divider{height:1px; background: rgba(255,255,255,.10); margin: 14px 0}

.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
}
.footer__inner{display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap}
.footer__links{display:flex; gap: 14px}
.footer__links a:hover{color: var(--text)}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  place-items:center;
  padding: 18px;
  z-index: 100;
}
.lightbox.isOpen{display:grid}
.lightbox__img{
  max-width:min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.lightbox__caption{
  margin-top: 12px;
  color: rgba(255,255,255,.78);
  text-align:center;
  max-width: 70ch;
}
.lightbox__close{
  position:absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: white;
  cursor:pointer;
  font-size: 18px;
}

@media (max-width: 920px){
  .hero__inner{grid-template-columns: 1fr; }
  .servicesGrid{grid-template-columns: 1fr 1fr}
  .cardsGrid{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .contactCard--info{position:static}
  .hero__stats{grid-template-columns: 1fr; }
  .nav{display:none}
  .hamburger{display:block}
  .mobileNav.isOpen{display:block}

  /* Keep the top navigation accessible while scrolling on mobile */
  .topbar{ position: fixed; top:0; left:0; right:0; }
  body{ padding-top: var(--topbar-h); }
  /* Prevent the dropdown from extending beyond the viewport */
  .mobileNav{ max-height: calc(100vh - var(--topbar-h)); overflow:auto; }
}


/* Consistent steel grid overlay (doesn't change down the page) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  /* Long vertical steel lines */
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.055) 0px,
      rgba(255,255,255,.018) 22px,
      rgba(0,0,0,0) 44px
    );
}
.hero, .section, .footer{
  position: relative;
  z-index: 1;
}


/* Netlify Forms spam honeypot: keep it (helps block bots) but never show it to humans */
.visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

.hidden{ display:none !important; }


/* Inline success message (fallback) */
.formSuccess{
  padding:14px 14px;
  border-radius:14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  margin: 10px 0 14px;
}
.formSuccess strong{ display:block; margin-bottom:6px; }
