:root{
  --bg:#050505;
  --panel:#0d0d0d;
  --panel-2:#15120d;
  --text:#fff8e9;
  --muted:#b6ad9c;
  --line:#332915;
  --gold:#d5a83b;
  --gold-2:#f4d374;
  --gold-3:#916118;
  --danger:#2b1605;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(213,168,59,.16), transparent 32rem),
    radial-gradient(circle at 0% 25%, rgba(213,168,59,.08), transparent 28rem),
    var(--bg);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:92px;
  padding:14px clamp(18px,4vw,64px);
  background:rgba(5,5,5,.78);
  border-bottom:1px solid rgba(213,168,59,.22);
  backdrop-filter:blur(18px);
}
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:22px;
  line-height:1.05;
}
.brand img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 26px rgba(213,168,59,.25);
}
.brand b{
  display:block;
  color:var(--gold-2);
  font-size:.76em;
  letter-spacing:.28em;
  font-weight:700;
}
.site-header nav{
  display:flex;
  gap:28px;
  color:#ddd3bf;
  font-size:14px;
  font-weight:700;
}
.site-header nav a:hover{color:var(--gold-2)}
.header-phone{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:54px;
  padding:0 22px;
  color:#fff8e9;
  font-size:22px;
  font-weight:900;
  letter-spacing:.01em;
  border:2px solid rgba(244,211,116,.72);
  border-radius:12px;
  background:linear-gradient(135deg, rgba(213,168,59,.12), rgba(255,255,255,.035));
  box-shadow:0 0 32px rgba(213,168,59,.16), inset 0 0 0 1px rgba(255,255,255,.06);
  white-space:nowrap;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.header-phone svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}
.header-phone:hover{
  color:#fff;
  border-color:var(--gold-2);
  box-shadow:0 0 42px rgba(213,168,59,.25), inset 0 0 0 1px rgba(255,255,255,.08);
  transform:translateY(-1px);
}

.hero{
  position:relative;
  min-height:820px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:44px;
  padding:88px clamp(18px,5vw,76px) 92px;
  overflow:hidden;
  text-align:center;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 24%, rgba(244,211,116,.18), transparent 24rem),
    radial-gradient(circle at 50% 74%, rgba(213,168,59,.12), transparent 28rem),
    linear-gradient(180deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.82) 48%, rgba(5,5,5,.98) 100%);
  pointer-events:none;
}
.hero-media{
  position:relative;
  z-index:1;
  width:min(96vw,1860px);
  order:1;
  overflow:hidden;
  border:1px solid rgba(213,168,59,.35);
  border-radius:28px;
  padding:10px;
  background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  box-shadow:0 40px 110px rgba(0,0,0,.72),0 0 70px rgba(213,168,59,.12);
}
.hero-media picture,
.hero-media img{
  width:100%;
}
.hero-media picture{
  display:block;
}
.hero-media img{
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center;
  border-radius:20px;
}
@media(min-width:721px){
  .hero-media img{
    aspect-ratio:3/1;
  }
}
.hero-content{
  position:relative;
  z-index:2;
  order:2;
  max-width:1120px;
  margin:0 auto;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--gold-2);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  font-weight:900;
}
h1,h2{
  margin:0;
  letter-spacing:-.065em;
  line-height:.96;
}
h1{
  max-width:1120px;
  font-size:clamp(48px,6.8vw,104px);
}
h2{
  font-size:clamp(38px,4.4vw,64px);
}
.hero-lead,.section-lead{
  color:#ded4c0;
  font-size:18px;
  line-height:1.7;
}
.hero-lead{
  max-width:610px;
  margin:24px auto 0;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:15px 24px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  transition:.18s ease;
}
.btn.primary{
  color:#0b0802;
  background:linear-gradient(135deg,var(--gold-2),var(--gold),var(--gold-3));
  box-shadow:0 18px 40px rgba(213,168,59,.22);
}
.btn.secondary{
  color:var(--gold-2);
  background:rgba(255,255,255,.04);
  border-color:rgba(213,168,59,.42);
}
.btn:hover{transform:translateY(-2px)}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:34px;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}
.hero-stats div{
  padding:18px;
  border:1px solid rgba(213,168,59,.25);
  border-radius:18px;
  background:rgba(11,11,11,.72);
}
.hero-stats strong{
  display:block;
  color:var(--gold-2);
  font-size:24px;
  line-height:1;
}
.hero-stats span{
  display:block;
  margin-top:7px;
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}

.quick-quote{
  padding:0 clamp(18px,5vw,76px) 72px;
}
.quote-card{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:34px;
  padding:34px;
  border:1px solid rgba(213,168,59,.35);
  border-radius:30px;
  background:
    linear-gradient(145deg,rgba(28,24,16,.96),rgba(11,11,11,.98)),
    var(--panel);
  box-shadow:0 30px 90px rgba(0,0,0,.52);
}
.quote-intro{
  padding:18px 8px;
}
.quote-intro h2{
  font-size:clamp(34px,3.6vw,52px);
}
.quote-intro p:not(.eyebrow){
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}
form{
  display:grid;
  gap:18px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.form-grid .span-two{
  grid-column:1 / -1;
}
label{
  display:grid;
  gap:8px;
  color:#e9ddc8;
  font-size:13px;
  font-weight:800;
}
input,select{
  width:100%;
  min-height:52px;
  border:1px solid rgba(213,168,59,.28);
  border-radius:14px;
  padding:0 14px;
  color:var(--text);
  background:#090909;
  font:600 15px Inter,Arial,sans-serif;
  outline:none;
}
input:focus,select:focus{
  border-color:var(--gold-2);
  box-shadow:0 0 0 4px rgba(213,168,59,.12);
}
form small{
  color:#968d7f;
  font-size:11px;
}
.success{
  display:none;
  padding:13px 14px;
  border-radius:14px;
  color:#ffe5a0;
  background:rgba(213,168,59,.12);
  border:1px solid rgba(213,168,59,.3);
}
.success.show{display:block}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:1280px;
  margin:0 auto;
  padding:0 clamp(18px,5vw,76px) 82px;
  gap:12px;
}
.trust-strip div{
  min-height:172px;
  padding:24px;
  border-radius:22px;
  background:linear-gradient(145deg,#141414,#090909);
  border:1px solid rgba(213,168,59,.22);
}
.trust-strip span{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
}
.trust-strip b{
  display:block;
  margin-top:24px;
  font-size:18px;
}
.trust-strip p{
  margin:9px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.section{
  max-width:1180px;
  margin:0 auto;
  padding:92px 28px;
}
.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:start;
  border-top:1px solid rgba(213,168,59,.18);
}
.section-lead{
  color:var(--muted);
}
.price-list{
  display:grid;
  gap:14px;
}
.price-list article{
  padding:24px;
  border-radius:22px;
  background:linear-gradient(145deg,#151515,#0b0b0b);
  border:1px solid rgba(213,168,59,.24);
}
.price-list span{
  color:#fff;
  font-weight:900;
}
.price-list strong{
  float:right;
  color:var(--gold-2);
  text-transform:uppercase;
  letter-spacing:.07em;
}
.price-list p{
  clear:both;
  margin:13px 0 0;
  color:var(--muted);
  line-height:1.6;
}
.section-head{
  max-width:790px;
}
.section-head.wide{
  max-width:1080px;
}
.why-fortis{
  max-width:1280px;
  border-top:1px solid rgba(213,168,59,.18);
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:48px;
}
.why-grid article{
  min-height:270px;
  padding:34px;
  border-radius:26px;
  background:
    radial-gradient(circle at 88% 12%,rgba(213,168,59,.13),transparent 12rem),
    linear-gradient(145deg,#1a1a1a,#101010);
  border:1px solid rgba(213,168,59,.22);
  box-shadow:0 20px 55px rgba(0,0,0,.24);
}
.why-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#0b0802;
  font-size:24px;
  font-weight:900;
  background:linear-gradient(135deg,var(--gold-2),var(--gold),var(--gold-3));
  box-shadow:0 15px 34px rgba(213,168,59,.18);
}
.why-grid h3{
  margin:30px 0 12px;
  font-size:24px;
}
.why-grid p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.work-gallery{
  max-width:1280px;
  padding-top:34px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:40px;
}
.gallery-grid figure{
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:26px;
  background:#111;
  border:1px solid rgba(213,168,59,.25);
  box-shadow:0 24px 70px rgba(0,0,0,.3);
  aspect-ratio:3/4;
}
.gallery-grid figure:after{
  content:none;
}
.gallery-grid a{
  display:block;
  height:100%;
}
.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .35s ease;
}
.gallery-grid img.work-photo-focus-top{
  object-position:50% 18%;
}
.gallery-grid figure:hover img{
  transform:scale(1.035);
}
.work-grid{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:28px;
  margin-top:38px;
}
.work-photo{
  margin:0;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(213,168,59,.35);
  background:#111;
}
.work-photo img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
}
.benefits{
  display:grid;
  gap:16px;
}
.benefits article{
  padding:34px;
  border-radius:28px;
  background:
    radial-gradient(circle at 88% 15%,rgba(213,168,59,.16),transparent 16rem),
    linear-gradient(145deg,#171717,#0b0b0b);
  border:1px solid rgba(213,168,59,.24);
}
.icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#0b0802;
  font-weight:900;
  background:linear-gradient(135deg,var(--gold-2),var(--gold-3));
}
.benefits h3{
  margin:22px 0 8px;
  font-size:24px;
}
.benefits p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.service-area{
  padding-top:30px;
}
.area-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  margin-top:24px;
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(213,168,59,.26);
  background:linear-gradient(135deg,rgba(213,168,59,.12),rgba(255,255,255,.025));
}
.area-card p{
  margin:0;
  color:#ddd2bd;
  line-height:1.65;
  max-width:720px;
}
.faq{
  display:block;
  max-width:1280px;
}
.faq h2{
  max-width:1100px;
}
.faq h2:after{
  content:" Answered";
  color:var(--gold-2);
}
.faq-list{
  margin-top:38px;
  border-top:0;
  display:grid;
  gap:14px;
}
details{
  border:1px solid rgba(213,168,59,.18);
  border-radius:18px;
  padding:0;
  background:#20252a;
  overflow:hidden;
}
summary{
  cursor:pointer;
  font-weight:900;
  font-size:18px;
  list-style:none;
  padding:26px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
summary::-webkit-details-marker{display:none}
summary:after{
  content:"+";
  color:var(--gold-2);
  font-size:34px;
  line-height:1;
}
details[open] summary:after{
  content:"–";
}
details p{
  margin:0;
  padding:0 30px 26px;
  color:#d0c7b7;
  line-height:1.7;
}
.footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:36px clamp(18px,5vw,76px) 48px;
  border-top:1px solid rgba(213,168,59,.22);
  background:#030303;
  color:var(--muted);
}
.footer p{
  margin:7px 0 0 60px;
  font-size:13px;
}
.footer>a{
  color:var(--gold-2);
  font-size:24px;
  font-weight:900;
}
.sticky-call{
  display:none;
}

@media(max-width:980px){
  .quote-card,.split,.work-grid{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:auto;
    padding-top:56px;
  }
  .why-grid{
    grid-template-columns:1fr 1fr;
  }
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }
  .trust-strip{
    grid-template-columns:1fr 1fr;
  }
  .work-photo img{
    min-height:auto;
    max-height:760px;
  }
  .area-card{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media(max-width:720px){
  body{padding-bottom:76px}
  .site-header{
    min-height:132px;
    padding:12px 14px 14px;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
  }
  .site-header .brand{
    width:100%;
    justify-content:center;
    text-align:left;
    order:1;
  }
  .brand img{
    width:58px;
    height:58px;
  }
  .brand span{
    font-size:16px;
  }
  .header-phone{
    display:none;
  }
  .site-header nav{
    order:2;
    width:100%;
    display:flex;
    justify-content:center;
    gap:0;
    overflow-x:auto;
    padding:2px 0 4px;
    color:#ddd3bf;
    font-size:13px;
    font-weight:800;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .site-header nav::-webkit-scrollbar{
    display:none;
  }
  .site-header nav a{
    flex:0 0 auto;
    padding:9px 10px;
    white-space:nowrap;
  }
  .site-header nav a:hover{
    color:var(--gold-2);
  }
  .hero{
    padding:20px 14px 52px;
    gap:22px;
  }
  .hero-media{
    width:calc(100vw - 28px);
    padding:6px;
    border-radius:24px;
    box-shadow:0 24px 70px rgba(0,0,0,.64),0 0 42px rgba(213,168,59,.12);
  }
  .hero-media img{
    aspect-ratio:1/1;
    border-radius:18px;
    object-fit:cover;
    object-position:center;
  }
  .hero-content{
    max-width:100%;
  }
  h1{
    font-size:42px;
    letter-spacing:-.055em;
  }
  h2{
    font-size:36px;
    letter-spacing:-.052em;
  }
  .hero-lead{
    font-size:16px;
    line-height:1.55;
    margin-top:18px;
  }
  .hero-actions .btn{
    width:100%;
  }
  .hero-stats{
    gap:8px;
    margin-top:24px;
  }
  .hero-stats div{
    padding:15px;
  }
  .hero-stats,.trust-strip,.form-grid{
    grid-template-columns:1fr;
  }
  .form-grid .span-two{
    grid-column:auto;
  }
  .why-grid{
    grid-template-columns:1fr;
  }
  .why-grid article{
    min-height:0;
    padding:26px;
  }
  .gallery-grid{
    grid-template-columns:1fr;
  }
  .gallery-grid figure{
    aspect-ratio:auto;
  }
  .gallery-grid img{
    height:auto;
    object-fit:contain;
  }
  summary{
    padding:22px 20px;
    font-size:16px;
  }
  details p{
    padding:0 20px 22px;
  }
  .quick-quote{
    padding:0 16px 58px;
  }
  .quote-card{
    padding:22px;
    border-radius:24px;
  }
  .trust-strip{
    padding:0 16px 56px;
  }
  .section{
    padding:64px 16px;
  }
  .price-list strong{
    float:none;
    display:block;
    margin-top:7px;
  }
  .benefits article{
    padding:24px;
  }
  .footer{
    align-items:flex-start;
    flex-direction:column;
    padding-bottom:104px;
  }
  .footer p{
    margin-left:50px;
  }
  .sticky-call{
    display:flex;
    position:fixed;
    z-index:40;
    left:14px;
    right:14px;
    bottom:12px;
    justify-content:center;
    align-items:center;
    min-height:54px;
    border-radius:999px;
    color:#090702;
    background:linear-gradient(135deg,var(--gold-2),var(--gold),var(--gold-3));
    font-weight:900;
    box-shadow:0 18px 50px rgba(0,0,0,.45);
  }
}
