:root {
  --page-width: 900px;
  --grid-gap: 4rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
}

h1 {
  font-family: "Lexend Giga", sans-serif;
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #818479;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.options-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--grid-gap);
  width: 100%;
}

.option {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.col-label {
  font-family: "Lexend Giga", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.card {
  background: #d5e8c4;
  border: 2px solid #7a8a6a;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  font-size: 15px;
  line-height: 1.7;
  color: #583a28;
  position: relative;
  font-family: "Abhaya Libre", serif;
}

.card a {
  color: #8b2020;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.card a:hover {
  color: #b03030;
}

.sparkle {
  position: absolute;
  color: #7aaa60;
  font-size: clamp(13px, 1vw, 22px);
  line-height: 1;
}

.sparkle.top-right  { top: -8px;    right: -8px; }
.sparkle.bottom-left { bottom: -8px; left: -8px; }

.arrows {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.arrow {
  font-size: 2rem;
  color: #c0392b;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
}

.arrow.flip {
  transform: scaleX(-1);
}

.note {
  max-width: 260px;
  text-align: center;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}

.cw-divider {
  border: none;
  border-top: 2px dashed #c8ddb8;
  margin: 2.5rem 0 0;
  width: 100%;
}

.cw-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--grid-gap);
  width: 100%;
}

.draw-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.draw-list li::before {
  content: "• ";
  color: #7aaa60;
}

.cw-note {
  background: #f5c8a8;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  font-size: 13px;
  color: #5a3010;
  line-height: 1.6;
  max-width: 320px;
  margin: 2rem auto 0;
  text-align: center;
  transform: rotate(-1deg);
  font-family: "Abhaya Libre", serif;
}

/* BACK LINK */
.back-link {
  font-family: "Abhaya Libre", serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #707468;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 2rem;
}

.back-link:hover {
  opacity: 0.6;
}

/* MOBIILI */
@media (max-width: 600px) {
  h1 { font-size: clamp(2rem, 10vw, 3rem); }

  .page {
    padding: 2rem 1rem;
  }

  .options-wrapper {
    grid-template-columns: 1fr;
  }

  .option {
    margin-bottom: 1.5rem;
  }

  .col-label {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .arrow:first-child { display: none; }

  .cw-header {
    grid-template-columns: 1fr;
  }

  .back-link {
    font-size: 1rem;
    text-align: left;
  }
}

/* ULTRAWIDE */
@media (min-width: 2000px) {
  :root {
    --page-width: 1800px;
    --grid-gap: 6rem;
  }

  h1 {
    font-size: clamp(4rem, 5vw, 7rem);
  }

  .card {
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    padding: 2rem 2.5rem;
  }

  .note {
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    max-width: 400px;
  }

  .col-label {
    font-size: clamp(1.5rem, 1.8vw, 2.5rem);
  }

  .sparkle.top-right  { top: -14px;  right: -14px; }
  .sparkle.bottom-left { bottom: -14px; left: -14px; }

  .cw-note {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    max-width: 500px;
    padding: 1.5rem 2rem;
  }
}
