/* ===== Tokens ===== */
:root{
  --black: #070707;
  --charcoal: #161615;
  --charcoal-2: #201f1e;
  --white: #FAFAF8;
  --off-white: #EDECE8;
  --red: #C8161C;
  --red-bright: #E8241C;
  --line: rgba(250,250,248,0.14);
  --line-dark: rgba(7,7,7,0.12);

  --font-head: "Oswald", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3{
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.01em;
}
p{ margin: 0 0 1em 0; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }

.section-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html{ scroll-behavior: auto; }
}

:focus-visible{
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.skip-link{
  position:absolute; left:-999px; top:0;
  background: var(--red); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 200;
}
.skip-link:focus{ left: 0.5rem; top: 0.5rem; }

/* ===== Header ===== */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(250,250,248,0.1);
}
.header-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo{
  display:flex; align-items:center; gap: 0.65rem;
  margin-right: auto;
  color: var(--white);
}
.logo-mark{ flex: none; }
.logo-text{
  font-family: var(--font-head);
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--white);
}
.logo-text span{ color: var(--red); }

.main-nav{ display:flex; gap: 2rem; }
.main-nav a{
  color: var(--off-white);
  font-size: 0.95rem;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover{ color: var(--white); border-color: var(--red); }

.header-phone{
  display:flex; align-items:center; gap:0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.phone-dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(200,22,28,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(200,22,28,0.55); }
  70%{ box-shadow: 0 0 0 8px rgba(200,22,28,0); }
  100%{ box-shadow: 0 0 0 0 rgba(200,22,28,0); }
}

.nav-toggle{
  display:none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span{
  display:block; height: 2px; width: 100%;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity: 0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid rgba(250,250,248,0.1);
}
.mobile-nav.is-open{ display:flex; }
.mobile-nav a{
  color: var(--off-white);
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(250,250,248,0.08);
}

/* ===== Hero ===== */
.hero{
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(250,250,248,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,250,248,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}
.hero-inner{
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.hero-kicker{
  color: var(--off-white);
  opacity: 0.65;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}
.hero-title{
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
}
.hero-title br + br{ display:none; }
.hero-lede{
  max-width: 42ch;
  color: var(--off-white);
  font-size: 1.08rem;
  margin-top: 1.3rem;
}
.hero-actions{
  display:flex; gap: 1rem; flex-wrap: wrap;
  margin: 1.8rem 0 2.2rem;
}
.btn{
  display:inline-block;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary{
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover{ background: var(--red-bright); border-color: var(--red-bright); }
.btn-ghost{
  color: var(--white);
  border-color: rgba(250,250,248,0.4);
}
.btn-ghost:hover{ border-color: var(--white); }
.btn-full{ width:100%; text-align:center; border: none; cursor:pointer; }

.hero-facts{
  display:flex; gap: 2.2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(250,250,248,0.15);
  padding-top: 1.4rem;
}
.hero-facts li{ display:flex; flex-direction: column; gap: 0.15rem; }
.hero-facts strong{ font-family: var(--font-head); color: var(--red); font-size: 1.1rem; }
.hero-facts span{ font-size: 0.85rem; color: var(--off-white); opacity: 0.75; }

/* Radar visual */
.hero-visual{
  display:flex; align-items:center; justify-content:center;
}
.radar{
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,22,28,0.06), transparent 70%);
}
.radar-ring{
  position:absolute; border-radius:50%;
  border: 1px solid rgba(250,250,248,0.18);
  inset: 0;
}
.radar-ring.r2{ inset: 16%; }
.radar-ring.r3{ inset: 32%; }
.radar-sweep{
  position:absolute; inset:0;
  border-radius:50%;
  background: conic-gradient(from 0deg, rgba(200,22,28,0.55), transparent 32%);
  animation: sweep 4s linear infinite;
}
@keyframes sweep{ to{ transform: rotate(360deg); } }
.radar-dot{
  position:absolute;
  width:8px; height:8px; border-radius:50%;
  background: var(--red);
  box-shadow: 0 0 10px 2px rgba(200,22,28,0.7);
}
.radar-dot.d1{ top: 28%; left: 62%; }
.radar-dot.d2{ top: 60%; left: 30%; }
.radar-dot.d3{ top: 68%; left: 70%; }

/* ===== About ===== */
.about{ background: var(--white); }
.about-intro{ max-width: 68ch; }
.about-intro h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

.about-pillars{
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}
.pillar-mark{
  display:block;
  font-family: var(--font-head);
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.pillar h3{ font-size: 1.3rem; margin-bottom: 0.5rem; }
.pillar p{ color: #4a4a48; font-size: 0.96rem; max-width: 34ch; }

.about-scope{
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}
.scope-item h4{
  font-family: var(--font-head);
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.scope-item p{ color: #4a4a48; font-size: 0.95rem; margin-bottom: 0; max-width: 32ch; }

/* ===== Process ===== */
.process{ background: var(--off-white); }
.process-list{
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.process-step{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line-dark);
}
.process-step:last-child{ border-bottom: 1px solid var(--line-dark); }
.step-num{
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.process-step h3{ font-size: 1.15rem; margin-bottom: 0.4rem; }
.process-step p{ color: #4a4a48; max-width: 56ch; margin-bottom: 0; }

/* ===== Services ===== */
.services{ background: var(--white); }
.services h2, .why-copy h2, .contact-copy h2{
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}
.section-lede{
  max-width: 56ch;
  color: #4a4a48;
  font-size: 1.05rem;
}
.service-grid{
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.service-card{
  background: var(--white);
  padding: 2.2rem 1.8rem;
  transition: background-color 0.15s ease;
}
.service-card:hover{ background: #fbf2f2; }
.service-icon{ width: 40px; height:40px; margin-bottom: 1.2rem; }
.service-card h3{
  font-size: 1.15rem;
  text-transform: none;
}
.service-card p{
  color: #4a4a48;
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* ===== Why us ===== */
.why-us{ background: var(--off-white); }
.why-inner{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.why-copy p{ max-width: 52ch; color: #333; }
.why-list{ display:flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.why-list li{
  padding-left: 1.3rem;
  position: relative;
  max-width: 48ch;
  color: #222;
}
.why-list li::before{
  content:"";
  position:absolute; left:0; top:0.5em;
  width:7px; height:7px;
  background: var(--red);
}
.why-stats{
  display:flex; flex-direction: column;
  gap: 1.4rem;
}
.stat-block{
  background: var(--black);
  color: var(--white);
  padding: 1.6rem 1.8rem;
  border-left: 4px solid var(--red);
}
.stat-num{
  display:block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--red);
}
.stat-label{ font-size: 0.9rem; color: var(--off-white); opacity: 0.85; }

/* ===== Contact ===== */
.contact{ background: var(--black); color: var(--white); }
.contact-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.contact-copy p{ max-width: 42ch; color: var(--off-white); }
.contact-list{ margin-top: 2rem; display:flex; flex-direction:column; gap: 1.1rem; }
.contact-list li{
  display:flex; flex-direction: column; gap: 0.2rem;
  border-bottom: 1px solid rgba(250,250,248,0.12);
  padding-bottom: 0.9rem;
}
.contact-label{ font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); }
.contact-list a{ font-size: 1.05rem; }
.contact-list a:hover{ color: var(--red-bright); }

.contact-form{
  background: var(--charcoal);
  padding: 2rem;
  display:flex; flex-direction: column; gap: 1rem;
  border: 1px solid rgba(250,250,248,0.1);
}
.contact-form label{ font-size: 0.85rem; color: var(--off-white); }
.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  padding: 0.7rem 0.8rem;
  background: var(--black);
  border: 1px solid rgba(250,250,248,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: var(--red);
}
.contact-form textarea{ resize: vertical; }

/* ===== Footer ===== */
.site-footer{ background: var(--black); color: var(--off-white); }
.footer-top{
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
}
.footer-col h4{
  font-family: var(--font-head);
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}
.footer-logo{ margin-bottom: 1rem; }
.footer-tagline{ color: var(--red); font-family: var(--font-head); letter-spacing: 0.03em; margin-bottom: 0.8rem; }
.footer-blurb{ font-size: 0.9rem; color: var(--off-white); opacity: 0.75; max-width: 34ch; margin-bottom: 0; }

.footer-links{ display:flex; flex-direction: column; gap: 0.7rem; }
.footer-links a, .footer-links span{ font-size: 0.9rem; color: var(--off-white); opacity: 0.85; }
.footer-links a:hover{ color: var(--red-bright); opacity: 1; }
.footer-contact li{ opacity: 1; }
.footer-social-note{ margin-top: 1.4rem; font-size: 0.82rem; color: var(--off-white); opacity: 0.5; margin-bottom: 0; }

.footer-bottom{
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  border-top: 1px solid rgba(250,250,248,0.1);
  display:flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; }
  .radar{ width: min(220px, 55vw); }
  .why-inner{ grid-template-columns: 1fr; }
  .contact-inner{ grid-template-columns: 1fr; }
  .about-pillars{ grid-template-columns: 1fr 1fr; }
  .about-scope{ grid-template-columns: 1fr 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .main-nav{ display:none; }
  .header-phone{ display:none; }
  .nav-toggle{ display:flex; }
  .section-inner{ padding: 3.8rem 1.25rem; }
  .process-step{ grid-template-columns: 44px 1fr; }
}

@media (max-width: 600px){
  .about-pillars{ grid-template-columns: 1fr; }
  .about-scope{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; padding: 3rem 1.25rem 2rem; }
  .footer-bottom{ flex-direction: column; }
}

@media (max-width: 480px){
  .hero-inner{ padding: 3rem 1.25rem 3rem; }
  .hero-actions .btn{ flex: 1 1 100%; text-align:center; }
  .hero-facts{ gap: 1.4rem; }
}
