:root {
  --dramamine-yellow: #fecb00;
  --ink: #1f1f21;
  --error: #b00020;
  --cream: #fff7d0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

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

.page {
  width: 100%;
  margin: 0 auto;
}

.page-form {
  min-height: 100vh;
  background: var(--dramamine-yellow);
  padding: 0;
}

.hero-image,
.footer-image,
.static-page img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.reward-form {
  width: min(100% - 32px, 690px);
  margin: 34px auto 44px;
  text-align: center;
}

.reward-form h1 {
  margin: 0 0 30px;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 64px;
  margin-bottom: 22px;
}

.field {
  text-align: left;
}

.field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field input {
  width: 100%;
  min-height: 42px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.74);
  color: #333333;
  font-size: 1rem;
  outline: none;
}

.field input:focus {
  border-color: #111111;
  background: var(--white);
}

.field input[aria-invalid="true"] {
  border-color: var(--error);
  background: #fff2f2;
}

.field-error {
  min-height: 18px;
  margin: 6px 14px 0;
  color: var(--error);
  font-size: 0.875rem;
  font-weight: 700;
}

.privacy-copy {
  width: min(100%, 520px);
  margin: 2px auto 20px;
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 800;
}

.error-summary {
  width: min(100%, 560px);
  margin: 0 auto 16px;
  border: 2px solid var(--error);
  background: #fff3f3;
  color: var(--error);
  padding: 12px 16px;
  font-weight: 800;
  text-align: left;
}

.captcha-wrap {
  display: grid;
  justify-content: center;
  margin-bottom: 10px;
}

.recaptcha-fallback {
  display: none;
  width: 232px;
  min-height: 54px;
  align-items: center;
  border: 1px solid #d9d9d9;
  background: #f9f9f9;
  color: #333333;
  padding: 12px;
  text-align: left;
  font-size: 0.8rem;
}

.recaptcha-fallback label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recaptcha-fallback input {
  width: 20px;
  height: 20px;
}

.submit-button {
  width: min(100%, 230px);
  min-height: 48px;
  border: 0;
  background: #000000;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.submit-button:hover,
.submit-button:focus {
  background: #2b2b2b;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.static-page {
  background: var(--dramamine-yellow);
  min-height: 100vh;
}

.static-page img {
  width: 100%;
}

body.recaptcha-unavailable .g-recaptcha {
  display: none;
}

body.recaptcha-unavailable .recaptcha-fallback {
  display: flex;
}

@media (max-width: 720px) {
  .field-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reward-form {
    margin-top: 24px;
  }
}
