:root {
  --paper: #f3f6f3;
  --ink: #14241e;
  --muted: #5d6d66;
  --line: #d7e2dc;
  --card: #ffffff;
  --forest: #12352c;
  --leaf: #1d6b52;
  --citrus: #e7ff6a;
  --shadow: 0 18px 50px rgba(18, 53, 44, 0.08);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", "Avenir Next", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(231, 255, 106, 0.35), transparent 60%),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--leaf); }
button, a { -webkit-tap-highlight-color: transparent; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--citrus);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { top: 12px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(243, 246, 243, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}
.brand svg { display: block; }
.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 36px;
  align-items: stretch;
  width: min(1180px, calc(100% - 40px));
  margin: 12px auto 42px;
  padding: 36px 28px 36px 28px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(420px 240px at 100% 0%, rgba(231, 255, 106, 0.22), transparent 70%),
    var(--forest);
  color: #f4f7f5;
  box-shadow: 0 28px 70px rgba(18, 53, 44, 0.18);
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 10px 6px 8px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--citrus);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero .kicker {
  align-self: flex-start;
  background: var(--citrus);
  color: var(--forest);
}
.kicker span { color: #f4f7f5; letter-spacing: 0.04em; }
.hero .kicker span { color: rgba(18, 53, 44, 0.72); }
h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.3rem, 4.6vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.65rem);
  line-height: 1.02;
  color: #f6faf7;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--citrus);
}
.deck {
  max-width: 38rem;
  margin: 18px 0 0;
  font-size: 1.18rem;
  color: #24362f;
}
.hero .deck {
  color: #d5e4dc;
  font-size: 1.08rem;
  line-height: 1.55;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(244, 247, 245, 0.16);
  list-style: none;
}
.hero-facts li {
  min-width: 5.5rem;
}
.hero-facts strong {
  display: block;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--citrus);
}
.hero-facts span {
  display: block;
  margin-top: 4px;
  color: #b7c9c1;
  font-size: 0.78rem;
  font-weight: 600;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.hero .meta {
  margin-top: 22px;
  color: #b7c9c1;
  font-size: 0.8rem;
}
.hero-photo {
  margin: 0;
  position: relative;
  z-index: 1;
  min-height: 100%;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 68% center;
  border-radius: 22px;
}
.hero-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.4;
  box-shadow: 0 12px 30px rgba(18, 53, 44, 0.16);
}
.hero-photo figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--leaf);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.column {
  width: min(740px, calc(100% - 40px));
  margin: 0 auto;
}
.prose p { margin: 0 0 1.15rem; }
.prose .drop::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 0.8;
  color: var(--leaf);
}

.band {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 36px;
}
figure.band:not(.band--portrait) {
  width: min(720px, calc(100% - 40px));
}
.band img {
  width: 100%;
  height: auto;
  max-height: 405px;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.band--portrait {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
}
.band--portrait img {
  width: 100%;
  height: auto;
  max-height: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  min-width: 0;
  min-height: 0;
  justify-self: start;
  border-radius: 24px;
}
.band--portrait .caption {
  margin: 0;
}
.caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

h2 {
  margin: 2.4rem 0 0.8rem;
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 8px;
}
.bento article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 16px;
  min-height: 132px;
}
.bento strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.4;
}
.num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--leaf);
}

.note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.stat {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: end;
  background: var(--forest);
  color: #f4f7f5;
  border-radius: 28px;
  padding: 36px 40px;
}
.stat b {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(4.5rem, 8vw, 7rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--citrus);
}
.stat p { margin: 0; font-size: 1.25rem; max-width: 28rem; }
.stat small { display: block; margin-top: 12px; color: #b7c9c1; font-size: 0.78rem; }

.quote {
  margin: 28px 0;
  padding: 0;
  border: 0;
}
.quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.quote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
}

.offer {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--card);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.offer img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px;
}
.offer-body { padding: 12px 18px 12px 0; }
.tag {
  margin: 0 0 8px;
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer h3, .finale h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--citrus);
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
}
.btn:hover { transform: translateY(-1px); }
.fine {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.faq { display: grid; gap: 10px; margin: 12px 0 8px; }
.faq details {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.faq p { margin: 10px 0 0; color: #24362f; }

.finale {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 20px;
  padding: 36px 40px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(231, 255, 106, 0.22), transparent 42%),
    var(--forest);
  color: #f4f7f5;
}
.finale p { max-width: 36rem; color: #d7e4de; }
.finale .fine { color: #b7c9c1; }

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 10px auto 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.legal-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.page {
  width: min(760px, calc(100% - 40px));
  margin: 28px auto 48px;
}
.page h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}
.page h2 { font-size: 1.35rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  width: min(560px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px;
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.cookie.show { display: block; }
.cookie p { margin: 0 0 12px; font-size: 0.88rem; }
.cookie-row { display: flex; gap: 8px; }
.cookie button {
  flex: 1;
  border-radius: 999px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cookie .accept { background: var(--forest); color: var(--citrus); border: 0; }
.cookie .decline { background: transparent; border: 1px solid var(--line); color: var(--ink); }

.dock {
  display: none;
}

@media (max-width: 860px) {
  .hero, .band--portrait, .offer, .stat { grid-template-columns: 1fr; }
  .hero {
    gap: 22px;
    padding: 22px 16px 16px;
    border-radius: 24px;
  }
  .hero-photo img {
    height: 280px;
    min-height: 0;
    border-radius: 18px;
  }
  .hero-photo figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .hero-facts strong { font-size: 1.4rem; }
  .offer-body { padding: 4px 8px 12px; }
  .stat, .finale { padding: 24px; }
  .topbar { padding: 12px 16px; }
  .nav { gap: 12px; }
  .dock {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 15;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--citrus);
    color: var(--forest);
    text-decoration: none;
    font-weight: 800;
    box-shadow: var(--shadow);
  }
  body { padding-bottom: 72px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
