:root {
  --red: #c91218;
  --red-dark: #8f080d;
  --cream: #fff4ce;
  --gold: #f3ce72;
  --ink: #24130f;
  --muted: #6e5a52;
  --line: #ead6bd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--red-dark);
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(36, 19, 15, 0.45), rgba(201, 18, 24, 0.24)),
    var(--red-dark);
  color: var(--ink);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
}

.hero {
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(20px, 4vw, 64px);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.poster {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(23, 8, 6, 0.36);
}

.poster img {
  display: block;
  width: 100%;
  height: auto;
}

.poster-primary {
  width: min(100%, 540px);
}

.signup {
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(23, 8, 6, 0.28);
}

.form-intro {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--red-dark);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-intro p:not(.eyebrow) {
  max-width: 34rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 1.48;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin: 0 0 7px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

select {
  cursor: pointer;
}

input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 206, 114, 0.36);
}

.radio-field {
  margin: 0;
  border: 0;
  padding: 0;
}

.radio-field legend {
  display: block;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.radio-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.radio-option {
  min-height: 52px;
  margin: 0;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  text-transform: none;
}

.radio-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.submit {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.submit:hover,
.submit:focus-visible {
  background: var(--red-dark);
}

.form-message {
  min-height: 1.2em;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.simple-card {
  width: min(100%, 760px);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(23, 8, 6, 0.28);
}

.simple-card h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.simple-card p,
.simple-card li {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.button-link {
  min-height: 52px;
  margin-top: 16px;
  padding: 0 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 18px;
  }

  .poster-primary {
    width: 100%;
  }

}

@media (max-width: 620px) {
  .hero {
    gap: 18px;
    padding: 12px;
  }

  .signup {
    padding: 22px 16px;
  }

  h1 {
    font-size: clamp(1.7rem, 10vw, 2.6rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  input,
  select {
    height: 48px;
    font-size: 0.95rem;
  }

  .submit {
    min-height: 52px;
  }
}
