:root{
  --navy:#061223;
  --navy-2:#0b1f3a;
  --navy-3:#123b66;
  --red:#b50a17;
  --red-2:#f06423;
  --gold:#f6a21a;
  --copper:#b86b32;
  --copper-dark:#6f351b;
  --copper-soft:#f4c091;
  --white:#ffffff;
  --bg:#f4f6f2;
  --text:#202833;
  --muted:#66717e;
  --border:rgba(6,18,35,.14);
  --shadow:0 20px 48px rgba(6,18,35,.16);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px, calc(100% - 40px)); margin:0 auto}

.site-intro{
  position:fixed;
  inset:0;
  z-index:999;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:
    linear-gradient(105deg, rgba(2,8,20,.98), rgba(6,18,35,.96) 52%, rgba(111,53,27,.82)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 24px);
  color:#fff;
  opacity:1;
  visibility:visible;
  transition:opacity .65s ease, visibility .65s ease, transform .65s ease;
}
.site-intro::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(246,162,26,.95) 0 9px, transparent 9px 100%),
    radial-gradient(circle at 72% 22%, rgba(246,162,26,.22), transparent 28%),
    radial-gradient(circle at 28% 76%, rgba(240,100,35,.2), transparent 32%);
  pointer-events:none;
}
.site-intro::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-160px;
  width:520px;
  height:520px;
  background:linear-gradient(135deg, rgba(184,107,50,.9), rgba(240,100,35,.78));
  clip-path:polygon(28% 0, 100% 0, 72% 100%, 0 100%);
  opacity:.8;
}
.intro-panel{
  position:relative;
  z-index:2;
  display:grid;
  justify-items:center;
  gap:14px;
  padding:34px;
  animation:introRise .9s ease both;
}
.intro-panel img{
  width:min(420px, 78vw);
  background:#fff;
  padding:16px 20px;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}
.intro-panel p{
  margin:10px 0 0;
  color:var(--gold);
  font-size:clamp(20px, 4vw, 34px);
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:2.4px;
  text-align:center;
}
.intro-panel span{
  color:rgba(255,255,255,.82);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.4px;
  text-align:center;
}
.site-intro.intro-hide{
  opacity:0;
  visibility:hidden;
  transform:scale(1.02);
  pointer-events:none;
}
@keyframes introRise{
  from{opacity:0;transform:translateY(18px) scale(.98)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

.topbar{
  background:#020814;
  color:#fff;
  font-size:14px;
  border-bottom:4px solid var(--red-2);
}
.topbar-inner{
  min-height:44px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto minmax(0, 1fr);
  align-items:center;
  gap:16px;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}
.topbar-brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:17px;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:1.9px;
  line-height:1;
  white-space:nowrap;
  text-shadow:0 0 18px rgba(246,162,26,.22);
}
.topbar-left a{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.7px;
  white-space:nowrap;
}
.topbar-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
}
.top-estimate{
  color:#111;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.8px;
  padding:9px 14px;
  background:var(--gold);
  border-radius:2px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:#fff;
  border-bottom:1px solid rgba(6,18,35,.12);
  box-shadow:0 10px 24px rgba(6,18,35,.08);
}
.nav{
  width:min(1680px, calc(100% - 56px));
  min-height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:14px;
  min-width:310px;
}
.brand img{
  height:70px;
  width:auto;
}
.brand-copy{
  display:grid;
  gap:2px;
  color:var(--navy);
  line-height:1.05;
  text-transform:uppercase;
  white-space:nowrap;
}
.brand-copy strong{
  font-size:15px;
  letter-spacing:.45px;
}
.brand-copy span{
  font-size:12px;
  font-weight:900;
  letter-spacing:.7px;
}
.brand-copy .brand-phone{
  color:var(--red-2);
  font-size:18px;
  letter-spacing:.6px;
  line-height:1.05;
}
.nav-links{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:nowrap;
  font-weight:800;
  color:var(--navy);
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.22px;
  white-space:nowrap;
}
.nav-links > *{
  flex:0 0 auto;
}
.nav-links a:not(.btn),.dropdown-trigger{
  padding:18px 0;
  border-bottom:3px solid transparent;
}
.nav-links a:not(.btn):hover,.dropdown-trigger:hover{
  color:var(--red);
  border-bottom-color:var(--gold);
}
.nav-dropdown{
  position:relative;
}
.dropdown-trigger{
  display:inline-flex;
  align-items:center;
  gap:7px;
  border-top:0;
  border-left:0;
  border-right:0;
  background:transparent;
  color:inherit;
  font:inherit;
  text-transform:inherit;
  letter-spacing:inherit;
  cursor:pointer;
}
.dropdown-trigger span{
  color:var(--red-2);
  font-size:12px;
  line-height:1;
}
.dropdown-menu{
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  min-width:245px;
  display:grid;
  gap:0;
  padding:10px 0;
  background:#fff;
  border:1px solid var(--border);
  border-top:5px solid var(--gold);
  box-shadow:0 22px 46px rgba(6,18,35,.18);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
  z-index:60;
}
.dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-19px;
  height:18px;
}
.dropdown-menu a{
  display:block;
  padding:12px 18px;
  color:var(--navy);
  border-bottom:0;
  font-size:13px;
  line-height:1.2;
  text-transform:none;
  letter-spacing:0;
  font-weight:800;
}
.dropdown-menu a:hover{
  background:var(--bg);
  color:var(--red);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.nav-toggle{
  display:none;
  border:0;
  background:transparent;
  padding:8px;
}
.nav-toggle span{
  display:block;
  width:28px;
  height:3px;
  margin:5px 0;
  background:var(--navy);
  border-radius:99px;
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(105deg, rgba(6,18,35,.98) 0%, rgba(6,18,35,.95) 48%, rgba(10,31,58,.86) 64%, rgba(10,31,58,.42) 100%),
    linear-gradient(135deg, #102a48 0%, #081324 74%, #dfe5ea 74%, #f8faf8 100%);
  color:#fff;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(246,162,26,.9) 0 8px, transparent 8px 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.055) 0 1px, transparent 1px 22px);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  right:-130px;
  bottom:-120px;
  width:540px;
  height:540px;
  background:linear-gradient(135deg, rgba(240,100,35,.9), rgba(181,10,23,.88));
  clip-path:polygon(28% 0, 100% 0, 72% 100%, 0 100%);
  opacity:.92;
}
.hero-watermark{
  position:absolute;
  left:1%;
  top:9%;
  width:760px;
  opacity:.045;
  z-index:1;
  filter:grayscale(24%) brightness(1.3);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:540px;
  display:grid;
  grid-template-columns:1.22fr .78fr;
  gap:42px;
  align-items:start;
  padding:34px 0 48px;
}
.eyebrow,.section-label,.mini-label{
  margin:0 0 12px;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.8px;
}
.eyebrow,.mini-label{color:var(--gold)}
.section-label{color:var(--red-2)}
.section-label.light{color:#fff}

.mini-logo{
  position:absolute;
  left:-76px;
  top:-82px;
  width:min(660px, 82vw);
  opacity:.1;
  padding:0;
  background:transparent;
  box-shadow:none;
  pointer-events:none;
  z-index:-1;
  filter:grayscale(16%) brightness(1.42);
}
.mini-logo img{
  max-height:none;
  width:auto;
}
.hero-copy{
  position:relative;
  isolation:isolate;
  margin-top:8px;
}
.hero-copy::before{
  content:"";
  position:absolute;
  inset:-54px -70px -52px -58px;
  background:
    linear-gradient(90deg, rgba(6,18,35,.86), rgba(6,18,35,.64) 58%, rgba(6,18,35,.18)),
    linear-gradient(180deg, rgba(6,18,35,.32), rgba(6,18,35,.08));
  z-index:-2;
  pointer-events:none;
}
.hero h1{
  margin:0;
  font-size:clamp(56px, 6.4vw, 92px);
  line-height:.92;
  letter-spacing:0;
  max-width:960px;
  text-transform:uppercase;
}
.lead{
  margin:24px 0 0;
  max-width:760px;
  font-size:22px;
  line-height:1.55;
  color:rgba(255,255,255,.88);
}
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.trust-strip span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 11px;
  border:1px solid rgba(246,162,26,.34);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.9px;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.hero-points{
  list-style:none;
  padding:0;
  margin:28px 0 0;
  display:grid;
  gap:10px;
}
.hero-points li{
  position:relative;
  padding-left:26px;
  color:rgba(255,255,255,.95);
  font-weight:700;
}
.hero-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:13px 22px;
  border-radius:2px;
  border:2px solid var(--red-2);
  background:linear-gradient(135deg, var(--red-2), var(--copper));
  color:#fff;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.6px;
  box-shadow:0 14px 30px rgba(181,10,23,.26);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(181,10,23,.32);
}
.btn-secondary{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.75);
  box-shadow:none;
}
.btn-nav{min-height:58px;padding:15px 22px}
.btn-full{width:100%}
.btn-light{
  background:#fff;
  border-color:#fff;
  color:var(--navy);
  box-shadow:none;
}
.btn-outline-light{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.8);
  box-shadow:none;
}

.estimate-card{
  position:relative;
  z-index:4;
  background:linear-gradient(180deg, #fff 0%, #fff 78%, #fff7f0 100%);
  color:var(--text);
  padding:0 22px 22px;
  border-radius:4px;
  box-shadow:var(--shadow);
  border-top:8px solid var(--copper);
  overflow:hidden;
}
.estimate-card::before{
  content:"Fast Roof Response";
  display:block;
  margin:0 -22px 18px;
  padding:10px 22px;
  background:linear-gradient(90deg, var(--navy), var(--navy-3));
  color:#fff;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.4px;
}
.estimate-logo{
  display:flex;
  justify-content:center;
  margin-bottom:8px;
}
.estimate-logo img{
  max-height:66px;
  width:auto;
}
.estimate-card h2{
  margin:0 0 12px;
  color:var(--navy);
  font-size:28px;
  line-height:1.05;
}
.estimate-card form{
  display:grid;
  gap:10px;
}
.form-honeypot{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.estimate-card label{
  display:grid;
  gap:8px;
  font-weight:700;
  color:var(--navy);
}
input,select,textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:2px;
  padding:11px 12px;
  font:inherit;
  color:var(--text);
  background:#f8fafc;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--copper);
  box-shadow:0 0 0 4px rgba(184,107,50,.16);
}
.disclaimer{
  margin:0;
  font-size:12px;
  color:var(--muted);
  text-align:center;
}

.logo-showcase{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.logo-showcase-inner{
  display:flex;
  justify-content:center;
  padding:18px 0;
}
.logo-showcase-inner img{
  max-height:92px;
  width:auto;
}

.section{padding:92px 0}
.section h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:0;
}
.section-intro{
  margin:14px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:18px;
}
.text-link{
  color:var(--red-2);
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:3px;
}
.text-link:hover{
  color:var(--red);
}

.services,.gallery-section,.contact-section{background:var(--bg)}
.video-section,.advertising-section{background:#fff}
.services{
  position:relative;
}
.services::before{
  content:"";
  display:block;
  height:8px;
  width:100%;
  background:linear-gradient(90deg, var(--gold), var(--copper), var(--red-2), var(--navy-3));
  position:absolute;
  top:0;
  left:0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:34px;
}
.home-service-groups{
  display:grid;
  gap:44px;
  margin-top:36px;
}
.home-service-group .cards{
  margin-top:18px;
}
.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:4px;
  padding:0 0 28px;
  box-shadow:0 14px 30px rgba(3,16,44,.06);
  border-top:5px solid var(--red-2);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 42px rgba(6,18,35,.12);
}
.featured-work-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  margin-top:34px;
}
.featured-work-card{
  position:relative;
  min-height:390px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
  border-radius:4px;
  background:var(--navy);
  color:#fff;
  box-shadow:0 18px 38px rgba(6,18,35,.16);
  border:1px solid rgba(6,18,35,.14);
  transition:transform .2s ease, box-shadow .2s ease;
}
.featured-work-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease, filter .28s ease;
}
.featured-work-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(6,18,35,.02) 0%, rgba(6,18,35,.22) 42%, rgba(6,18,35,.9) 100%),
    linear-gradient(90deg, rgba(184,107,50,.68) 0 7px, transparent 7px);
}
.featured-work-card span,
.featured-work-card h3{
  position:relative;
  z-index:1;
  margin-left:24px;
  margin-right:24px;
}
.featured-work-card span{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.4px;
}
.featured-work-card h3{
  margin-top:8px;
  margin-bottom:24px;
  font-size:32px;
  line-height:1.02;
  color:#fff;
}
.featured-work-card:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 54px rgba(6,18,35,.24);
}
.featured-work-card:hover img{
  transform:scale(1.045);
  filter:brightness(1.06);
}
.icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:2px;
  background:var(--navy);
  color:var(--gold);
  font-size:26px;
  font-weight:900;
}
.service-card img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  object-position:center;
  border-bottom:1px solid var(--border);
}
.service-card h3,.feature-box h3,.contact-card h3,.video-placeholder h3,.ad-card h3{
  margin:0 0 10px;
  color:var(--navy);
}
.service-card h3{
  padding:24px 28px 0;
}
.service-card p,.feature-box p,.contact-card p,.video-placeholder p,.ad-card p{
  margin:0;
  color:var(--muted);
}
.service-card p{
  padding:0 28px;
}

.media-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  margin-top:34px;
  width:100%;
  justify-items:stretch;
}
.gallery-section .container{
  width:min(1560px, calc(100% - 32px));
}
.gallery-section .section-label,
.gallery-section h2,
.gallery-section .section-intro{
  max-width:1180px;
}
.media-placeholder{
  min-height:245px;
  border-radius:4px;
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
  background:
    linear-gradient(180deg, rgba(3,16,44,.1), rgba(3,16,44,.88)),
    repeating-linear-gradient(45deg, #15314e 0 18px, #071527 18px 36px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 32px rgba(3,16,44,.16);
}
.media-placeholder span{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.6px;
}
.media-placeholder strong{
  display:block;
  font-size:24px;
  margin-top:6px;
}
.media-placeholder p{
  margin:8px 0 0;
  color:rgba(255,255,255,.78);
}
.media-photo{
  min-height:300px;
  border-radius:4px;
  overflow:hidden;
  position:relative;
  color:#fff;
  box-shadow:0 14px 32px rgba(3,16,44,.16);
  background:var(--navy);
}
.media-photo img{
  width:100%;
  height:100%;
  min-height:300px;
  object-fit:cover;
}
.media-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(3,16,44,.08), rgba(3,16,44,.86));
}
.media-photo div{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:1;
}
.media-photo span{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.6px;
}
.media-photo strong{
  display:block;
  font-size:24px;
  line-height:1.1;
  margin-top:6px;
}
.media-gallery-clean{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:0;
}
.media-category-stack{
  display:grid;
  gap:38px;
}
.media-category h2{
  margin:0 0 16px;
  color:var(--navy);
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.05;
}
.media-gallery-clean .media-photo{
  aspect-ratio:4 / 3;
  min-height:0;
  border:1px solid rgba(6,18,35,.1);
  box-shadow:0 12px 26px rgba(6,18,35,.12);
}
.media-gallery-clean .media-photo img{
  width:100%;
  height:100%;
  min-height:0;
  transition:transform .22s ease, filter .22s ease;
}
.media-gallery-clean .media-photo::after{
  display:none;
}
.media-gallery-clean .media-photo:hover img{
  transform:scale(1.035);
  filter:brightness(1.05);
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:34px;
}
.video-placeholder{
  min-height:290px;
  border-radius:4px;
  padding:28px;
  background:
    linear-gradient(145deg, rgba(6,18,35,.96), rgba(18,59,102,.92)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 22px);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  box-shadow:var(--shadow);
}
.video-placeholder h3{color:#fff}
.video-placeholder p{color:rgba(255,255,255,.76)}
.play-button{
  width:72px;
  height:72px;
  border-radius:2px;
  display:grid;
  place-items:center;
  background:var(--red-2);
  color:#fff;
  font-size:28px;
  box-shadow:0 14px 26px rgba(181,10,23,.3);
}

.ad-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:18px;
  margin-top:34px;
}
.ad-card{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:4px;
  padding:24px;
}
.featured-ad{
  background:
    linear-gradient(145deg, rgba(6,18,35,.98), rgba(18,59,102,.94)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 22px);
  color:#fff;
  border-top:8px solid var(--gold);
}
.featured-ad h3{color:#fff;font-size:30px}
.featured-ad p{color:rgba(255,255,255,.78)}
.ad-tag{
  color:var(--red-2);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.4px;
}
.featured-ad .ad-tag{color:var(--gold)}

.cta-band{
  background:
    linear-gradient(135deg, rgba(6,18,35,.98), rgba(11,31,58,.96)),
    linear-gradient(90deg, var(--gold) 0 8px, transparent 8px);
  color:#fff;
  padding:78px 0;
  border-top:8px solid var(--red-2);
}
.cta-band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cta-band h2{
  margin:0;
  color:#fff;
  font-size:clamp(34px,4vw,50px);
  line-height:1.05;
}
.cta-band p{
  margin:12px 0 0;
  color:rgba(255,255,255,.78);
  max-width:680px;
}
.cta-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  min-width:max-content;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:4px;
  padding:28px;
  border-top:6px solid var(--gold);
}
.contact-card:only-child{
  grid-column:1 / -1;
}
.contact-logo{
  max-width:220px;
  margin-bottom:16px;
}
.contact-list,.publish-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}
.contact-list a{
  color:var(--red);
  font-weight:800;
}

.footer{
  background:#020814;
  color:rgba(255,255,255,.76);
  padding:26px 0;
  border-top:6px solid var(--red-2);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.footer-logo{
  height:62px;
  width:auto;
  background:#fff;
  padding:6px 10px;
  border-radius:2px;
}
.footer-copy p{margin:4px 0}


.prestorm-section{
  background:#fff;
}
.prestorm-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:center;
}
.prestorm-copy{
  max-width:980px;
}
.prestorm-visual{
  border-radius:4px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:var(--navy);
}
.prestorm-visual img{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
}
.prestorm-card{
  min-height:430px;
  border-radius:4px;
  padding:34px;
  background:
    linear-gradient(145deg, rgba(6,18,35,.97), rgba(18,59,102,.91)),
    linear-gradient(90deg, rgba(246,162,26,.9) 0 8px, transparent 8px);
  color:#fff;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  border-top:8px solid var(--gold);
}
.prestorm-card::after{
  content:"";
  position:absolute;
  right:-110px;
  bottom:-120px;
  width:360px;
  height:360px;
  background:linear-gradient(135deg, rgba(240,100,35,.9), rgba(181,10,23,.78));
  clip-path:polygon(28% 0, 100% 0, 72% 100%, 0 100%);
}
.prestorm-card h3{
  position:relative;
  z-index:2;
  margin:16px 0 12px;
  color:#fff;
  font-size:36px;
  line-height:1.05;
}
.prestorm-card p{
  position:relative;
  z-index:2;
  margin:0;
  color:rgba(255,255,255,.78);
}
.prestorm-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.btn-secondary-dark{
  background:transparent;
  color:var(--navy);
  border-color:var(--navy);
  box-shadow:none;
}
.prestorm-mini-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:28px;
}
.prestorm-mini-grid span{
  display:grid;
  place-items:center;
  min-height:78px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:2px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.7px;
}
.fortified-photo-row{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:24px;
}
.fortified-card-photos{
  position:relative;
  z-index:2;
  grid-template-columns:1fr;
}
.fortified-photo-row article{
  position:relative;
  min-height:170px;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 14px 28px rgba(6,18,35,.12);
  background:var(--navy);
}
.fortified-photo-row img{
  width:100%;
  height:100%;
  min-height:170px;
  object-fit:cover;
}
.fortified-card-photos article{
  min-height:132px;
  border:1px solid rgba(255,255,255,.16);
}
.fortified-card-photos img{
  min-height:132px;
}
.fortified-solo-image{
  position:relative;
  z-index:2;
  width:100%;
  min-height:340px;
  max-height:380px;
  object-fit:cover;
  border-radius:4px;
  margin-top:20px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 14px 28px rgba(6,18,35,.22);
}
.fortified-photo-row span{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:7px 10px;
  background:rgba(6,18,35,.86);
  color:#fff;
  border-left:4px solid var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.detail-hero{
  background:
    linear-gradient(105deg, rgba(6,18,35,.98) 0%, rgba(6,18,35,.94) 58%, rgba(18,59,102,.8) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.055) 0 1px, transparent 1px 22px);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.detail-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(246,162,26,.9) 0 8px, transparent 8px 100%);
  pointer-events:none;
}
.detail-hero-inner{
  min-height:430px;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:34px;
  align-items:center;
  padding:70px 0;
  position:relative;
  z-index:1;
}
.detail-hero h1{
  margin:0;
  font-size:clamp(44px, 6vw, 72px);
  line-height:.98;
  text-transform:uppercase;
}
.detail-hero-card{
  background:#fff;
  color:var(--navy);
  border-top:8px solid var(--gold);
  padding:28px;
  box-shadow:var(--shadow);
}
.detail-hero-card img{
  max-height:150px;
  width:auto;
  margin:0 auto 20px;
}
.detail-hero-card p{
  margin:0;
  text-align:center;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.7px;
}
.detail-section{
  background:var(--bg);
}
.detail-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
}
.detail-grid.single{
  grid-template-columns:1fr;
}
.detail-card{
  background:#fff;
  border:1px solid var(--border);
  border-top:6px solid var(--gold);
  border-radius:4px;
  padding:30px;
  box-shadow:0 14px 30px rgba(6,18,35,.07);
}
.detail-card h2{
  font-size:clamp(30px, 4vw, 46px);
}
.detail-card p{
  color:var(--muted);
  font-size:18px;
  margin:16px 0 0;
}
.detail-image{
  width:100%;
  max-height:460px;
  object-fit:cover;
  border-radius:4px;
  margin:22px 0 6px;
  border:1px solid var(--border);
}
.detail-list-card{
  border-top-color:var(--red-2);
}
.detail-photo-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:28px;
  width:100%;
  grid-column:1 / -1;
  justify-items:stretch;
}
.certification-logo-section{
  margin-top:28px;
}
.certification-logo-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}
.certification-logo-card{
  min-height:210px;
  background:#fff;
  border:1px solid var(--border);
  border-top:6px solid var(--red-2);
  border-radius:4px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 30px rgba(6,18,35,.07);
}
.certification-logo-card img{
  width:100%;
  max-width:460px;
  max-height:170px;
  object-fit:contain;
}
.color-options-section{
  margin-top:34px;
  background:#fff;
  border:1px solid var(--border);
  border-top:6px solid var(--red-2);
  border-radius:4px;
  padding:30px;
  box-shadow:0 14px 30px rgba(6,18,35,.07);
}
.color-section-heading h3{
  margin:0;
  color:var(--navy);
  font-size:clamp(30px, 4vw, 44px);
  line-height:1.05;
}
.color-section-heading p:last-child{
  margin:12px 0 0;
  color:var(--muted);
  max-width:760px;
}
.featured-color-group,.standard-color-group{
  margin-top:28px;
}
.featured-color-group h4,.standard-color-group h4{
  margin:0 0 16px;
  color:var(--navy);
  font-size:20px;
}
.color-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.featured-color-grid{
  grid-template-columns:repeat(4, 1fr);
}
.color-swatch{
  min-height:128px;
  border:1px solid var(--border);
  border-radius:4px;
  padding:12px;
  background:#f8fafc;
  display:grid;
  align-content:start;
  gap:10px;
  cursor:pointer;
  position:relative;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  will-change:transform;
}
.color-swatch-featured{
  border-top:5px solid var(--gold);
  background:#fff;
  box-shadow:0 12px 22px rgba(6,18,35,.08);
}
.color-swatch:hover,
.color-swatch:focus-within{
  transform:translateY(-7px) scale(1.025);
  border-color:rgba(181,10,23,.35);
  background:#fff;
  box-shadow:0 22px 34px rgba(6,18,35,.16);
  z-index:2;
}
.color-swatch:hover .swatch-chip,
.color-swatch:focus-within .swatch-chip{
  transform:scale(1.04);
  box-shadow:inset 0 12px 22px rgba(255,255,255,.24), inset 0 -12px 24px rgba(0,0,0,.14), 0 10px 18px rgba(6,18,35,.16);
}
.swatch-chip{
  display:block;
  width:100%;
  height:68px;
  border-radius:4px;
  background:var(--swatch-color);
  border:1px solid rgba(6,18,35,.18);
  box-shadow:inset 0 12px 22px rgba(255,255,255,.2), inset 0 -12px 24px rgba(0,0,0,.1);
  transition:transform .18s ease, box-shadow .18s ease;
}
.color-swatch strong{
  color:var(--navy);
  font-size:14px;
  line-height:1.2;
}
.service-groups{
  display:grid;
  gap:42px;
  margin-top:30px;
}
.service-group-heading{
  margin-bottom:18px;
}
.service-group-heading h3{
  margin:0;
  color:var(--navy);
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.05;
}
.service-tile-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.service-tile{
  min-height:230px;
  border-radius:4px;
  padding:24px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(6,18,35,.16);
  background:
    linear-gradient(180deg, rgba(6,18,35,.08), rgba(6,18,35,.9)),
    var(--service-image, linear-gradient(135deg, #183a5f, #071527)),
    repeating-linear-gradient(135deg, #183a5f 0 18px, #071527 18px 36px);
  background-size:cover;
  background-position:center;
  transition:transform .18s ease, box-shadow .18s ease;
}
.service-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(246,162,26,.9) 0 7px, transparent 7px),
    radial-gradient(circle at 85% 20%, rgba(240,100,35,.36), transparent 34%);
  pointer-events:none;
}
.service-tile:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 48px rgba(6,18,35,.22);
}
.service-tile span,.service-tile strong,.service-tile p{
  position:relative;
  z-index:1;
}
.service-tile span{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.4px;
}
.service-tile strong{
  display:block;
  margin-top:8px;
  font-size:28px;
  line-height:1.05;
}
.service-tile p{
  margin:10px 0 0;
  color:rgba(255,255,255,.8);
}

@media (max-width: 1080px){
  .nav{min-height:98px}
  .nav-links{gap:7px;font-size:9.5px}
  .brand{min-width:260px;gap:10px}
  .brand img{height:60px}
  .brand-copy strong{font-size:13px}
  .brand-copy span{font-size:10px}
  .brand-copy .brand-phone{font-size:15px}
  .topbar-inner{grid-template-columns:minmax(0, 1fr) auto minmax(0, 1fr)}
  .topbar-brand{font-size:15px;letter-spacing:1.2px}
  .topbar-right{gap:12px}
  .btn-nav{min-height:48px;padding:12px 14px}
}
@media (max-width: 980px){
  .nav-toggle{display:block}
  .nav-links{
    position:fixed;
    top:114px;
    left:20px;
    right:20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:20px;
    border-radius:4px;
    background:#fff;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
  }
  .menu-open .nav-links{display:flex}
  .nav-links a:not(.btn),.dropdown-trigger{
    width:100%;
    justify-content:space-between;
    padding:12px 0;
    text-align:left;
  }
  .nav-dropdown{
    width:100%;
  }
  .dropdown-menu{
    position:static;
    min-width:0;
    width:100%;
    margin:2px 0 8px;
    padding:6px 0;
    border-top:3px solid var(--gold);
    box-shadow:none;
    background:var(--bg);
    opacity:1;
    visibility:visible;
    transform:none;
  }
  .dropdown-menu::before{display:none}
  .dropdown-menu a{
    padding:10px 14px;
  }
  .hero-grid,.contact-grid,.prestorm-grid,.detail-hero-inner,.detail-grid,.fortified-photo-row{grid-template-columns:1fr}
  .cards,.media-grid,.video-grid,.service-tile-grid,.detail-photo-grid,.featured-work-grid,.color-grid,.featured-color-grid,.certification-logo-grid{grid-template-columns:repeat(2,1fr)}
  .ad-grid{grid-template-columns:repeat(2,1fr)}
  .hero-watermark{width:560px; top:10%; left:0; opacity:.04}
  .cta-band-inner{flex-direction:column;align-items:flex-start}
}
@media (max-width: 640px){
  .container{width:min(100% - 28px, 1180px)}
  .intro-panel{padding:24px}
  .intro-panel img{padding:12px 14px}
  .topbar{font-size:13px}
  .topbar-inner{grid-template-columns:1fr;justify-items:center;padding:8px 0}
  .topbar-left{justify-content:center;text-align:center;width:100%}
  .topbar-brand{font-size:16px;letter-spacing:1.4px}
  .topbar-right{gap:12px;flex-wrap:wrap;justify-content:center}
  .brand img{height:44px}
  .brand{min-width:0}
  .brand-copy{display:none}
  .hero-grid{min-height:auto;padding:42px 0}
  .mini-logo{
    display:block;
    width:520px;
    left:-150px;
    top:-80px;
    opacity:.08;
  }
  .hero-copy::before{inset:-38px -20px -32px -20px}
  .hero h1{font-size:clamp(38px, 11vw, 42px)}
  .lead{font-size:18px}
  .cta-buttons{min-width:0;width:100%}
  .hero-actions .btn,.cta-buttons .btn{width:100%}
  .cards,.media-grid,.video-grid,.ad-grid,.service-tile-grid,.detail-photo-grid,.featured-work-grid,.color-grid,.featured-color-grid,.certification-logo-grid{grid-template-columns:1fr}
  .featured-work-card{min-height:310px}
  .trust-strip span{width:100%;justify-content:center}
  .logo-showcase-inner img{max-height:96px}
  .hero-watermark{display:none}
  .footer-inner{flex-direction:column;align-items:flex-start}
}
