:root {
  --ink: #141816;
  --muted: #5c6560;
  --paper: #f4f6f4;
  --sheet: #ffffff;
  --line: rgba(20, 24, 22, 0.1);
  --clay: #146b45;
  --clay-hot: #1c8f58;
  --lime: #d6f56a;
  --pine: #12241f;
  --pine-deep: #0c1916;
  --mist: #e7f0ea;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --wide: 1140px;
  --read: 680px;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(16, 32, 28, 0.12);
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(214, 245, 106, 0.45), transparent 22rem),
    radial-gradient(circle at 100% 0, rgba(20, 107, 69, 0.1), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--clay-hot);
  outline-offset: 3px;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 30;
  padding: 8px 12px;
  color: var(--sheet);
  background: var(--pine);
  border-radius: 999px;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

.frame {
  width: min(calc(100% - 40px), var(--wide));
  margin-inline: auto;
}

.reading {
  width: min(calc(100% - 40px), var(--read));
  margin-inline: auto;
}

.notice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding: 7px 16px;
  color: #f6f3ee;
  background: var(--pine-deep);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.notice-bar strong {
  padding: 3px 8px;
  color: #102117;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  width: min(calc(100% - 24px), var(--wide));
  margin: 12px auto 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 24, 22, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(16, 32, 28, 0.06);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 24px;
  align-items: center;
  width: auto;
  min-height: 72px;
  padding-inline: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.logo__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--lime);
  background: #102117;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 1.35rem;
  line-height: 1;
}

.logo__mark svg {
  display: block;
}

.logo__words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.logo__place {
  margin-top: 3px;
  color: var(--clay);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.issue {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 8px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(20, 24, 22, 0.05);
}

.site-nav a[aria-current="page"] {
  color: #102117;
  background: var(--lime);
  box-shadow: none;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 36px 0 8px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-hero h1,
.page-intro h1 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.story-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 5vw, 4.7rem);
  font-weight: 700;
}

.page-intro h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.rule {
  width: 64px;
  height: 4px;
  margin: 22px 0;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(214, 245, 106, 0.35);
  border-radius: 999px;
}

.deck {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.55;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 7px 12px;
  color: #102117;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.byline span {
  display: inline-flex;
  align-items: center;
  margin-right: 14px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.byline span + span::before {
  content: none;
}

.story-hero__figure {
  position: relative;
  margin: 0;
}

.story-hero__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  background: var(--mist);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.story-hero__figure figcaption {
  position: static;
  margin: 12px 0 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.86rem;
  line-height: 1.45;
}

.scene figcaption,
.band-photo figcaption,
.about-hero figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.disclosure {
  width: min(calc(100% - 40px), var(--read));
  margin: 36px auto 0;
  padding: 16px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 0.92rem;
}

.disclosure strong {
  color: var(--ink);
}

.prose p {
  margin: 0 0 1.05rem;
}

.prose a {
  color: var(--clay);
  font-weight: 600;
  text-underline-offset: 3px;
}

.drop::first-letter {
  float: left;
  margin: 0.06em 0.08em 0 0;
  color: var(--clay-hot);
  font-family: var(--sans);
  font-size: 3.4rem;
  line-height: 0.78;
}

.chapter {
  margin-top: 2.8rem;
}

.chapter h2,
.legal-section h2 {
  font-family: var(--sans);
}

.chapter h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.scene {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 28px 40px;
  align-items: center;
  width: min(calc(100% - 40px), 1040px);
  margin: 48px auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 32px;
}

.scene--flip {
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
}

.scene--flip .scene__media {
  order: 2;
}

.scene img,
.band-photo img,
.offer__media img,
.about-hero img {
  width: 100%;
  object-fit: cover;
  background: var(--mist);
}

.scene img,
.band-photo img,
.about-hero img {
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(16, 32, 28, 0.1);
}

.scene img {
  aspect-ratio: 16 / 10;
}

.scene--portrait img {
  aspect-ratio: 3 / 4;
  max-height: 620px;
  margin-inline: auto;
}

.scene__copy h3 {
  color: var(--ink);
  margin: 8px 0 10px;
  font-family: var(--sans);
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.scene__copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.pull {
  width: min(calc(100% - 40px), 860px);
  margin: 48px auto;
  padding: 32px 36px 28px;
  background: var(--sheet);
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.pull p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.pull p::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  color: var(--clay-hot);
  font-size: 3.2rem;
  line-height: 0.7;
}

.pull cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.band-photo {
  width: min(calc(100% - 40px), 1040px);
  margin: 36px auto 8px;
}

.band-photo img {
  aspect-ratio: 16 / 8;
  max-height: 480px;
}

.facts {
  margin-top: 64px;
  padding: 72px 0;
  background:
    radial-gradient(circle at 90% 0, rgba(214, 245, 106, 0.16), transparent 18rem),
    var(--pine);
  border-radius: 40px 40px 0 0;
}

.facts__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  color: #f6f3ee;
}

.facts__head h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.facts__head p {
  margin: 0;
  color: #c9d8d1;
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.fact {
  min-height: 190px;
  padding: 22px 20px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
}

.fact span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 28px;
  margin-bottom: 18px;
  padding: 0 8px;
  color: #146b45;
  background: #e7f6df;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.fact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.verdict {
  padding-top: 12px;
}

.offer {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  width: min(calc(100% - 40px), var(--wide));
  margin: 28px auto 72px;
  overflow: hidden;
  color: #f7f3ec;
  background:
    radial-gradient(circle at 0 0, rgba(214, 245, 106, 0.28), transparent 16rem),
    linear-gradient(155deg, #1b3832, #0d1c19 58%);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.offer__media img {
  height: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 5;
  object-position: center;
}

.offer__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 40px 40px 34px;
}

.offer__stamp {
  margin: 0;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer__body h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.offer__product {
  margin: 0;
  font-size: 0.98rem;
}

.offer__specs {
  margin: 0;
  color: #d7e6de;
  font-size: 0.95rem;
}

.offer__status {
  width: fit-content;
  margin: 4px 0 0;
  padding: 6px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.offer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  margin-top: 8px;
  padding: 0 22px;
  color: #102117;
  background: var(--lime);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.offer__button::after {
  content: "→";
  margin-left: 8px;
}

.offer__button:hover {
  color: #102117;
  background: #fff;
}

.offer__fine {
  max-width: 42rem;
  margin: 4px 0 0;
  color: #d5e3db;
  font-size: 0.8rem;
  line-height: 1.5;
}

.site-footer {
  padding: 56px 0 28px;
  color: #e7efe9;
  background: var(--pine-deep);
  border-radius: 36px 36px 0 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 252, 247, 0.12);
}

.site-footer .logo__name,
.site-footer .logo__mark {
  color: #fffcf7;
}

.site-footer .logo__place {
  color: var(--lime);
}

.site-footer__blurb,
.site-footer__legal,
.site-footer address {
  color: #d5e0da;
  font-style: normal;
}

.site-footer__blurb {
  max-width: 28rem;
  margin: 14px 0 0;
}

.site-footer__label {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 8px;
}

.site-footer__links a {
  width: fit-content;
}

.site-footer__legal {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.site-footer__legal a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__copy {
  margin: 18px 0 0;
  color: #b7c6bf;
  font-size: 0.78rem;
}

.page-intro {
  padding: 48px 0 8px;
}

.page-intro p {
  max-width: 40rem;
  color: var(--muted);
}

.legal-section {
  margin-top: 2rem;
}

.legal-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: #343a37;
}

.legal-section a {
  color: var(--clay);
  font-weight: 600;
  text-underline-offset: 3px;
}

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-card,
.note-card,
.form-sheet {
  margin: 0 0 1rem;
  padding: 18px 18px 6px;
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.note-card {
  padding-bottom: 14px;
  background: #fff4ef;
  border-color: #f3d0c4;
}

.form-sheet {
  margin-top: 12px;
  padding: 18px;
  border-style: solid;
}

.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(calc(100% - 40px), var(--wide));
  margin: 28px auto 10px;
}

.contact-card {
  padding: 22px;
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(16, 32, 28, 0.05);
}

.contact-card h2 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--clay);
  font-weight: 700;
  text-underline-offset: 3px;
}

.about-hero {
  width: min(calc(100% - 40px), var(--wide));
  margin: 18px auto 0;
}

.about-hero img {
  aspect-ratio: 16 / 7;
  max-height: 460px;
}

.about-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
  width: min(calc(100% - 40px), var(--wide));
  margin: 28px auto 72px;
}

.about-panel {
  padding: 26px;
  color: #f4efe8;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 245, 106, 0.28), transparent 12rem),
    var(--pine);
  border-radius: 28px;
}

.about-panel h2 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.about-panel p {
  margin: 0 0 12px;
  color: #d7e3dc;
}

.about-panel a {
  color: #fff;
}

@media (max-width: 900px) {
  .story-hero,
  .facts__head,
  .facts__grid,
  .offer,
  .site-footer__grid,
  .contact-grid,
  .about-split,
  .scene,
  .scene--flip {
    grid-template-columns: 1fr;
  }

  .scene--flip .scene__media {
    order: 0;
  }

  .story-hero {
    gap: 28px;
    padding-top: 28px;
  }

  .story-hero h1 {
    max-width: none;
  }

  .issue {
    display: none;
  }

  .site-header {
    top: 8px;
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px 12px 10px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding: 8px 12px;
  }

  .offer__media img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .offer__body {
    padding: 24px 20px 22px;
  }

  .offer__button,
  .offer__status {
    width: 100%;
  }

  .facts {
    border-radius: 28px 28px 0 0;
    padding: 48px 0;
  }

  .pull {
    padding: 24px 20px 20px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1.02rem;
  }

  .frame,
  .reading,
  .disclosure,
  .scene,
  .pull,
  .band-photo,
  .offer,
  .contact-grid,
  .about-hero,
  .about-split {
    width: min(calc(100% - 28px), var(--wide));
  }

  .site-header {
    width: min(calc(100% - 16px), var(--wide));
  }

  .notice-bar {
    justify-content: flex-start;
    text-align: left;
  }

  .story-hero h1,
  .page-intro h1 {
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
