/* The Valley Scoop — landing styles */

:root {
  --slate-900: #1b2733;
  --slate-950: #10181f;
  --ink: #24313d;
  --ink-soft: #4d5c68;
  --paper: #faf5ec;
  --paper-card: #fffdf8;
  --paper-edge: #e8dfcd;
  --rust: #b14e26;
  --rust-deep: #8f3e1d;
  --gold: #e9a83e;
  --sky-text: #f3efe6;
  --sky-text-dim: #b9c2c9;
  --measure: 44rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Atkinson Hyperlegible", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.6;
}

a { color: var(--rust); text-underline-offset: 3px; }
a:hover { color: var(--rust-deep); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(90rem 42rem at 50% 118%, rgba(233, 168, 62, 0.34), rgba(177, 78, 38, 0.12) 45%, transparent 68%),
    var(--slate-900);
  color: var(--sky-text);
  text-align: center;
  padding: 4.5rem 1.25rem 0;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--measure);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: rise 0.9s ease-out both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(0.75rem); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-inner { animation: none; }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.masthead {
  font-family: "Alfa Slab One", "Atkinson Hyperlegible", serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 4.75rem);
  line-height: 1.05;
  margin: 0.75rem 0 1rem;
  letter-spacing: 0.01em;
}

.tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--sky-text);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.tagline strong { color: var(--gold); font-weight: 700; }

.signup { max-width: 30rem; margin: 0 auto; }

/*
  BEEHIIV EMBED — once your publication exists, replace the placeholder src below
  (beehiiv: Grow -> Subscribe Forms -> Embed -> copy the embeds.beehiiv.com URL).
  Until then the iframe is hidden and the button link is the signup path;
  point the button at your beehiiv signup page URL.
*/
.embed-slot iframe {
  width: 100%;
  height: 3.5rem;
  border: 0;
  border-radius: 0.5rem;
  display: none; /* set to block once the real embed src is in place */
}

.btn {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 2px 0 var(--rust-deep);
}

.btn:hover { background: var(--rust-deep); color: #fff; }

.micro {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--sky-text-dim);
}

.skyline {
  display: block;
  width: 100%;
  max-height: 13rem;
  margin-top: 3.5rem;
  color: var(--slate-950);
}

/* ---------- sections ---------- */

.section {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.section + .section { border-top: 1px solid var(--paper-edge); }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.6rem;
}

.section h2 {
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

/* ---------- mock issue ---------- */

.issue-card {
  background: var(--paper-card);
  border: 1px solid var(--paper-edge);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px -18px rgba(27, 39, 51, 0.35);
  overflow: hidden;
}

.issue-meta {
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid var(--paper-edge);
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.issue-body { padding: 1.4rem; }

.issue-body h3 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 1.3rem 0 0.4rem;
}

.issue-body h3:first-child { margin-top: 0; }

.issue-body ul { list-style: none; }

.issue-body li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.issue-body li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.issue-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

/* ---------- value props ---------- */

.props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 2rem;
}

.props h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.props p { font-size: 0.95rem; color: var(--ink-soft); }

.prop-mark {
  color: var(--rust);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ---------- colin ---------- */

.colin { display: flex; gap: 1.25rem; align-items: flex-start; }

.colin-mark {
  flex: none;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--slate-900);
  color: var(--gold);
  font-family: "Alfa Slab One", serif;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
}

.colin blockquote p { margin-bottom: 0.9rem; }

.colin cite {
  font-style: normal;
  font-weight: 700;
  color: var(--rust);
}

/* ---------- closing cta ---------- */

.cta-final { text-align: center; }
.cta-final .micro { color: var(--ink-soft); }

/* ---------- footer ---------- */

.footer {
  background: var(--slate-900);
  color: var(--sky-text-dim);
  text-align: center;
  padding: 2.5rem 1.25rem;
  font-size: 0.9rem;
}

.footer a { color: var(--sky-text); }

.footer p + p { margin-top: 0.5rem; }

/* ---------- privacy page ---------- */

.page-header {
  background: var(--slate-900);
  color: var(--sky-text);
  text-align: center;
  padding: 2.5rem 1.25rem;
}

.page-header a { color: var(--gold); text-decoration: none; }

.page-header .masthead { font-size: clamp(1.6rem, 5vw, 2.2rem); margin: 0; }

.prose { max-width: var(--measure); margin: 0 auto; padding: 3rem 1.25rem; }
.prose h2 { font-size: 1.25rem; margin: 2rem 0 0.6rem; }
.prose p, .prose li { margin-bottom: 0.8rem; color: var(--ink); }
.prose ul { padding-left: 1.4rem; }
