
:root{
  --black:#0d0d0d;
  --card:#151515;
  --card2:#1b1b1b;
  --red:#c8102e;
  --red-dark:#9e0b23;
  --white:#fff;
  --muted:#a8a8a8;
  --muted-2:#7f7f7f;
  --border:rgba(200,16,46,.18);
  --shadow:0 22px 70px rgba(0,0,0,.45);
}

*,
*::before,
*::after{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}
body{
  background:var(--black);
  color:var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{color:inherit}
section{scroll-margin-top:110px}

.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  background:var(--red);
  color:#fff;
  padding:10px 14px;
  border-radius:2px;
  z-index:1000;
}
.skip-link:focus{left:8px}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(13,13,13,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(200,16,46,.18);
}

.nav{
  max-width:1220px;
  margin:0 auto;
  padding:12px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:0;
}
.brand img{
  width:54px;
  height:54px;
  object-fit:cover;
  border-radius:2px;
  box-shadow:0 0 0 1px rgba(255,255,255,.08);
}
.brand span{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform:uppercase;
  line-height:.88;
  letter-spacing:.04em;
  font-size:1.15rem;
  color:#fff;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}
.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:.84rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:.2s ease;
}
.nav-links a:hover{color:var(--red)}
.nav-links .cta{
  background:var(--red);
  color:#fff;
  padding:10px 18px;
  border-radius:2px;
}
.nav-links .cta:hover{
  background:var(--red-dark);
  color:#fff;
}

main{display:block}

.hero{
  min-height:100vh;
  padding:110px 24px 80px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, rgba(13,13,13,1) 38%, rgba(13,13,13,.86) 54%, rgba(13,13,13,.2) 100%);
  z-index:1;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -10% -120px 34%;
  height:280px;
  background:radial-gradient(circle, rgba(200,16,46,.14), transparent 65%);
  filter:blur(24px);
  z-index:1;
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:1220px;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
  align-items:center;
  gap:42px;
}
.hero-copy{
  max-width:620px;
}
.hero-eyebrow,
.section-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--red);
}
.hero-eyebrow::before,
.section-eyebrow::before,
.section-eyebrow::after{
  content:"";
  display:inline-block;
  width:28px;
  height:2px;
  background:var(--red);
}
.section-eyebrow::after{
  width:24px;
  height:1px;
}
.hero-title,
.section-title,
.about-title,
.contact-title,
.page-title{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform:uppercase;
  letter-spacing:.03em;
  line-height:.95;
}
.hero-title{
  font-size:clamp(2.4rem, 5vw, 4.8rem);
  margin:18px 0 12px;
}
.hero-title .red{color:var(--red)}
.hero-sub{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:clamp(1rem, 2vw, 1.45rem);
  color:#d7d7d7;
  margin-bottom:22px;
}
.hero-text{
  max-width:500px;
  color:var(--muted);
  line-height:1.75;
  font-size:1.02rem;
  margin-bottom:32px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn-primary,
.btn-ghost,
.form-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:15px 24px;
  border-radius:2px;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  transition:.2s ease;
  border:1px solid transparent;
  cursor:pointer;
}
.btn-primary,
.form-submit{
  background:var(--red);
  color:#fff;
}
.btn-primary:hover,
.form-submit:hover{
  background:var(--red-dark);
  transform:translateY(-1px);
}
.btn-ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.18);
}
.btn-ghost:hover{
  border-color:var(--red);
  color:var(--red);
}
.hero-visual{
  justify-self:end;
  width:min(100%, 620px);
}
.hero-frame{
  background:linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(200,16,46,.22);
  box-shadow:var(--shadow);
  padding:14px;
  border-radius:4px;
  position:relative;
}
.hero-frame::before{
  content:"";
  position:absolute;
  inset:10px;
  border:1px solid rgba(255,255,255,.04);
  pointer-events:none;
}
.hero-frame img{
  width:100%;
  aspect-ratio:7 / 5;
  object-fit:contain;
  background:#111;
  border-radius:2px;
}

.diagonal-divider{
  height:72px;
  background:var(--card);
  clip-path:polygon(0 0, 100% 38%, 100% 100%, 0 100%);
  margin-top:-1px;
}

.section,
.section-dark,
.contact-section{
  padding:82px 24px;
}
.section{
  background:var(--card);
}
.section-dark{
  background:var(--black);
}
.section-inner{
  max-width:1220px;
  margin:0 auto;
}
.section-header{
  text-align:center;
  margin-bottom:54px;
}
.section-title{
  font-size:clamp(2rem, 4vw, 3.1rem);
  margin-top:12px;
}
.section-title span{color:var(--red)}
.service-note,
.about-note,
.contact-note{
  max-width:950px;
  margin:18px auto 0;
  color:var(--muted);
  line-height:1.7;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:2px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.04);
}
.service-card{
  position:relative;
  overflow:hidden;
  background:var(--black);
  padding:34px 30px 32px;
  min-height:210px;
  transition:.22s ease;
}
.service-card:hover{background:#141414}
.service-card::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:3px;
  background:var(--red);
  transform:scaleY(0);
  transform-origin:bottom;
  transition:transform .28s ease;
}
.service-card:hover::before{transform:scaleY(1)}
.service-icon{
  width:48px;
  height:48px;
  color:var(--red);
  margin-bottom:20px;
}
.service-name,
.about-title,
.contact-title,
.page-title{
  font-size:clamp(1.8rem, 2.8vw, 2.7rem);
}
.service-name{
  font-size:1.25rem;
  margin-bottom:10px;
}
.service-desc{
  color:var(--muted-2);
  line-height:1.65;
  font-size:.95rem;
}
.service-tag{
  display:inline-block;
  margin-top:16px;
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--red);
  font-weight:700;
}

.about-wrap,
.contact-wrap{
  display:grid;
  grid-template-columns:minmax(320px, .9fr) minmax(0, 1.1fr);
  gap:64px;
  align-items:center;
}
.about-img-wrap{
  width:min(100%, 460px);
  justify-self:start;
  position:relative;
}
.about-photo{
  width:100%;
  aspect-ratio:3 / 4;
  object-fit:cover;
  object-position:center top;
  border-radius:3px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}
.about-img-wrap::after{
  content:"";
  position:absolute;
  inset:auto 10px -10px 10px;
  height:12px;
  background:linear-gradient(90deg, transparent, rgba(200,16,46,.65), transparent);
  filter:blur(3px);
  opacity:.7;
}
.about-text p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:14px;
  font-size:1rem;
}
.about-list{
  list-style:none;
  margin:24px 0 32px;
}
.about-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#e0e0e0;
  padding:9px 0;
  border-bottom:1px solid rgba(255,255,255,.05);
  line-height:1.5;
}
.about-list li::before{
  content:"";
  width:7px;
  height:7px;
  margin-top:.55em;
  background:var(--red);
  flex:0 0 auto;
}

.contact-section{
  background:var(--card);
}
.contact-wrap{
  align-items:start;
}
.contact-info h2{
  margin:12px 0 14px;
}
.contact-info p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:28px;
  font-size:1rem;
}
.contact-items{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.contact-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.contact-item-icon{
  width:42px;
  height:42px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:2px;
  background:var(--black);
  border:1px solid rgba(200,16,46,.4);
  color:var(--red);
}
.contact-item-label{
  color:var(--muted-2);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.72rem;
  margin-bottom:3px;
}
.contact-item-val{
  color:#fff;
  font-weight:600;
  line-height:1.5;
}
.contact-item-val a{
  color:#fff;
  text-decoration:none;
}
.contact-item-val a:hover{color:var(--red)}

.form-intro{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:18px;
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.form-group.full{grid-column:1 / -1}
.form-group label{
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;
  color:var(--muted-2);
}
.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  background:var(--black);
  color:#fff;
  border:1.5px solid rgba(255,255,255,.1);
  border-radius:2px;
  padding:13px 16px;
  font:inherit;
  outline:none;
  transition:border-color .2s ease, background .2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:var(--red);
}
.form-group textarea{
  min-height:140px;
  resize:vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder{color:#777}
.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:4px;
}

footer{
  background:#0a0a0a;
  border-top:1px solid rgba(200,16,46,.18);
  padding:34px 24px;
}
.footer-inner{
  max-width:1220px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer-brand img{
  width:50px;
  height:50px;
  object-fit:cover;
  border-radius:2px;
}
.footer-tagline{
  color:var(--muted-2);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.75rem;
  margin-top:5px;
}
.footer-copy{
  color:var(--muted-2);
  font-size:.82rem;
}
.footer-links{
  list-style:none;
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--muted-2);
  text-decoration:none;
  font-size:.82rem;
  transition:.2s ease;
}
.footer-links a:hover{color:var(--red)}

.page-hero{
  min-height:auto;
  padding:110px 24px 46px;
  background:var(--black);
}
.page-content{
  max-width:920px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.85;
}
.page-content h2,
.page-content h3{
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform:uppercase;
  letter-spacing:.03em;
  color:#fff;
}
.page-content h2{font-size:clamp(1.9rem, 3vw, 2.6rem); margin:0 0 16px}
.page-content h3{font-size:1.18rem; margin:28px 0 10px}
.page-content p, .page-content li{margin-bottom:12px}
.page-content ul{padding-left:18px}
.page-content a{color:var(--red);text-decoration:none}
.page-content a:hover{text-decoration:underline}

@media (max-width: 960px){
  .nav{flex-wrap:wrap; justify-content:center}
  .hero{
    padding-top:92px;
  }
  .hero-inner,
  .about-wrap,
  .contact-wrap{
    grid-template-columns:1fr;
    gap:32px;
  }
  .hero-copy{max-width:none}
  .hero-visual{
    justify-self:stretch;
    width:100%;
    max-width:760px;
  }
  .about-img-wrap{width:min(100%, 520px)}
}

@media (max-width: 700px){
  .nav-links{
    gap:16px;
    justify-content:center;
  }
  .brand span{
    font-size:1rem;
  }
  .hero{
    min-height:auto;
    padding:76px 16px 54px;
  }
  .section, .section-dark, .contact-section{
    padding:62px 16px;
  }
  .hero-title{
    font-size:clamp(2.2rem, 12vw, 3.4rem);
  }
  .hero-sub{
    letter-spacing:.12em;
  }
  .form-grid{
    grid-template-columns:1fr;
  }
  .footer-inner{
    justify-content:center;
    text-align:center;
  }
  .footer-brand{
    flex-direction:column;
  }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    scroll-behavior:auto !important;
    transition:none !important;
    animation:none !important;
  }
}
