:root {
  color-scheme: light;
  --ink: #1d2528;
  --muted: #586669;
  --paper: #fffaf1;
  --surface: #ffffff;
  --line: #e5ddd0;
  --field: #fbf7ee;
  --green: #315d4f;
  --green-dark: #183a32;
  --yellow: #f2bf4f;
  --coral: #d96f57;
  --blue: #4f7796;
  --shadow: 0 22px 60px rgba(29, 37, 40, 0.2);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(24, 58, 50, 0.58);
  font-size: 0.8rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/weekend-sorted-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 30, 28, 0.91) 0%, rgba(18, 30, 28, 0.66) 38%, rgba(18, 30, 28, 0.18) 70%),
    linear-gradient(0deg, rgba(18, 30, 28, 0.24), rgba(18, 30, 28, 0.05));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  align-items: end;
  gap: clamp(28px, 7vw, 96px);
  width: min(1180px, calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 118px 0 54px;
}

.hero-copy {
  max-width: 680px;
  padding-bottom: 6vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.25rem, 13vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--yellow);
  color: #1b2424;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button.full {
  width: 100%;
}

.signup-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.signup-panel h2 {
  margin-bottom: 18px;
  font-size: 1.5rem;
  line-height: 1.1;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 82px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 191, 79, 0.42);
  border-color: var(--yellow);
}

.form-scroll {
  max-height: min(54vh, 520px);
  overflow: auto;
  padding-right: 8px;
}

fieldset {
  margin: 0 0 16px;
  border: 0;
  padding: 0;
}

legend {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.choice-row,
.choice-stack {
  display: grid;
  gap: 8px;
}

.choice-row.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice-row label,
.choice-stack label {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: var(--field);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.choice-row input,
.choice-stack input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  accent-color: var(--green);
}

.hidden-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.success-modal[hidden] {
  display: none;
}

.success-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 28, 0.68);
  backdrop-filter: blur(6px);
}

.success-modal__panel {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.success-modal__eyebrow {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.success-modal__panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.success-modal__panel p:not(.success-modal__eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.58;
}

.form-note {
  min-height: 32px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.sample-strip,
.how,
.signup-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sample-strip {
  padding: 78px 0 66px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  color: var(--coral);
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pick-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-top: 8px solid currentColor;
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(29, 37, 40, 0.08);
}

.pick-card.outdoors {
  color: var(--green);
}

.pick-card.discovery {
  color: var(--blue);
}

.pick-card.experience {
  color: var(--coral);
}

.pick-card h3,
.pick-card p,
.pick-card dl {
  color: var(--ink);
}

.pick-card p {
  min-height: 112px;
  color: var(--muted);
  line-height: 1.55;
}

.pick-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pick-topline strong {
  border-radius: 999px;
  padding: 6px 9px;
  background: #f5efe3;
  color: var(--green-dark);
  font-size: 0.72rem;
}

dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 900;
}

.how {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 7vw, 88px);
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.how .eyebrow {
  color: var(--blue);
}

.how-copy p:not(.eyebrow),
.signup-band p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fffdf8;
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.signup-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--green-dark);
  color: #fff;
}

.signup-band .eyebrow {
  color: var(--yellow);
}

.signup-band p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.signup-band h2 {
  max-width: 720px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--green-dark);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 104px 0 34px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .signup-panel {
    max-width: 520px;
  }

  .section-heading,
  .pick-grid,
  .how {
    grid-template-columns: 1fr;
  }

  .pick-card {
    min-height: 0;
  }

  .pick-card p {
    min-height: auto;
  }

  .signup-band,
  footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-inner,
  .sample-strip,
  .how,
  .signup-band {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3.5rem, 23vw, 5rem);
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 30, 28, 0.92), rgba(18, 30, 28, 0.55)),
      linear-gradient(0deg, rgba(18, 30, 28, 0.42), rgba(18, 30, 28, 0.08));
  }
}
