@import url("https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700;800;900&display=swap");

:root {
  --red: #f31212;
  --dark: #0b0b0b;
  --cream: #f3f0e9;
  --line: rgba(255, 255, 255, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--dark);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(11, 11, 11, 0.12);
}
.brand {
  width: 150px;
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand img { width: 100%; height: auto; display: block; mix-blend-mode: multiply; }
.nav-links { display: flex; gap: 34px; font-size: 13px; font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}
.nav-links a:hover::after { right: 0; }
.header-cta {
  background: var(--dark);
  color: white;
  padding: 14px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  gap: 18px;
}
.header-cta span { color: var(--red); }
.menu-button { display: none; }

.hero {
  min-height: 820px;
  padding: 178px 5vw 70px;
  position: relative;
  background:
    linear-gradient(rgba(11,11,11,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,11,11,.045) 1px, transparent 1px);
  background-size: 74px 74px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(243,18,18,.28);
  border-radius: 50%;
  right: -165px;
  top: 130px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow > span { width: 28px; height: 2px; background: var(--red); }
.hero h1, .section-heading h2, .about h2, .contact h2 {
  margin: 30px 0 0;
  max-width: 1050px;
  font-size: clamp(68px, 8.7vw, 142px);
  font-family: "Saira", Arial, sans-serif;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero h1 em, h2 em {
  color: var(--red);
  font-family: "Saira", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
}
.hero-line { display: flex; align-items: center; gap: 28px; }
.asterisk { font-size: .4em; color: var(--red); animation: spin 12s linear infinite; }
.outline-word {
  color: transparent;
  -webkit-text-stroke: 2px var(--dark);
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-bottom {
  margin: 54px 0 0 45%;
  max-width: 630px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-bottom > p { max-width: 420px; font-size: 17px; line-height: 1.6; margin: 0; }
.circle-link {
  width: 94px;
  height: 94px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: .3s;
}
.circle-link b { color: var(--red); font-size: 20px; margin-top: 5px; }
.circle-link:hover { background: var(--red); color: white; border-color: var(--red); transform: rotate(-8deg); }
.circle-link:hover b { color: white; }
.hero-orbit {
  position: absolute;
  top: 135px;
  right: 8vw;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  border: 1px solid rgba(11,11,11,.25);
  animation: spin 18s linear infinite;
}
.hero-orbit span { position: absolute; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.hero-orbit span:nth-child(1) { left: 36px; top: -5px; }
.hero-orbit span:nth-child(2) { right: -18px; top: 70px; }
.hero-orbit span:nth-child(3) { left: 25px; bottom: -5px; }

.ticker { background: var(--red); color: white; overflow: hidden; padding: 16px 0; transform: rotate(-1.2deg) scale(1.02); }
.ticker > div { display: flex; width: max-content; gap: 32px; align-items: center; animation: ticker 24s linear infinite; }
.ticker span { font-size: 14px; text-transform: uppercase; font-weight: 900; letter-spacing: .1em; }
.ticker i { font-style: normal; color: var(--dark); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-shell { padding: 130px 5vw; }
.services { background: var(--dark); color: white; padding-top: 160px; }
.eyebrow.light { color: rgba(255,255,255,.72); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; margin-bottom: 78px; }
.section-heading h2, .about h2 { font-size: clamp(58px, 7vw, 108px); }
.section-intro { max-width: 350px; margin: 0 5vw 12px 0; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.6); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 340px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; transition: color .35s; }
.service-card::before { content: ""; position: absolute; inset: 100% 0 0; background: var(--red); transition: inset .35s ease; }
.service-card:hover::before { inset: 0; }
.service-card > * { position: relative; z-index: 1; }
.service-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: 12px; }
.service-arrow { font-size: 22px; color: var(--red); }
.service-card:hover .service-arrow { color: white; }
.service-card h3 { margin: 85px 0 18px; font-size: 30px; letter-spacing: -.04em; }
.service-card p { color: rgba(255,255,255,.55); line-height: 1.55; max-width: 290px; margin: 0; font-size: 14px; }
.service-card:hover p { color: rgba(255,255,255,.82); }
.service-tag { position: absolute; left: 32px; bottom: 28px; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.4); }
.service-card:hover .service-tag { color: white; }

.about { min-height: 790px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; position: relative; }
.about::after { content: ""; position: absolute; width: 260px; height: 260px; background: var(--red); right: -160px; top: 100px; border-radius: 50%; opacity: .1; }
.about h2 { margin-top: 34px; }
.about-text { max-width: 620px; margin: 42px 0 34px; font-size: 18px; line-height: 1.7; }
.text-link { display: inline-flex; gap: 35px; padding-bottom: 9px; border-bottom: 2px solid var(--dark); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.text-link span { color: var(--red); }
.stats { border-top: 1px solid rgba(11,11,11,.2); }
.stats div { padding: 30px 0; border-bottom: 1px solid rgba(11,11,11,.2); display: flex; align-items: flex-end; justify-content: space-between; }
.stats strong { font-size: clamp(48px, 5vw, 72px); letter-spacing: -.06em; }
.stats span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }

.approach { background: white; }
.approach-heading { align-items: center; }
.approach .section-heading h2 { color: var(--dark); }
.process-mark {
  font-family: "Saira", Arial, sans-serif;
  font-weight: 900;
  font-size: 180px;
  line-height: 1;
  letter-spacing: -.06em;
}
.process-mark span { color: var(--red); }
.steps { border-top: 2px solid var(--dark); display: grid; grid-template-columns: repeat(4, 1fr); }
.step { padding: 34px 30px 0 0; min-height: 260px; border-right: 1px solid rgba(11,11,11,.16); margin-right: 30px; }
.step:last-child { border-right: 0; }
.step > span { font-size: 11px; color: var(--red); font-weight: 800; }
.step h3 { font-size: 28px; margin: 70px 0 16px; }
.step p { color: #646464; font-size: 14px; line-height: 1.6; max-width: 220px; }

.contact { min-height: 760px; background: var(--red); color: white; padding: 120px 5vw 50px; position: relative; overflow: hidden; }
.contact h2 { font-size: clamp(82px, 12vw, 185px); margin-top: 45px; position: relative; z-index: 1; }
.contact h2 em { color: var(--dark); }
.contact-button { position: absolute; right: 8vw; top: 370px; background: var(--dark); width: 290px; height: 290px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 25px; transition: .3s; z-index: 2; }
.contact-button:hover { transform: scale(1.06) rotate(-5deg); }
.contact-button span { font-size: 13px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 7px; }
.contact-button b { font-size: 38px; color: var(--red); }
.contact-noise { position: absolute; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; right: -150px; top: -120px; }
.contact-noise::after { content: ""; position: absolute; inset: 55px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.contact-footer { position: absolute; bottom: 45px; left: 5vw; right: 5vw; border-top: 1px solid rgba(255,255,255,.35); padding-top: 28px; display: flex; justify-content: space-between; align-items: flex-end; }
.contact-footer p { margin: 0; font-size: 14px; line-height: 1.5; }
.contact-footer div { display: flex; gap: 28px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

footer { min-height: 110px; padding: 25px 5vw; display: flex; align-items: center; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; background: var(--cream); }
.footer-brand { width: 130px; height: 44px; }

@media (max-width: 900px) {
  .site-header { height: 78px; padding: 0 22px; }
  .brand { width: 125px; }
  .header-cta { display: none; }
  .menu-button { display: flex; width: 42px; height: 42px; background: var(--dark); border: 0; flex-direction: column; align-items: center; justify-content: center; gap: 7px; position: relative; z-index: 2; }
  .menu-button span { width: 18px; height: 1px; background: white; }
  .nav-links { position: fixed; inset: 0; background: var(--red); color: white; flex-direction: column; align-items: center; justify-content: center; gap: 26px; font-size: 28px; transform: translateY(-100%); transition: .35s ease; }
  .nav-links.open { transform: translateY(0); }
  .hero { min-height: 730px; padding: 145px 22px 55px; background-size: 48px 48px; }
  .hero-orbit { display: none; }
  .hero h1 { font-size: clamp(55px, 15vw, 94px); line-height: .88; margin-top: 45px; }
  .hero-line { display: block; }
  .asterisk { display: none; }
  .hero-bottom { margin: 55px 0 0; align-items: center; }
  .hero-bottom > p { max-width: 75%; font-size: 15px; }
  .circle-link { width: 78px; height: 78px; flex: 0 0 78px; }
  .section-shell { padding: 95px 22px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 50px; }
  .section-intro { margin: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 310px; }
  .about { grid-template-columns: 1fr; gap: 60px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid rgba(11,11,11,.15); }
  .process-mark { display: none; }
  .contact { min-height: 700px; padding: 90px 22px 35px; }
  .contact-button { width: 210px; height: 210px; top: 370px; right: 30px; }
  .contact-footer { left: 22px; right: 22px; }
}

@media (max-width: 560px) {
  .hero { min-height: 680px; }
  .hero h1 { font-size: 16vw; }
  .hero-bottom { gap: 20px; }
  .hero-bottom > p { max-width: none; }
  .circle-link { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .service-card h3 { margin-top: 65px; }
  .about h2, .section-heading h2 { font-size: 15vw; }
  .stats div { align-items: center; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 220px; margin-right: 0; border-right: 0; }
  .step h3 { margin-top: 50px; }
  .contact h2 { font-size: 21vw; }
  .contact-button { top: 330px; right: 22px; width: 180px; height: 180px; }
  .contact-footer { align-items: flex-start; gap: 20px; }
  .contact-footer div { flex-direction: column; gap: 9px; }
  footer { flex-wrap: wrap; gap: 10px 20px; }
}

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