:root{
  --red:#e3202c;
  --bg:#07090c;
  --panel:#0d1116;
  --text:#f6f7f8;
  --muted:#a0a8b1;
  --line:#252b32;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
}
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5vw;
  transition:.35s ease;
}
.site-header.scrolled{
  background:rgba(7,9,12,.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.wordmark{
  color:#fff;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  line-height:.84;
}
.wordmark strong{
  font-family:Impact,Haettenschweiler,"Arial Narrow Bold","Arial Black",sans-serif;
  font-size:27px;
  letter-spacing:.03em;
}
.wordmark span{
  margin-top:7px;
  align-self:center;
  font-size:10px;
  letter-spacing:.32em;
  font-weight:900;
}
.phone{
  color:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  background:var(--red);
  padding:11px 14px;
}
.hero{
  position:relative;
  min-height:86vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-photo{
  position:absolute;
  inset:0;
  background:url('assets/hero-golden-hour.png') center 58%/cover no-repeat;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(6,8,10,.95) 0%,rgba(6,8,10,.79) 46%,rgba(6,8,10,.20) 100%),
    linear-gradient(0deg,#07090c 0%,rgba(7,9,12,.10) 38%,rgba(7,9,12,.02) 70%);
}
.hero-copy{
  position:relative;
  z-index:2;
  margin-left:6vw;
  width:min(820px,88vw);
  padding-top:52px;
}
.eyebrow{
  color:#d4d9de;
  font-size:10px;
  letter-spacing:.18em;
  font-weight:900;
}
.hero h1,.why h2,.contact h2{
  margin:22px 0;
  font-size:clamp(54px,8vw,108px);
  line-height:.86;
  letter-spacing:-.055em;
}
.hero h1 span,.why h2 span,.contact h2 span{
  color:var(--red);
}
.hero p,.why p,.contact p{
  max-width:650px;
  font-size:17px;
  line-height:1.65;
  color:#c8ced4;
}
.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:28px;
}
.actions a{
  text-decoration:none;
  padding:14px 18px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
}
.primary{background:var(--red);color:#fff}
.secondary{
  color:#fff;
  border:1px solid #6f7881;
  background:rgba(0,0,0,.2);
}
.benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#0a0d11;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.benefits article{
  padding:36px 6vw;
  border-right:1px solid var(--line);
}
.benefits article:last-child{border-right:none}
.benefits span{
  color:var(--red);
  font-size:10px;
  font-weight:900;
}
.benefits h2{
  margin:34px 0 8px;
  font-size:22px;
}
.benefits p{
  margin:0;
  color:#8f98a2;
  font-size:14px;
  line-height:1.5;
}
.why{
  min-height:560px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  background:#0b0f14;
}
.why-photo{
  background:url('assets/crew.jpg') center/cover no-repeat;
  filter:saturate(.78) brightness(.8);
}
.why-copy{
  padding:70px 6vw;
  align-self:center;
}
.why h2{
  font-size:clamp(42px,5.5vw,72px);
}
.why .eyebrow{color:var(--red)}
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  padding:80px 6vw;
  background:#11161c;
}
.contact h2{
  font-size:clamp(42px,5.5vw,72px);
}
.contact-links{
  align-self:center;
  border:1px solid #2b323a;
  padding:26px;
  background:#0a0e13;
}
.contact-links a{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size:clamp(19px,2vw,28px);
  font-weight:900;
  padding:18px 0;
  border-bottom:1px solid #2b323a;
}
.contact-links a:last-child{border-bottom:none}
.contact-links a:hover{color:var(--red)}
footer{
  display:flex;
  justify-content:space-between;
  padding:24px 6vw;
  background:#050608;
  border-top:1px solid #20252b;
  color:#747d86;
  font-size:9px;
  letter-spacing:.1em;
}
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.on{
  opacity:1;
  transform:none;
}
@media(max-width:800px){
  .benefits,.why,.contact{grid-template-columns:1fr}
  .benefits article{
    border-right:none;
    border-bottom:1px solid var(--line);
  }
  .why-photo{min-height:380px}
}
@media(max-width:560px){
  .site-header{height:64px;padding:0 4vw}
  .wordmark strong{font-size:22px}
  .wordmark span{font-size:8px}
  .phone{font-size:10px;padding:10px 11px}
  .hero{min-height:760px}
  .hero-copy{margin-left:5vw}
  .hero h1{font-size:59px}
  .hero p{font-size:16px}
  .benefits article{padding:30px 5vw}
  .why-copy{padding:60px 5vw}
  .contact{padding:60px 5vw}
  footer{flex-direction:column;gap:10px}
}
