
:root{
  --bg:#0b0c0f;
  --panel:#111318;
  --panel2:#151823;
  --text:#f3f5f7;
  --muted:#b7bec8;
  --line:rgba(255,255,255,.10);
  --accent:#d11f2b;
  --accent2:#ff3b30;
  --max:1120px;
  --radius:18px;
  --shadow: 0 16px 40px rgba(0,0,0,.45);
  --shadow2: 0 10px 24px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(209,31,43,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(255,59,48,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 22px}
.section{padding:72px 0}
.section.tight{padding:48px 0}

.topbar{
  background: rgba(0,0,0,.35);
  border-bottom:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
}
.topbar .row{display:flex;gap:14px;align-items:center;justify-content:space-between;padding:10px 0}
.topbar .row .left, .topbar .row .right{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.pill{display:inline-flex;gap:8px;align-items:center;padding:6px 10px;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.03)}
.dot{width:8px;height:8px;border-radius:999px;background:var(--accent)}

.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,12,15,.65);
  border-bottom:1px solid var(--line);
}
.header .row{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.logo{
  width:40px;height:40px;border-radius:12px;
  background: linear-gradient(135deg, rgba(209,31,43,.95), rgba(255,59,48,.55));
  box-shadow: 0 10px 24px rgba(209,31,43,.22);
  display:grid;place-items:center;
}
.logo svg{width:26px;height:26px}
.brand .name{font-weight:800;letter-spacing:.2px}
.brand .sub{font-size:12px;color:var(--muted);margin-top:2px}
.nav{display:flex;gap:18px;align-items:center}
.nav a{font-weight:650;color:rgba(243,245,247,.88);padding:8px 10px;border-radius:10px}
.nav a:hover{background:rgba(255,255,255,.05)}
.nav a.active{background:rgba(209,31,43,.14);color:var(--text);border:1px solid rgba(209,31,43,.25)}
.actions{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:11px 14px;border-radius:12px;border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  box-shadow: none;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.06)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  box-shadow: 0 12px 26px rgba(209,31,43,.25);
}
.btn.primary:hover{filter:saturate(1.05)}
.btn.small{padding:9px 12px;border-radius:11px;font-size:14px}
.icon{width:18px;height:18px;opacity:.95}

.hamburger{display:none}
.mobileNav{display:none}

.hero{
  position:relative;
  min-height: 76vh;
  display:flex;
  align-items:flex-end;
  border-bottom:1px solid var(--line);
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background-image:url("images/hero.jpg");
  background-size:cover;
  background-position:center;
  filter: saturate(1.05);
}
.hero::after{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.70) 65%, rgba(11,12,15,1) 100%),
    radial-gradient(900px 480px at 20% 20%, rgba(209,31,43,.18), transparent 60%),
    radial-gradient(850px 420px at 85% 25%, rgba(255,59,48,.12), transparent 55%);
}
.hero .content{
  position:relative;z-index:2;
  padding: 70px 0 64px;
}
.kicker{display:inline-flex;gap:10px;align-items:center;color:rgba(243,245,247,.92);font-weight:700}
.kicker .tag{padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.14);background:rgba(0,0,0,.25)}
.h1{font-size: clamp(34px, 4.6vw, 56px);line-height:1.05;margin:14px 0 12px;font-weight:900;letter-spacing:-.5px}
.lead{max-width:62ch;color:rgba(243,245,247,.86);font-size:18px;margin:0 0 22px}
.hero .cta{display:flex;gap:12px;align-items:center;flex-wrap:wrap}
.hero .meta{
  margin-top:22px;display:flex;gap:10px;flex-wrap:wrap;color:var(--muted);font-size:13px
}

.grid{display:grid;gap:18px}
.grid.two{grid-template-columns: 1.2fr .8fr}
.grid.three{grid-template-columns: repeat(3, 1fr)}
.grid.four{grid-template-columns: repeat(4, 1fr)}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.card.pad{padding:18px}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted)}
.card .muted{color:var(--muted)}
.card .row{display:flex;gap:12px;align-items:flex-start}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  background:rgba(209,31,43,.12);
  border:1px solid rgba(209,31,43,.22);
  color:rgba(243,245,247,.92);
  font-weight:750;
  font-size:13px;
}
.hr{height:1px;background:var(--line);margin:14px 0}

.sectionTitle{display:flex;align-items:end;justify-content:space-between;gap:18px;margin-bottom:18px}
.sectionTitle h2{margin:0;font-size:28px;letter-spacing:-.3px}
.sectionTitle p{margin:0;color:var(--muted);max-width:60ch}

.services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.serviceCard{
  padding:18px;
}
.serviceCard .iconWrap{
  width:44px;height:44px;border-radius:14px;
  background:rgba(209,31,43,.12);
  border:1px solid rgba(209,31,43,.22);
  display:grid;place-items:center;margin-bottom:12px;
}
.serviceCard h3{margin:0 0 6px}
.serviceCard ul{margin:10px 0 0 18px;color:var(--muted)}
.serviceCard li{margin:6px 0}

.galleryGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.galleryGrid a{
  display:block;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.galleryGrid img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  transition: transform .25s ease;
}
.galleryGrid a:hover img{transform:scale(1.03)}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.list{margin:0;padding:0;list-style:none}
.list li{padding:10px 0;border-bottom:1px solid var(--line);color:var(--muted)}
.list li b{color:rgba(243,245,247,.92)}
.small{font-size:13px;color:var(--muted)}

.footer{
  margin-top:40px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.25);
  padding:34px 0;
}
.footer .cols{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
}
.footer h4{margin:0 0 10px}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.footer .bottom{margin-top:18px;color:var(--muted);font-size:13px;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

.lightbox{
  position:fixed;inset:0;display:none;place-items:center;
  background:rgba(0,0,0,.78);
  z-index:100;
  padding:24px;
}
.lightbox.open{display:grid}
.lightbox img{
  max-width:min(1100px, 95vw);
  max-height:85vh;
  border-radius:18px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.12);
}
.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(0,0,0,.35);
  color:var(--text);
  display:grid;place-items:center;
  cursor:pointer;
}

.note{
  background:rgba(255,255,255,.03);
  border:1px dashed rgba(255,255,255,.22);
  border-radius:16px;
  padding:14px 16px;
  color:var(--muted);
}

@media (max-width: 960px){
  .grid.two{grid-template-columns:1fr}
  .grid.four{grid-template-columns:1fr 1fr}
  .services{grid-template-columns:1fr}
  .galleryGrid{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
  .footer .cols{grid-template-columns:1fr}
  .nav{display:none}
  .hamburger{display:inline-flex}
  .mobileNav{display:none;border-top:1px solid var(--line)}
  .mobileNav.open{display:block}
  .mobileNav a{display:block;padding:14px 22px;border-bottom:1px solid var(--line);color:rgba(243,245,247,.92);font-weight:700}
  .mobileNav a.active{background:rgba(209,31,43,.10)}
  .hero{min-height:72vh}
}

/* Logo image sizing (header + footer) */
.logoImg{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.footer .logoImg{
  width: 44px;
  height: 44px;
}

/* Contact page layout */
.contactGrid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px;
}

.contactItem{
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contactItem:first-of-type{
  border-top: none;
  padding-top: 0;
}
.contactItem .label{
  font-size: 12px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contactItem .value{
  margin-top: 6px;
}

.contactPhoto{
  margin: 16px 0 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}
.contactPhoto img{
  width: 100%;
  height: auto;
  display: block;
}
.contactPhoto figcaption{
  padding: 10px 12px;
  font-size: 13px;
  opacity: 0.8;
  background: rgba(0,0,0,0.35);
}

/* Form styling */
.contactForm .field{
  margin-top: 14px;
}
.contactForm label{
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  opacity: 0.9;
}
.contactForm input,
.contactForm select,
.contactForm textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.20);
  color: inherit;
  outline: none;
}
.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus{
  border-color: rgba(255,255,255,0.25);
}

.fieldRow{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hidden{ display:none; }
.small{ font-size: 13px; }

/* Mobile */
@media (max-width: 900px){
  .contactGrid{
    grid-template-columns: 1fr;
  }
  .fieldRow{
    grid-template-columns: 1fr;
  }
}