:root {
  --red: #ee2138;
  --red-dark: #c9142a;
  --ink: #090a0b;
  --paper: #f5f5f4;
  --white: #ffffff;
  --muted: #666a6d;
  --line: #dbdcde;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.site-shell { min-height: 100vh; }

.site-header {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(20px, 5vw, 68px);
  background: var(--white);
  border-bottom: 4px solid var(--red);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.header-label {
  color: #37393b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.intro {
  display: flex;
  min-height: 500px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 68px 24px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.full-logo {
  width: min(520px, 92vw);
  max-height: 220px;
  margin-bottom: 38px;
  object-fit: cover;
  border: 10px solid var(--white);
}

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

.eyebrow.dark { color: var(--red-dark); }

.intro h1,
.form-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
}

.intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: #d3d4d5;
  font-size: 17px;
  line-height: 1.6;
}

.intro-cta {
  margin-top: 27px;
  padding: 15px 22px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.intro-cta:hover { background: var(--red-dark); }

.form-section {
  scroll-margin-top: 20px;
  padding: 78px clamp(20px, 7vw, 108px);
  background: var(--white);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 36px;
}

.form-heading .eyebrow { margin-bottom: 13px; }
.form-heading h2 { font-size: clamp(36px, 5vw, 58px); }

.form-heading > p {
  max-width: 380px;
  margin: 0;
  padding-bottom: 2px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.form-frame {
  overflow: hidden;
  min-height: 1120px;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  box-shadow: 0 20px 54px rgba(0,0,0,.09);
}

.form-frame iframe {
  display: block;
  width: 100%;
  height: 1113px;
  border: 0;
  background: var(--white);
}

.form-fallback {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.form-fallback a {
  color: var(--red-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 7vw, 108px);
  background: var(--ink);
  color: #a9abad;
  font-size: 12px;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 700px) {
  .wordmark span { display: none; }
  .intro { min-height: 460px; padding-top: 52px; padding-bottom: 52px; }
  .full-logo { margin-bottom: 30px; }
  .form-section { padding-top: 60px; padding-bottom: 60px; }
  .form-heading { display: block; }
  .form-heading > p { margin-top: 18px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .full-logo { border-width: 6px; }
  .intro h1 { font-size: 44px; }
  .form-frame, .form-frame iframe { min-height: 1180px; height: 1180px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
