:root {
  --red: #ed1c24;
  --ink: #111111;
  --muted: #5a5a5a;
  --line: #e7e7e7;
  --paper: #ffffff;
  --soft: #f7f7f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 126px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: #303030;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

nav a {
  padding: 9px 0;
}

nav a:hover {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta {
  color: var(--red);
  border-color: var(--red);
}

.button-primary {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.button-secondary {
  background: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: calc(100vh - 73px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px) clamp(22px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-visual {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #ffffff;
}

.fact-strip div {
  min-height: 132px;
  padding: 26px clamp(18px, 3vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.fact-strip strong {
  display: block;
  color: var(--red);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}

.fact-strip span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section,
.entity-panel,
.verification-section,
.contact-section {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.entity-panel,
.verification-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.entity-answer {
  padding-left: clamp(0px, 2vw, 34px);
  border-left: 4px solid var(--red);
}

.entity-answer p,
.proof-copy p,
.contact-section p {
  max-width: 820px;
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.simple-grid,
.culture-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.simple-grid article,
.culture-grid article,
.faq-list article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.simple-grid article:nth-child(1),
.culture-grid article:nth-child(2) {
  background: var(--ink);
  color: #ffffff;
}

.simple-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 38px;
  font-weight: 900;
}

.simple-grid p,
.culture-grid p,
.faq-list p {
  color: inherit;
  opacity: 0.76;
}

.product-focus,
.culture-section {
  background: var(--soft);
}

.focus-list,
.verify-list {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}

.focus-list p,
.verify-list p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
}

.focus-list strong,
.verify-list strong {
  color: var(--ink);
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  align-items: center;
  background: var(--ink);
  color: #ffffff;
}

.proof-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.proof-copy {
  padding: clamp(46px, 7vw, 86px);
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.verification-section {
  background: #ffffff;
}

.verify-list a {
  color: var(--red);
  font-weight: 900;
}

.faq-list {
  grid-template-columns: repeat(3, 1fr);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 40px;
  align-items: center;
  background: var(--red);
  color: #ffffff;
}

.contact-section .eyebrow,
.contact-section p {
  color: #ffffff;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: #ffffff;
  color: var(--ink);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card .contact-name {
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
}

.contact-card a {
  display: block;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer img {
  width: 112px;
  margin-bottom: 8px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .entity-panel,
  .verification-section,
  .visual-proof,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    min-height: auto;
  }

  .hero-visual {
    height: min(78vw, 560px);
  }

  .fact-strip,
  .simple-grid,
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand img {
    width: 104px;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 11px;
  }

  nav {
    gap: 18px;
    font-size: 12px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
  }

  .fact-strip,
  .simple-grid,
  .culture-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .fact-strip div,
  .simple-grid article,
  .culture-grid article,
  .faq-list article {
    min-height: auto;
  }

  .entity-answer {
    padding-left: 18px;
  }

  .site-footer {
    display: block;
  }
}
