:root {
  --black: #050605;
  --black-soft: #0b0d0c;
  --panel: #111311;
  --panel-2: #151815;
  --white: #f4f4f0;
  --muted: #b9bbb4;
  --lime: #9dbf17;
  --lime-bright: #b7d91f;
  --line: rgba(157, 191, 23, .72);
  --header-height: 100px;
  --max: 1344px;
  --shadow: 0 18px 60px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--lime);
  color: #050605;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background:
    linear-gradient(90deg, rgba(255,255,255,.015), transparent 35%),
    #050605;
  border-bottom: 1px solid rgba(255,255,255,.045);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled {
  background: rgba(5,6,5,.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.header-inner {
  width: min(calc(100% - 44px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 275px 1fr 210px;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; width: 250px; align-items: center; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; justify-content: center; gap: clamp(22px, 2.7vw, 52px); }
.nav-link {
  position: relative;
  padding: 34px 0 29px;
  color: #ecece7;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .25s ease, text-shadow .25s ease;
}
.nav-link::after,
.interactive-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--lime-bright);
  box-shadow: 0 0 12px rgba(183,217,31,.35);
  transition: right .28s cubic-bezier(.2,.7,.2,1);
}
.nav-link:hover,
.nav-link:focus-visible { color: #ecece7; text-shadow: none; }
.nav-link.active { color: var(--lime-bright); text-shadow: 0 0 18px rgba(183,217,31,.18); }
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after { right: 0; }
.header-call {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--lime);
  padding: 8px 16px;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.header-call::after { bottom: -1px; }
.header-call:hover { background: rgba(157,191,23,.08); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(157,191,23,.12); }
.header-call svg { width: 23px; color: var(--lime); fill: var(--lime); stroke: var(--lime); }
.header-call span { display: grid; line-height: 1.05; }
.header-call small { font-family: "Oswald"; font-size: 12px; letter-spacing: .08em; color: var(--white); }
.header-call strong { margin-top: 4px; font-family: "Oswald"; font-size: 16px; letter-spacing: .03em; color: var(--lime-bright); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  height: clamp(360px, 22.5vw, 410px);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #080908;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hero-composite.webp");
  background-size: 100% 100%;
  background-position: center;
  transform: scale(1.008);
  filter: brightness(1.04) contrast(1.02) saturate(1.02);
  animation: heroDrift 12s ease-in-out infinite alternate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.84) 27%, rgba(0,0,0,.24) 48%, rgba(0,0,0,0) 67%, rgba(0,0,0,.04) 100%),
    linear-gradient(0deg, rgba(0,0,0,.24) 0%, transparent 44%, rgba(0,0,0,.08) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.05) 87.5%, rgba(255,255,255,.05)),
    linear-gradient(150deg, rgba(255,255,255,.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.05) 87.5%, rgba(255,255,255,.05));
  background-size: 32px 56px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: -50%;
  z-index: 2;
  opacity: .055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  animation: noise 1.8s steps(2) infinite;
}
.hero-inner {
  width: min(calc(100% - 44px), var(--max));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.hero-copy { width: min(455px, 35vw); padding: 22px 0 14px; }
.hero > .eyebrow,
.hero-copy > .eyebrow { display: none; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--lime-bright);
  font-family: "Oswald";
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.hero h1 { margin: 0; text-transform: uppercase; line-height: .82; }
.hero h1 > span:first-child {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(54px, 4.7vw, 76px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.055em;
  color: #efefea;
  text-shadow: 0 3px 0 rgba(0,0,0,.7);
}
.hero h1 em {
  display: block;
  margin: 3px 0 6px 7px;
  color: var(--lime-bright);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(44px, 3.95vw, 64px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.05em;
  transform: rotate(-2.2deg);
  text-shadow: 0 4px 0 rgba(0,0,0,.45), 0 0 24px rgba(157,191,23,.1);
}
.hero-subhead {
  display: block;
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(31px, 2.45vw, 40px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .95;
}
.hero-rule { width: min(455px, 100%); height: 2px; margin: 18px 0 10px; background: linear-gradient(90deg, var(--lime), transparent); }
.hero-kicker {
  margin: 0 0 12px;
  font-family: "Oswald";
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-description { margin: 0; max-width: 440px; color: #dedfd8; font-size: clamp(16px, 1.1vw, 18px); line-height: 1.14; }
.hero-description strong { color: var(--lime-bright); font-weight: 700; text-transform: uppercase; }
.hero-actions { display: flex; gap: 14px; margin-top: 13px; }
.button {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--lime);
  font-family: "Oswald";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.25) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .6s ease;
}
.button:hover::before { transform: translateX(130%); }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(157,191,23,.16); }
.button-primary { background: var(--lime); color: #060706; }
.button-primary:hover { background: var(--lime-bright); }
.button-outline { background: rgba(5,6,5,.74); color: var(--white); }
.button-outline:hover { background: rgba(157,191,23,.12); color: var(--lime-bright); }
.button span { font-size: 20px; line-height: 1; transition: transform .25s ease; }
.button:hover span { transform: translateX(5px); }
.full-width { width: 100%; }
.services-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background-color: #0a0c0a;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.035) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,.025) 1px, transparent 1.5px);
  background-size: 18px 18px;
}
.services-grid {
  width: min(100%, 1600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.service-card {
  position: relative;
  min-height: 156px;
  padding: 12px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background .28s ease, transform .28s ease;
}
.service-card + .service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 18%, var(--line) 82%, transparent);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 18%; right: 18%; bottom: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform .28s ease;
  box-shadow: 0 0 18px rgba(157,191,23,.25);
}
.service-card:hover { background: rgba(157,191,23,.045); transform: translateY(-5px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 46px; height: 46px; margin-bottom: 4px; color: var(--lime-bright); transition: transform .3s ease, filter .3s ease; }
.service-card:hover .service-icon { transform: scale(1.09) translateY(-3px); filter: drop-shadow(0 0 8px rgba(183,217,31,.35)); }
.service-icon svg { width: 100%; height: 100%; stroke-width: 2.6; }
.service-card h2 { margin: 1px 0 5px; font-family: "Oswald"; font-size: 17px; text-transform: uppercase; letter-spacing: .015em; }
.service-card p { margin: 0; max-width: 225px; color: #c9cbc4; font-size: 14px; line-height: 1.12; }

.work-section {
  padding: 0 0 18px;
  background:
    linear-gradient(180deg, #090a09, #050605),
    #050605;
}
.work-grid {
  width: min(calc(100% - 56px), 1490px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.03fr 1.25fr .78fr;
  gap: 0;
  align-items: stretch;
}
.feature-card {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  background: #111;
}
.feature-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.feature-card:hover img { transform: scale(1.055); filter: contrast(1.06) saturate(1.05); }
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.92) 100%);
  transition: background .35s ease;
}
.feature-card:hover .feature-overlay { background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,.16) 48%, rgba(0,0,0,.94) 100%); }
.feature-copy { position: absolute; left: 28px; right: 24px; bottom: 18px; text-shadow: 0 2px 6px rgba(0,0,0,.65); }
.script { margin: 0; color: var(--lime-bright); font-family: "Permanent Marker"; font-size: 23px; line-height: .9; transform: rotate(-2deg); }
.feature-copy h2 { margin: 2px 0 3px; font-family: "Oswald"; font-size: 18px; letter-spacing: .02em; text-transform: uppercase; }
.feature-copy p { margin: 0; color: #e1e2db; font-size: 14px; line-height: 1.1; }
.contact-card {
  margin: 10px 0 10px 24px;
  padding: 23px 28px 20px;
  align-self: center;
  border: 1px solid var(--lime);
  background: linear-gradient(145deg, rgba(17,19,17,.97), rgba(7,8,7,.98));
  box-shadow: var(--shadow);
}
.contact-card .script { margin-bottom: 16px; font-size: 23px; }
.contact-card ul { display: grid; gap: 13px; margin: 0 0 18px; padding: 0; list-style: none; }
.contact-card li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; color: #efefe9; font-size: 16px; line-height: 1.2; }
.contact-card li svg { width: 21px; height: 21px; color: var(--lime-bright); stroke-width: 2.2; }
.contact-card .interactive-link { position: relative; display: inline-block; }
.contact-card .interactive-link::after { bottom: -4px; }
.contact-card .interactive-link:hover,
.contact-card .interactive-link:focus-visible { color: inherit; }
.bottom-tagline {
  width: min(calc(100% - 56px), 1490px);
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.bottom-tagline span { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.38)); }
.bottom-tagline span:last-child { background: linear-gradient(90deg, rgba(255,255,255,.38), transparent); }
.bottom-tagline p { margin: 0; font-family: "Oswald"; font-size: 15px; letter-spacing: .22em; text-transform: uppercase; color: #d5d6d0; }
.bottom-tagline strong { color: var(--lime-bright); font-weight: 500; }

.reviews-section {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 70px 24px;
  border-top: 1px solid rgba(255,255,255,.055);
  background:
    radial-gradient(circle at 50% 0, rgba(157,191,23,.07), transparent 34%),
    linear-gradient(180deg, #080a08, #050605);
}
.reviews-inner { max-width: 760px; text-align: center; }
.reviews-inner h2 { margin: 0 0 10px; font-family: "Oswald"; font-size: clamp(42px, 5vw, 72px); font-style: italic; text-transform: uppercase; line-height: 1; }
.reviews-inner > p:not(.eyebrow) { margin: 0 auto 24px; max-width: 680px; color: var(--muted); font-size: 21px; line-height: 1.35; }

.site-footer {
  min-height: 130px;
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #9da099;
  font-size: 16px;
}
.site-footer > div { display: flex; align-items: center; gap: 18px; }
.site-footer img { width: 170px; }
.site-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2) { transition-delay: .07s; }
.service-card:nth-child(3) { transition-delay: .14s; }
.service-card:nth-child(4) { transition-delay: .21s; }
.service-card:nth-child(5) { transition-delay: .28s; }

@keyframes heroDrift {
  from { transform: scale(1.008) translate3d(0, 0, 0); }
  to { transform: scale(1.025) translate3d(-.25%, -.15%, 0); }
}
@keyframes noise {
  0%,100% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(1.5%, -1%, 0); }
  50% { transform: translate3d(-1%, 1.5%, 0); }
  75% { transform: translate3d(.5%, .5%, 0); }
}

@media (max-width: 1180px) {
  :root { --header-height: 84px; }
  .header-inner { grid-template-columns: 230px 1fr 190px; gap: 18px; }
  .brand { width: 215px; }
  .site-nav { gap: 22px; }
  .nav-link { font-size: 14px; padding: 30px 0 26px; }
  .header-call { min-height: 52px; }
  .hero, .hero-inner { min-height: 530px; }
  .hero-copy { width: 55vw; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(4)::before { display: none; }
  .service-card:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.08); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { grid-column: 1 / -1; margin: 24px auto 8px; width: min(620px, 94%); }
}

@media (max-width: 860px) {
  :root { --header-height: 74px; }
  .header-inner { width: min(calc(100% - 28px), var(--max)); grid-template-columns: 1fr auto; }
  .brand { width: 190px; }
  .header-call { display: none; }
  .menu-toggle {
    display: grid;
    width: 46px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgba(157,191,23,.65);
    background: transparent;
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span { width: 23px; height: 2px; background: var(--lime-bright); transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    left: 0; right: 0; top: var(--header-height);
    display: grid;
    gap: 0;
    padding: 8px 22px 18px;
    background: rgba(5,6,5,.98);
    border-bottom: 1px solid rgba(157,191,23,.3);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.055); }
  .nav-link::after { bottom: 7px; }
  .hero, .hero-inner { min-height: 650px; }
  .hero-bg {
    background-image: url("assets/hero-mustang.webp");
    background-size: cover;
    background-position: 60% center;
    filter: brightness(1.08) contrast(1.02) saturate(1.03);
  }
  .hero::before { background: linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.76) 56%, rgba(0,0,0,.32) 100%), linear-gradient(0deg, rgba(0,0,0,.68), transparent 60%); }
  .hero-copy { width: min(620px, 92%); padding-top: 70px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3)::before, .service-card:nth-child(5)::before { display: none; }
  .service-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.08); }
  .work-grid { width: min(calc(100% - 28px), 1490px); grid-template-columns: 1fr; gap: 14px; padding-top: 14px; }
  .feature-card { min-height: 360px; }
  .contact-card { grid-column: auto; width: 100%; margin: 0; }
  .bottom-tagline { width: min(calc(100% - 28px), 1490px); gap: 14px; }
  .bottom-tagline p { text-align: center; font-size: 14px; letter-spacing: .13em; }
  .site-footer { min-height: 170px; flex-direction: column; justify-content: center; text-align: center; }
  .site-footer > div { flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
  .brand { width: 168px; }
  .hero, .hero-inner { min-height: 680px; }
  .hero-bg { background-position: 67% center; }
  .hero::before { background: linear-gradient(90deg, rgba(0,0,0,.97), rgba(0,0,0,.71) 72%, rgba(0,0,0,.4)), linear-gradient(0deg, rgba(0,0,0,.78), transparent 70%); }
  .hero-inner { width: min(calc(100% - 28px), var(--max)); align-items: flex-end; }
  .hero-copy { width: 100%; padding: 80px 0 54px; }
  .hero h1 > span:first-child { font-size: clamp(49px, 15.5vw, 69px); }
  .hero h1 em { margin-left: 0; font-size: clamp(40px, 13.5vw, 60px); }
  .hero-subhead { font-size: clamp(33px, 10vw, 47px); }
  .hero-kicker { font-size: 18px; letter-spacing: .08em; }
  .hero-description { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 190px; padding-bottom: 30px; }
  .service-card + .service-card::before { display: none; }
  .service-card:nth-child(n+2) { border-top: 1px solid rgba(255,255,255,.08); }
  .feature-card { min-height: 320px; }
  .feature-copy { left: 22px; right: 18px; }
  .contact-card { padding: 26px 22px 22px; }
  .contact-card li { font-size: 17px; }
  .bottom-tagline { grid-template-columns: 1fr; }
  .bottom-tagline span { display: none; }
  .reviews-inner > p:not(.eyebrow) { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* The original concept included a mouse-shaped scroll cue. Keep it removed. */
.scroll-indicator, .scroll-cue, .scroll-down, .mouse-scroll, [class*="scroll-indicator"], [class*="scroll-cue"] { display: none !important; }
