:root {
  --black: #111111;
  --white: #ffffff;
  --tan: #efe6d8;
  --burnt-orange: #c45a1a;

  font-family: -apple-system, system-ui, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--black);

  /* Background image */
  background-image: url("./background.jpeg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Dark + warm overlay for readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(17,17,17,0.45) 0%,
      rgba(17,17,17,0.25) 50%,
      rgba(17,17,17,0.45) 100%
    ),
    rgba(239,230,216,0.18);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;

  max-width: 820px;
  margin: 0 auto;
  padding: 34px 20px;
}

/* Header */
.hdr h1 {
  margin: 0 0 6px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hdr p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.4;
  color: #f2f2f2;
}

/* Card */
.card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

/* Website link bar */
.sitebar {
  text-align: center;
  margin-bottom: 14px;
}

.sitelink {
  color: var(--burnt-orange);
  font-weight: 600;
  text-decoration: underline;
}

/* Questions */
.qprompt {
  font-size: 22px;
  margin: 0 0 16px;
}

.opts {
  display: grid;
  gap: 12px;
}

.opt {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 16px;
  padding: 16px;
  font-size: 18px;
  cursor: pointer;
  background: #fff;
}

.opt:hover {
  border-color: var(--burnt-orange);
}

.opt input {
  transform: scale(1.4);
  accent-color: var(--burnt-orange);
}

.opt span {
  line-height: 1.2;
}

/* Actions */
.actions {
  display: flex;
  margin-top: 20px;
}

.actions.single {
  justify-content: center;
}

.btn {
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  background: var(--black);
  color: var(--white);
}

.btn:hover {
  background: var(--burnt-orange);
}

/* Footer */
.footer {
  margin-top: 18px;
  text-align: center;
}

.link {
  border: 0;
  background: transparent;
  color: #555;
  text-decoration: underline;
  font-size: 14px;
}

.tagline {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 6px;
}

.hidden {
  display: none;
}

.small {
  font-size: 14px;
  color: #666;
}

/* ---------- Mobile responsiveness ---------- */
@media (max-width: 520px) {
  .wrap {
    padding: 20px 14px;
  }

  .hdr h1 {
    font-size: 26px;
  }

  .hdr p {
    font-size: 14px;
  }

  .card {
    padding: 16px;
    border-radius: 16px;
  }

  .qprompt {
    font-size: 18px;
  }

  .opt {
    font-size: 16px;
    padding: 14px;
  }

  .btn {
    font-size: 17px;
    padding: 14px;
  }
}

@media (max-width: 360px) {
  .hdr h1 {
    font-size: 24px;
  }
}
