@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  --ink: #192b2a;
  --muted: #64716d;
  --paper: #f5f1e8;
  --paper-deep: #e9e1d3;
  --coral: #dc684d;
  --coral-dark: #a94435;
  --teal: #285956;
  --cream: #fffaf0;
  --line: rgba(25, 43, 42, .15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

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

.shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; color: var(--cream); background: var(--coral); border-radius: 50% 50% 50% 8px; font-family: Georgia, serif; font-size: 18px; }
nav { display: flex; gap: 28px; color: var(--muted); font-size: .88rem; }
nav a:hover, .text-link:hover, .legal-links a:hover { color: var(--coral-dark); }

.hero { min-height: 610px; padding: 90px 0 100px; display: grid; grid-template-columns: 1fr .95fr; gap: 72px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--coral-dark); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: 1.02; }
h1 { max-width: 620px; margin-bottom: 26px; font-size: clamp(3.8rem, 7vw, 6.6rem); font-weight: 700; }
h1 em, h2 em { color: var(--coral); font-family: 'Playfair Display', Georgia, serif; font-weight: 600; }
.hero-text { max-width: 470px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 21px; border-radius: 100px; font-size: .88rem; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--cream); background: var(--teal); }
.button-primary:hover { background: var(--coral-dark); }
.text-link { font-size: .86rem; font-weight: 700; }
.text-link span, .legal-links span { color: var(--coral); margin-left: 6px; }

.hero-art { position: relative; min-height: 420px; overflow: hidden; background: var(--teal); border-radius: 46% 46% 12px 46%; box-shadow: 18px 22px 0 var(--paper-deep); }
.sun { position: absolute; top: 54px; right: 64px; width: 76px; height: 76px; border-radius: 50%; background: #f1b75e; }
.bird { position: absolute; width: 22px; height: 10px; border-top: 2px solid #e5b46d; border-radius: 50%; }
.bird-one { top: 75px; left: 82px; transform: rotate(12deg); }
.bird-two { top: 101px; left: 124px; transform: rotate(-8deg) scale(.7); }
.book-art { position: absolute; left: 50%; bottom: 57px; width: 310px; height: 210px; transform: translateX(-50%) rotate(-7deg); filter: drop-shadow(0 18px 12px rgba(0,0,0,.18)); }
.page { position: absolute; bottom: 0; width: 50%; height: 100%; background: var(--cream); }
.page-left { left: 0; border-radius: 9px 2px 2px 24px; transform: skewY(8deg); }
.page-right { right: 0; border-radius: 2px 9px 24px 2px; transform: skewY(-8deg); }
.book-spine { position: absolute; left: calc(50% - 2px); bottom: 8px; width: 4px; height: 190px; background: #d7cbb7; }
.art-caption { position: absolute; left: 42px; bottom: 22px; color: #c4d1c9; font-size: .72rem; letter-spacing: .08em; }

.section { padding: 120px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 38px; }
h2 { max-width: 520px; margin-bottom: 0; font-size: clamp(2.6rem, 5vw, 4.5rem); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { min-height: 275px; padding: 28px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; }
.feature-card-accent { color: var(--cream); background: var(--coral); border-color: var(--coral); transform: translateY(-18px); }
.feature-number { display: block; margin-bottom: 76px; font-size: .75rem; font-weight: 700; opacity: .7; }
h3 { margin-bottom: 10px; font-size: 1.3rem; letter-spacing: -.03em; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.feature-card-accent p { color: #ffe6d4; }

.support-band { color: var(--cream); background: var(--teal); }
.support-content { min-height: 285px; padding: 62px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.support-content h2 { margin-bottom: 15px; }
.support-content p:not(.eyebrow) { max-width: 570px; margin-bottom: 0; color: #c8d5ce; }
.button-light { color: var(--teal); background: var(--cream); white-space: nowrap; }

.legal { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.legal-links { display: grid; gap: 0; border-top: 1px solid var(--line); }
.legal-links a { padding: 18px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: .94rem; font-weight: 700; }
.site-footer { padding: 28px 0 38px; display: flex; justify-content: space-between; color: var(--muted); border-top: 1px solid var(--line); font-size: .78rem; }
.legal-page { max-width: 760px; }
.legal-page h1 { margin-bottom: 24px; font-size: clamp(3rem, 7vw, 5.5rem); }
.legal-page h2 { margin-top: 48px; margin-bottom: 12px; font-size: 1.65rem; letter-spacing: -.04em; }
.legal-page p { color: var(--muted); }
.legal-page .text-link { color: var(--coral-dark); }

@media (max-width: 760px) {
  .shell, .site-header { width: min(100% - 32px, 560px); }
  .site-header { padding: 18px 0; }
  nav { gap: 14px; }
  .hero { min-height: auto; padding: 68px 0 82px; grid-template-columns: 1fr; gap: 55px; }
  h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .hero-art { min-height: 330px; border-radius: 38% 38% 12px 38%; }
  .book-art { transform: translateX(-50%) rotate(-7deg) scale(.78); bottom: 34px; }
  .section { padding: 82px 0; }
  .section-heading, .support-content, .legal { display: block; }
  .section-heading h2 { margin-top: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-accent { transform: none; }
  .feature-number { margin-bottom: 48px; }
  .support-content .button { margin-top: 28px; }
  .legal-links { margin-top: 38px; }
  .site-footer { gap: 16px; flex-wrap: wrap; }
}
