:root{
  --bg:#0b0c0e;
  --panel:#111317;
  --text:#f2f3f5;
  --muted:#c7c9cf;
  --gold:#c9a44b; /* muted gold */
  --gold-2:#e0c16a;
  --line:rgba(255,255,255,.12);
  --shadow:0 20px 60px rgba(0,0,0,.55);
  --danger:#b31d1d;
  --danger-2:#e03a3a;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 50% -100px, rgba(201,164,75,.18), transparent 65%),
              radial-gradient(900px 500px at 80% 0%, rgba(255,255,255,.10), transparent 60%),
              linear-gradient(180deg, #07080a 0%, #0b0c0e 60%, #07080a 100%);
}

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

.container{max-width:1180px; margin:0 auto; padding:0 20px}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(10,11,13,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; padding:14px 0;
}
.brand{
  display:flex; align-items:baseline; gap:14px;
  letter-spacing:.06em;
}
.brand .name{font-weight:700; font-size:22px; text-transform:uppercase}
.brand .loc{font-size:14px; color:var(--gold); text-transform:uppercase; font-weight:700}

.nav{
  display:flex; gap:20px; align-items:center;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
}
.nav a{
  opacity:.9; font-size:18px;
}
.nav a:hover{opacity:1; color:var(--gold-2)}

.phone-cta{
  display:flex; align-items:center; gap:10px;
  border:1px solid rgba(201,164,75,.55);
  padding:10px 12px;
  border-radius:4px;
  color:var(--gold);
  font-weight:800;
  letter-spacing:.03em;
  background: rgba(201,164,75,.08);
}
.phone-cta .icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px;
  border-left:1px solid rgba(201,164,75,.35);
  padding-left:12px;
}

/* Hero */
.hero{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.64) 50%, rgba(0,0,0,.75) 100%),
    var(--hero-image);
  background-size:cover;
  background-position:center;
  filter:saturate(.95) contrast(1.02);
  transform:scale(1.02);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.hero-inner{position:relative; padding:80px 0 70px; text-align:center}
.hero h1{
  margin:0 0 16px;
  font-size:56px;
  line-height:1.05;
  text-transform:uppercase;
  letter-spacing:.05em;
  text-shadow: 0 10px 30px rgba(0,0,0,.65);
}
.hero .sub{
  margin:0 0 28px;
  font-size:28px;
  letter-spacing:.02em;
}
.hero .sub .gold{color:var(--gold); font-weight:800}

.hero-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:190px;
  height:44px;
  padding:0 18px;
  border-radius:2px;
  border:1px solid rgba(201,164,75,.55);
  font-size:18px;
  letter-spacing:.02em;
  background: transparent;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px)}
.btn-primary{
  background: linear-gradient(180deg, rgba(201,164,75,.95), rgba(201,164,75,.78));
  color:#1a1306;
  border-color: rgba(255,255,255,.15);
  font-weight:800;
}
.btn-outline{background: rgba(0,0,0,.22); color:var(--text)}

.emergency-wrap{margin-top:18px}
.btn-emergency{
  background: linear-gradient(180deg, var(--danger-2), var(--danger));
  border-color: rgba(255,255,255,.25);
  color: #fff;
  min-width:240px;
  font-weight:800;
}
.btn-emergency svg{margin-right:10px}

/* Section shell */
.section{
  padding:46px 0;
}
.section-title{
  text-align:center;
  font-size:32px;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin:0;
}
.section-title::before,
.section-title::after{
  content:"";
  display:inline-block;
  width:110px;
  height:1px;
  background: rgba(201,164,75,.55);
  vertical-align:middle;
  margin:0 16px;
}

/* Trust / company blurb */
.trust{
  background: rgba(245,246,248,.96);
}
.trust-inner{
  text-align:center;
  padding: 36px 0;
}
.trust-inner p{
  max-width: 900px;
  margin: 16px auto 18px;
  font-size: 18px;
  line-height: 1.65;
  color: #2a2a2a;
}
.trust-points{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.trust-point{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  background: #fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  color:#1f1f1f;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.trust-point .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,168,75,.18);
}

@media (max-width: 720px){
  .trust-inner{ padding: 28px 0; }
  .trust-inner p{ font-size: 16px; }
}

/* What we do cards */
.cards{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}
.card{
  background: rgba(255,255,255,.92);
  color:#151515;
  border-radius:2px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.12);
}
.card img{width:100%; height:150px; object-fit:cover}
.card-body{padding:18px 18px 16px}
.card h3{margin:2px 0 10px; font-size:24px}
.card ul{margin:0; padding-left:18px; color:#2b2b2b; line-height:1.6}
.card li::marker{color:var(--gold)}

/* Featured carousel */
.featured{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,246,248,.96));
  color:#151515;
  border-top:1px solid rgba(0,0,0,.10);
  border-bottom:1px solid rgba(0,0,0,.10);
}
.featured-inner{padding:28px 0 36px}
.carousel{
  margin-top:18px;
  position:relative;
  border-radius:4px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.carousel img{
  width:100%;
  height:380px;
  object-fit:cover;
  display:none;
}
.carousel img.active{display:block}
.carousel .caption{
  position:absolute;
  left:16px; bottom:14px;
  background: rgba(0,0,0,.55);
  color:#fff;
  padding:8px 10px;
  border-radius:3px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size:14px;
  letter-spacing:.02em;
}
.carousel .dots{
  position:absolute;
  right:12px; bottom:12px;
  display:flex; gap:6px;
}
.carousel .dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,.40);
  border:1px solid rgba(0,0,0,.25);
  cursor:pointer;
}
.carousel .dot.active{background: var(--gold)}

/* Page layout */
.page-hero{
  padding:42px 0 28px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(10,11,13,.55);
}
.page-hero h1{margin:0; text-transform:uppercase; letter-spacing:.06em}
.page-hero p{margin:10px 0 0; color:var(--muted); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.thumb{
  border-radius:4px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.thumb img{width:100%; height:210px; object-fit:cover; transition: transform .25s ease}
.thumb:hover img{transform: scale(1.03)}

.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size:14px;
}
.footer a{color:var(--gold)}

/* Modal */
.modal-backdrop{position:fixed; inset:0; background: rgba(0,0,0,.72); display:none; align-items:center; justify-content:center; padding:18px; z-index:100}
.modal-backdrop.show{display:flex}
.modal{
  width:min(520px, 100%);
  background: rgba(17,19,23,.98);
  border:1px solid rgba(255,255,255,.10);
  border-radius:8px;
  box-shadow: var(--shadow);
  padding:18px;
}
.modal h3{margin:0 0 8px; letter-spacing:.04em}
.modal p{margin:0 0 14px; color:var(--muted); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;}
.modal-actions{display:flex; gap:10px; flex-wrap:wrap}
.modal .btn{min-width:160px; height:42px; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; font-size:15px; border-radius:6px}
.modal .btn-outline{border-color: rgba(255,255,255,.18)}
.modal .btn-primary{border-color: rgba(255,255,255,.12)}
.modal-close{margin-left:auto; background:transparent; color:#fff; border:0; font-size:22px; cursor:pointer}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .hero h1{font-size:42px}
  .hero .sub{font-size:22px}
  .cards{grid-template-columns:1fr}
  .grid{grid-template-columns: repeat(2,1fr)}
  .carousel img{height:320px}
}
@media (max-width: 560px){
  .brand .name{font-size:18px}
  .brand .loc{font-size:12px}
  .phone-cta{padding:8px 10px}
  .hero{min-height:520px}
  .hero h1{font-size:34px}
  .hero-actions{gap:10px}
  .btn{min-width:160px}
  .grid{grid-template-columns:1fr}
  .carousel img{height:260px}
}

.hero .kicker{
  margin:0 0 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
}

.trust .section-title{
  color:#000;
}
