:root{
  --navy:#0B2E5E;
  --ocean:#1F6FB2;
  --teal:#2FB7C0;
  --rust:#C85A1E;
  --gold:#D6A21E;
  --ink:#0B1020;
  --paper:#FBFAF7;
  --muted:#6B7280;
  --card:#FFFFFF;
  --border:rgba(11,16,32,.12);
  --shadow: 0 10px 30px rgba(11,16,32,.12);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background: var(--paper);
  line-height:1.5;
}

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

.topbar{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(90deg, rgba(11,46,94,.95), rgba(47,183,192,.9));
  border-bottom:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:240px;
}
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  background:
    radial-gradient(circle at 25% 20%, rgba(214,162,30,.95), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(200,90,30,.9), transparent 55%),
    linear-gradient(135deg, rgba(11,46,94,.95), rgba(31,111,178,.95));
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}
.brand-text{
  color:#fff;
}
.brand-text .name{
  font-weight:800;
  letter-spacing:.4px;
  font-size:16px;
  margin:0;
}
.brand-text .tag{
  margin:0;
  opacity:.88;
  font-size:12px;
}

.nav{
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
}
.nav a{
  color:#fff; text-decoration:none; opacity:.9;
  font-weight:600; font-size:14px;
  padding:8px 10px; border-radius:12px;
}
.nav a:hover{background: rgba(255,255,255,.12); opacity:1}
.cta{
  background: linear-gradient(135deg, var(--rust), var(--gold));
  color:#0b1020 !important;
  padding:10px 14px !important;
  border-radius:14px;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  text-decoration:none;
  font-weight:900 !important;
  white-space:nowrap;
}

.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--border);
  background:
    /* subtle “raw materials” texture */
    radial-gradient(1200px 600px at 20% -20%, rgba(214,162,30,.25), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(200,90,30,.18), transparent 55%),
    radial-gradient(900px 500px at 40% 120%, rgba(47,183,192,.16), transparent 55%),
    linear-gradient(180deg, rgba(11,46,94,.08), rgba(11,46,94,0));
}
.hero .grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  padding:54px 0 40px;
}
@media (max-width: 900px){
  .hero .grid{grid-template-columns:1fr; padding:40px 0 28px}
  .brand{min-width:0}
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(11,46,94,.08);
  border:1px solid rgba(11,46,94,.14);
  font-weight:800;
  color:var(--navy);
  width:fit-content;
}
.kicker .dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--rust);
  box-shadow: 0 0 0 6px rgba(200,90,30,.12);
}
.hero h1{
  margin:14px 0 12px;
  font-size: 44px;
  line-height:1.08;
  letter-spacing:-.8px;
  color: var(--navy);
}
@media (max-width: 520px){
  .hero h1{font-size:36px}
}
.hero p{
  margin:0 0 18px;
  font-size: 18px;
  color: rgba(11,16,32,.82);
  max-width: 44ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:14px;
  padding:12px 16px;
  font-weight:900;
  text-decoration:none;
  border:1px solid rgba(11,16,32,.12);
  background:#fff;
  box-shadow: var(--shadow);
}
.btn.primary{
  background: linear-gradient(135deg, var(--rust), var(--gold));
  border: 0;
  color:#0b1020;
}
.btn.secondary{
  background: rgba(255,255,255,.7);
}
.badges{
  margin-top:14px;
  display:flex; gap:10px; flex-wrap:wrap;
  color: rgba(11,16,32,.7);
  font-weight:700;
  font-size:13px;
}
.badge{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(11,16,32,.10);
}

.hero-media{
  display:flex; flex-direction:column; gap:14px;
}
.photo-slot{
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11,46,94,.90), rgba(31,111,178,.88)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.10) 0 12px, rgba(255,255,255,0) 12px 26px);
  border:1px solid rgba(11,16,32,.12);
  box-shadow: var(--shadow);
  min-height: 320px;
  position:relative;
  overflow:hidden;
}
.photo-slot::after{
  content:"Photo-ready hero • Add your best project image later";
  position:absolute;
  inset:auto 14px 14px 14px;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(11,16,32,.10);
  border-radius: 14px;
  padding:10px 12px;
  font-weight:900;
  color: var(--navy);
}
.photo-slot .hint{
  position:absolute; inset:16px;
  border:2px dashed rgba(255,255,255,.38);
  border-radius: 18px;
}
.mini-cards{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 900px){
  .mini-cards{grid-template-columns:1fr}
}
.mini{
  background: rgba(255,255,255,.78);
  border:1px solid rgba(11,16,32,.10);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: 0 10px 22px rgba(11,16,32,.08);
}
.mini h3{margin:0 0 6px; font-size:14px; letter-spacing:.2px; color: var(--navy)}
.mini p{margin:0; color: rgba(11,16,32,.74); font-weight:650; font-size:13px}

.section{padding:44px 0}
.section h2{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:-.4px;
  color: var(--navy);
}
.section .sub{
  margin:0 0 18px;
  color: rgba(11,16,32,.74);
  font-weight:650;
  max-width: 70ch;
}
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width: 980px){ .cards{grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 520px){ .cards{grid-template-columns: 1fr;} }
.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 22px rgba(11,16,32,.06);
}
.icon{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(11,46,94,.08);
  border: 1px solid rgba(11,46,94,.14);
  margin-bottom:10px;
}
.card h3{margin:0 0 6px; font-size:16px; color: var(--navy)}
.card p{margin:0; color: rgba(11,16,32,.74); font-weight:650; font-size:13px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
@media (max-width: 900px){ .split{grid-template-columns:1fr;} }

.callout{
  background: linear-gradient(135deg, rgba(11,46,94,.92), rgba(47,183,192,.88));
  border-radius: calc(var(--radius) + 6px);
  padding:22px;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.callout h3{margin:0 0 6px; font-size:18px}
.callout p{margin:0 0 14px; opacity:.92; font-weight:650}
.callout .cta{display:inline-flex}

.footer{
  padding:28px 0;
  border-top: 1px solid var(--border);
  color: rgba(11,16,32,.68);
  font-weight:650;
}
.footer .row{display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}
.small{font-size:12px; opacity:.9}

.page-head{
  padding:34px 0 10px;
}
.page-head h1{margin:0 0 8px; color: var(--navy); letter-spacing:-.6px}
.page-head p{margin:0; color: rgba(11,16,32,.74); font-weight:650}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){ .gallery-grid{grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 560px){ .gallery-grid{grid-template-columns: 1fr;} }

.beforeafter{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: 0 10px 22px rgba(11,16,32,.06);
}
.beforeafter .top{
  display:flex; justify-content:space-between; gap:10px;
  padding:12px 14px;
  background: rgba(11,46,94,.06);
  border-bottom:1px solid rgba(11,16,32,.08);
  font-weight:900;
  color: var(--navy);
}
.beforeafter .pics{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:180px;
}
.beforeafter .pic{
  display:grid; place-items:center;
  background:
    linear-gradient(180deg, rgba(11,46,94,.10), rgba(11,46,94,0)),
    repeating-linear-gradient(135deg, rgba(11,16,32,.06) 0 12px, rgba(11,16,32,0) 12px 26px);
  color: rgba(11,16,32,.72);
  font-weight:900;
  border-right:1px solid rgba(11,16,32,.08);
}
.beforeafter .pic:last-child{border-right:0}

.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 22px rgba(11,16,32,.06);
}
.form label{display:block; font-weight:900; margin:10px 0 6px; color: var(--navy)}
.form input,.form textarea,.form select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(11,16,32,.16);
  font:inherit;
}
.form textarea{min-height:140px; resize:vertical}
.form .row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 700px){ .form .row{grid-template-columns:1fr;} }
.form .note{margin-top:10px; color: rgba(11,16,32,.68); font-weight:650; font-size:13px}
