:root {
  --red: #e3262e;
  --red-dark: #b8141c;
  --yellow: #ffd400;
  --ink: #17191d;
  --ink-soft: #2b2f36;
  --paper: #f6f5f0;
  --white: #ffffff;
  --muted: #686d75;
  --line: #d8d8d2;
  --shadow: 0 24px 60px rgba(13, 15, 18, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a { color: inherit; }

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 2px solid var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 25, 29, 0.96);
  color: var(--white);
  border-bottom: 4px solid var(--yellow);
}

.nav-wrap {
  width: min(1180px, calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  border: 3px solid var(--yellow);
  transform: rotate(-4deg);
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy small { margin-top: 0.25rem; color: var(--yellow); font-size: 0.68rem; letter-spacing: 0.18em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--yellow); }

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #4a4f58;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -38px 44%;
  height: 78px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 26px, var(--ink) 26px 52px);
  transform: rotate(-2deg);
  opacity: 0.95;
}

.hero-grid {
  width: min(1180px, calc(100% - 2rem));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 5.5rem 0 6.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 36px; height: 4px; background: var(--red); }

h1,
h2,
h3 { margin: 0; line-height: 1.05; letter-spacing: -0.035em; }

h1 { max-width: 780px; font-size: clamp(3rem, 7vw, 6.4rem); text-transform: uppercase; }
h1 span { color: var(--yellow); }

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: #d8dbe0;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover,
.button-primary:focus-visible { background: var(--red-dark); }
.button-secondary { border-color: #777c84; color: var(--white); }
.button-secondary:hover,
.button-secondary:focus-visible { border-color: var(--yellow); color: var(--yellow); }
.button-dark { background: var(--ink); color: var(--white); }

.hero-media {
  position: relative;
  min-height: 500px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 22px 18px -18px;
  border: 5px solid var(--yellow);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(1.04);
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: -1rem;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 50%;
  background: var(--red);
  border: 6px solid var(--yellow);
  text-align: center;
  font-weight: 950;
  font-size: 0.83rem;
  line-height: 1.15;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section h2 { max-width: 720px; font-size: clamp(2.25rem, 5vw, 4.5rem); text-transform: uppercase; }
.section-head > p { max-width: 600px; margin: 0; color: var(--muted); font-size: 1.1rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.card {
  min-height: 270px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.card:last-child { border-right: 0; }
.card-number { color: var(--red); font-weight: 950; font-size: 0.82rem; letter-spacing: 0.13em; }
.card h3 { margin-top: 2.3rem; font-size: 1.65rem; }
.card p { margin: 1rem 0 0; color: var(--muted); }

.proof-band {
  background: var(--yellow);
  color: var(--ink);
}

.proof-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.proof-grid h2 { font-size: clamp(2.15rem, 4.2vw, 4rem); text-transform: uppercase; }
.proof-grid p { margin: 0; font-size: 1.08rem; }

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  border-top: 8px solid var(--red);
  box-shadow: var(--shadow);
}

.contact-panel h2 { font-size: clamp(2.2rem, 5vw, 4.7rem); }
.contact-panel p { max-width: 620px; color: var(--muted); }

.contact-details { display: grid; gap: 1rem; align-content: center; }
.detail { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.detail strong { display: block; margin-bottom: 0.2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.detail a { font-size: 1.08rem; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.site-footer {
  background: var(--ink);
  color: #d5d8dd;
}

.footer-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-wrap h2 { color: var(--white); font-size: 1.4rem; }
.footer-wrap p { max-width: 430px; margin: 0.8rem 0 0; }
.footer-links { display: grid; align-content: start; gap: 0.55rem; }
.footer-links strong { color: var(--yellow); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-links a { width: fit-content; text-underline-offset: 4px; }

.legal-main {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.legal-main h1 { font-size: clamp(2.7rem, 7vw, 5.3rem); }
.legal-main .lede { margin: 1.4rem 0 3rem; color: var(--muted); font-size: 1.08rem; }
.legal-main h2 { margin-top: 2.5rem; font-size: 1.55rem; letter-spacing: -0.02em; }
.legal-main p,
.legal-main li { color: #41454c; }
.legal-main ul { padding-left: 1.2rem; }
.legal-note { padding: 1rem 1.2rem; background: #fff2b9; border-left: 5px solid var(--yellow); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    inset: 76px 0 auto;
    padding: 1.25rem 1rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
    border-bottom: 4px solid var(--yellow);
  }
  .nav-links[data-open="true"] { display: flex; }
  .hero-grid,
  .section-head,
  .proof-grid,
  .contact-panel,
  .footer-wrap { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 4rem; }
  .hero-media { min-height: 410px; }
  .hero-media img { height: 410px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .card:last-child { border-bottom: 0; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.75rem; }
  .hero-grid { min-height: 0; }
  .hero-actions,
  .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-media { min-height: 340px; }
  .hero-media img { height: 340px; }
  .hero-stamp { width: 118px; height: 118px; right: -0.2rem; font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
