:root {
  color-scheme: dark;
  --bg: #070707;
  --bg-2: #111111;
  --ink: #ffffff;
  --muted: #c8c8c8;
  --soft: #8f8f8f;
  --line: rgba(255, 255, 255, 0.15);
  --red: #ef1616;
  --red-dark: #9b0707;
  --gold: #d7a94f;
  --steel: #88a3b8;
  --panel: rgba(17, 17, 17, 0.9);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--red);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  left: 1rem;
  position: fixed;
  top: -5rem;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 0.8rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 5vw;
  background: rgba(7, 7, 7, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  max-width: 220px;
}

.brand-mark img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  white-space: normal;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  color: var(--ink);
  padding: 0;
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 82svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 8.2rem 5vw 2rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 36%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.26) 46%, rgba(7, 7, 7, 0.4) 100%);
  z-index: -1;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/brand-banner.png");
  background-size: cover;
  background-position: center;
  opacity: 0.82;
  z-index: -2;
}

.hero__content {
  width: min(720px, 100%);
  padding-bottom: 4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.1rem;
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: 4.8rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: 3.15rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.16rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 1.65rem;
  color: #f1f1f1;
  font-size: 1.16rem;
}

.hero__actions,
.contact__badges,
.planner__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  text-align: center;
  white-space: normal;
  cursor: pointer;
}

.button--primary {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(239, 22, 22, 0.25);
}

.button--primary:hover,
.button--primary:focus-visible {
  filter: brightness(1.12);
  outline: 3px solid rgba(239, 22, 22, 0.25);
  outline-offset: 2px;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  outline: 3px solid rgba(255, 255, 255, 0.14);
  outline-offset: 2px;
}

.hero__signal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.hero__signal span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 0.75rem;
  background: rgba(7, 7, 7, 0.76);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.impact-strip {
  background: var(--red);
  color: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.impact-strip__inner {
  width: min(1180px, 90vw);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.impact-strip span {
  display: grid;
  place-items: center;
  padding: 0.9rem 0.8rem;
  font-weight: 950;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.impact-strip span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  padding: 6rem 5vw;
}

.section__intro {
  width: min(760px, 100%);
  margin-bottom: 2rem;
}

.section__intro p:last-child {
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.offer-item,
.process-track article,
.planner,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 270px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}

.service-card__code {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  border-radius: 6px;
  background: var(--red);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.service-card p,
.offer-item p,
.process-track p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: 3rem;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05)),
    var(--bg-2);
}

.split__media {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #000;
  max-height: 690px;
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.offer-list {
  display: grid;
  gap: 0.85rem;
}

.offer-item {
  padding: 1rem;
}

.planner-section {
  background:
    linear-gradient(90deg, rgba(239, 22, 22, 0.12), transparent 52%),
    #090909;
}

.planner {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.planner__controls,
.planner__result {
  padding: 1.25rem;
  background: rgba(7, 7, 7, 0.93);
}

.planner__controls {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  border-radius: 6px;
  padding: 0.85rem 0.9rem;
  min-height: 48px;
}

select option {
  background: #111111;
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(215, 169, 79, 0.24);
  border-color: var(--gold);
}

.planner__label {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 850;
}

.planner__result h3 {
  color: var(--ink);
  font-size: 2rem;
}

.planner__steps {
  margin-top: 1.1rem;
}

.planner__steps span,
.contact__badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-track article {
  padding: 1.15rem;
}

.process-track span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
}

.proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  gap: 3rem;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #0d0d0d;
}

.proof__content {
  max-width: 590px;
}

.proof__gallery {
  display: grid;
  grid-template-columns: 0.82fr 0.92fr;
  gap: 0.85rem;
  align-items: stretch;
}

.proof__poster {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #000;
}

.proof__poster--tall {
  grid-row: span 2;
  min-height: 600px;
  object-position: center;
}

.proof__poster--wide {
  aspect-ratio: 4 / 3;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact__copy {
  max-width: 620px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  padding: 3rem 5vw;
  text-align: center;
  background: #030303;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: min(420px, 90vw);
}

.site-footer p {
  margin-bottom: 0;
  color: var(--soft);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .service-grid,
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .proof__content {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.7rem 1rem;
  }

  .brand-mark {
    min-width: 124px;
    max-width: 168px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 1px) 1rem auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 7, 7, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 78svh;
    padding: 7.2rem 1rem 1rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.92)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.44));
  }

  .hero__backdrop {
    background-position: center;
  }

  .hero__content {
    padding-bottom: 2rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__signal,
  .impact-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 4rem 1rem;
  }

  .service-grid,
  .process-track,
  .planner,
  .proof__gallery {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .split__media img {
    min-height: 420px;
  }

  .proof__poster--tall {
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__signal,
  .impact-strip__inner {
    grid-template-columns: 1fr;
  }
}
