:root {
  --cream: #fff7e7;
  --cream-2: #fffdf7;
  --gold: #f4c66c;
  --gold-deep: #d8912c;
  --green: #5aaa65;
  --green-dark: #275a3a;
  --blue: #2d79a8;
  --brown: #6d4527;
  --ink: #263329;
  --muted: #667261;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(91, 66, 32, .16);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(246, 198, 108, .35), transparent 32rem),
    radial-gradient(circle at 92% 8%, rgba(90, 170, 101, .22), transparent 30rem),
    linear-gradient(180deg, var(--cream) 0%, #fffdf7 56%, #ffffff 100%);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  padding: 20px 0;
  position: relative;
  z-index: 5;
}
.header-inner,
.footer-inner,
.signoff-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--brown);
}
.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 3px solid rgba(216, 145, 44, .25);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(109, 69, 39, .12);
}
.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 900;
  color: var(--green-dark);
}
.top-nav a {
  text-decoration: none;
  padding: 8px 0;
}
.top-nav a:hover,
.top-nav a:focus { text-decoration: underline; text-underline-offset: 6px; }

.hero { padding: 28px 0 64px; }
.hero-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: center;
}
.hero-copy {
  background: rgba(255, 255, 255, .72);
  border: 3px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: 'Baloo 2', cursive;
  line-height: .98;
  margin: 0;
  color: var(--brown);
}
h1 {
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  letter-spacing: -.04em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.03em;
}
h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}
.lead {
  margin: 22px 0 10px;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.25;
  font-weight: 900;
  color: var(--blue);
}
.intro {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(90, 170, 101, .28);
}
.button-secondary {
  background: var(--white);
  color: var(--brown);
  border: 2px solid rgba(109, 69, 39, .15);
}
.hero-poster {
  margin: 0;
  position: relative;
}
.hero-poster::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(90, 66, 34, .22);
  z-index: -1;
}
.hero-poster img {
  width: 100%;
  border-radius: 34px;
  border: 5px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.pals {
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.62), #ffffff);
}
.pals-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 22px;
  align-items: center;
}
.pal-card,
.pal-intro {
  background: var(--white);
  border: 2px solid rgba(216,145,44,.15);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(91, 66, 32, .09);
}
.pal-card {
  padding: 18px 18px 26px;
  text-align: center;
}
.pal-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  margin-bottom: 18px;
  background: var(--cream);
}
.pal-card p,
.pal-intro p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-weight: 700;
}
.pal-intro { padding: clamp(24px, 4vw, 38px); }

.coming-next { padding: 72px 0 88px; background: #ffffff; }
.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--cream-2);
  border: 2px solid rgba(90,170,101,.13);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 42px rgba(39, 90, 58, .08);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--cream);
  font-size: 1.75rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.signoff {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--brown), #93602d);
  color: var(--white);
}
.signoff .eyebrow,
.signoff h2 { color: var(--white); }
.signoff p:last-child {
  max-width: 600px;
  margin: 0;
  line-height: 1.62;
  font-weight: 800;
  opacity: .95;
}
.site-footer {
  padding: 28px 0;
  background: #213127;
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.site-footer p { margin: 0; }

@media (max-width: 980px) {
  .hero-shell { grid-template-columns: 1fr; }
  .pals-grid { grid-template-columns: 1fr; }
  .pal-intro { order: -1; text-align: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .signoff-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner,
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .top-nav { gap: 12px; font-size: .95rem; }
  .hero { padding-top: 10px; }
  .hero-poster img { border-radius: 22px; }
  .cards { grid-template-columns: 1fr; }
  .button { width: 100%; }
}
