:root {
  --forest: #101713;
  --forest-soft: #19231d;
  --pine: #25372c;
  --moss: #667363;
  --paper: #ddd7c8;
  --paper-deep: #c7beaa;
  --ink: #ede8dc;
  --muted: #a9afa6;
  --amber: #d2a45e;
  --amber-light: #edc985;
  --line: rgba(237, 232, 220, .17);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--forest);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .12;
  background:
    repeating-linear-gradient(112deg, transparent 0 8px, rgba(237,232,220,.025) 8px 9px, transparent 9px 17px),
    repeating-radial-gradient(circle at 20% 30%, transparent 0 3px, rgba(237,232,220,.025) 3px 4px, transparent 4px 9px);
  background-size: 41px 47px, 31px 37px;
}
a { color: inherit; }
button, input { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--paper);
  color: var(--forest);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: 76px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(16, 23, 19, .88);
  border-color: var(--line);
  backdrop-filter: blur(15px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
  font-weight: 600;
}
.pine-mark { width: 21px; height: 28px; position: relative; display: inline-block; }
.pine-mark i {
  position: absolute;
  left: 50%;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid currentColor;
  transform: translateX(-50%);
  opacity: .9;
}
.pine-mark i:nth-child(1) { top: 0; }
.pine-mark i:nth-child(2) { top: 7px; border-left-width: 9px; border-right-width: 9px; }
.pine-mark i:nth-child(3) { top: 15px; border-left-width: 11px; border-right-width: 11px; }
.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  color: rgba(237,232,220,.78);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--amber-light); }
.nav-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 9rem clamp(1.5rem, 9vw, 10rem) 5rem;
  isolation: isolate;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/pine-forest-hero-hand-drawn.png") center center / cover no-repeat;
  transform: scale(1.015);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,13,10,.82) 0%, rgba(7,13,10,.6) 37%, rgba(7,13,10,.12) 70%, rgba(7,13,10,.15) 100%),
    linear-gradient(0deg, rgba(7,13,10,.52), transparent 45%);
}
.hero-content { max-width: 700px; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--amber-light);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .68rem;
  font-weight: 600;
}
.eyebrow.dark { color: #6c5534; }
h1, h2, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 300; }
h1 {
  margin: 0 0 1.6rem;
  font-size: clamp(5rem, 11vw, 10.5rem);
  line-height: .76;
  letter-spacing: -.055em;
  text-shadow: 0 8px 36px rgba(0,0,0,.3);
}
h1 em, h2 em { color: var(--amber-light); font-weight: 300; }
.hero-line {
  max-width: 610px;
  margin-bottom: 2.4rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: rgba(237,232,220,.9);
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(237,232,220,.48);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
}
.hero-note {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4.5rem);
  bottom: 2rem;
  margin: 0;
  color: rgba(237,232,220,.62);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .6rem;
}

.section { padding: clamp(6.5rem, 12vw, 12rem) clamp(1.5rem, 9vw, 10rem); }
.section-label {
  color: #62685f;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .63rem;
}
.about {
  display: grid;
  grid-template-columns: minmax(140px, .35fr) 1.65fr;
  gap: 3rem;
  background: var(--paper);
  color: #202820;
}
.about-copy { max-width: 1080px; }
.about h2, .sound h2, .follow h2 {
  margin-bottom: 3rem;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: .94;
  letter-spacing: -.04em;
}
.about h2 em { color: #775f3d; }
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 900px;
  margin-left: auto;
}
.about-columns p { color: #555e54; }
.about-columns p:first-child {
  color: #273027;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.4;
}

.feeling {
  min-height: 78vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(210,164,94,.11), transparent 28rem),
    #17211b;
}
.feeling-intro {
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .68rem;
}
blockquote { max-width: 1050px; margin: 1rem auto 4rem; }
blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.feeling-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; }
.feeling-notes span {
  padding: .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .62rem;
}
.light-ribbon {
  position: absolute;
  width: 26vw;
  height: 110vh;
  top: -20vh;
  left: 52%;
  background: linear-gradient(100deg, transparent, rgba(237,201,133,.08), transparent);
  transform: rotate(18deg);
  filter: blur(12px);
}

.sound { background: #0e1511; }
.sound-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}
.sound-heading { position: sticky; top: 8rem; }
.sound-copy { padding-top: 5rem; }
.sound-copy > p { color: #b4b9b1; font-size: 1.02rem; }
.sound-list { margin-top: 3rem; border-top: 1px solid var(--line); }
.sound-list span {
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .65rem;
}

.principle {
  background: var(--paper-deep);
  color: #202820;
}
.principle-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.principle-statement {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}

.follow { background: #1c2921; text-align: center; }
.follow-copy { max-width: 780px; margin: 0 auto 3rem; }
.follow-copy > p:last-child { max-width: 560px; margin: 0 auto; color: var(--muted); }
.signup-form {
  display: flex;
  max-width: 720px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(237,232,220,.4);
}
.signup-form input {
  flex: 1;
  min-width: 0;
  padding: 1.15rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}
.signup-form input::placeholder { color: rgba(237,232,220,.45); }
.signup-form button {
  border: 0;
  background: transparent;
  color: var(--amber-light);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
}
.form-note { margin: .7rem 0 0; color: #7f897f; font-size: .6rem; }
.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: 5rem auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.platforms a {
  min-height: 82px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.18rem;
  transition: background .2s ease;
}
.platforms a:last-child { border-right: 0; }
.platforms a:hover { background: rgba(255,255,255,.035); }
.platforms a span { color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  align-items: end;
  padding: 4rem clamp(1.5rem, 9vw, 10rem);
  background: #090e0b;
}
.footer-contact { display: flex; flex-direction: column; gap: .3rem; }
.footer-contact span, .footer-meta {
  color: #81877f;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .58rem;
}
.footer-contact a { text-decoration: none; font-family: var(--serif); font-size: 1.15rem; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; }
.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  max-width: min(360px, calc(100vw - 2.5rem));
  padding: .8rem 1rem;
  color: var(--forest);
  background: var(--paper);
  box-shadow: 0 10px 40px rgba(0,0,0,.32);
  transform: translateY(160%);
  transition: transform .25s ease;
  font-size: .75rem;
}
.toast.show { transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-header { min-height: 68px; }
  .nav-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { width: 24px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: .5rem 1.5rem 1.5rem;
    background: rgba(16,23,19,.97);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .about, .sound-grid { grid-template-columns: 1fr; }
  .about { gap: 2rem; }
  .about-columns { margin-left: 0; }
  .sound-heading { position: static; }
  .sound-copy { padding-top: 0; }
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .platforms a:nth-child(2) { border-right: 0; }
  .platforms a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; align-items: flex-start; }
}

@media (max-width: 580px) {
  body { font-size: 15px; }
  .hero { min-height: 100svh; padding-inline: 1.25rem; align-items: flex-end; padding-bottom: 7rem; }
  .hero-image { background-position: 61% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7,13,10,.87) 0%, rgba(7,13,10,.54) 53%, rgba(7,13,10,.15) 100%),
      linear-gradient(90deg, rgba(7,13,10,.4), transparent);
  }
  h1 { font-size: clamp(4.4rem, 23vw, 7rem); }
  .hero-note { left: 1.25rem; right: auto; }
  .section { padding-inline: 1.25rem; }
  .about-columns { grid-template-columns: 1fr; gap: 1rem; }
  .about h2, .sound h2, .follow h2 { font-size: clamp(2.9rem, 15vw, 4.8rem); }
  blockquote p, .principle-statement { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .signup-form { flex-direction: column; border: 0; gap: .75rem; }
  .signup-form input { text-align: center; border-bottom: 1px solid rgba(237,232,220,.4); }
  .signup-form button { min-height: 46px; border: 1px solid rgba(237,201,133,.5); }
  .platforms { grid-template-columns: 1fr; }
  .platforms a, .platforms a:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .platforms a:last-child { border-bottom: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 2rem; }
  .footer-meta { grid-column: auto; }
}
