:root {
  --ivory: #f7efe0;
  --forest: #264b35;
  --gold: #b79a55;
  --clay: #d6bea1;
  --espresso: #35261c;
  --paper: #fff9ed;
  --sage: #dbe6cf;
  --moss: #7f936a;
  --cedar: #8c5f49;
  --line: rgba(53, 38, 28, 0.14);
  --shadow-soft: 0 24px 70px rgba(53, 38, 28, 0.12);
  --shadow-tight: 0 12px 34px rgba(53, 38, 28, 0.1);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(53, 38, 28, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(53, 38, 28, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 18px 18px, rgba(183, 154, 85, 0.05) 1px, transparent 1px),
    var(--ivory);
  background-size: 42px 42px, 42px 42px, 18px 18px, auto;
  color: var(--espresso);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

a:hover {
  color: var(--forest);
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 4.25rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.55rem;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--forest);
  color: var(--paper);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 0 1rem;
  transition: padding 0.25s ease;
}

.nav-shell {
  margin-top: 0.75rem;
  background: rgba(255, 249, 237, 0.94);
  border: 1px solid rgba(53, 38, 28, 0.1);
  border-radius: 0 0 28px 28px;
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(16px);
  padding: 0.6rem 1rem;
}

.site-header.is-scrolled .nav-shell {
  margin-top: 0;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 16px 42px rgba(53, 38, 28, 0.14);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--espresso);
}

.brand-mark {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 42% 58% 50% 50%;
  background: var(--forest);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  box-shadow: inset 0 0 0 2px rgba(255, 249, 237, 0.3);
}

.navbar-nav {
  gap: 0.25rem;
}

.nav-link {
  color: rgba(53, 38, 28, 0.76);
  border-radius: 999px;
  padding: 0.65rem 1rem !important;
  font-weight: 650;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(38, 75, 53, 0.09);
  color: var(--forest);
}

.navbar-toggler {
  border: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(38, 75, 53, 0.09);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 75, 53, 0.2);
}

.toggler-line {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.2rem auto;
  background: var(--forest);
}

.hero-section,
.page-hero {
  padding: 7.5rem 0 4.5rem;
}

.hero-section h1,
.page-hero h1 {
  max-width: 11ch;
  margin-top: 0.8rem;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 1.25rem;
  color: rgba(53, 38, 28, 0.75);
  font-size: 1.08rem;
}

.eyebrow {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.8rem 1.25rem;
  border-width: 1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.preview-button:hover,
.filter-button:hover {
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(38, 75, 53, 0.18);
}

.btn-forest:hover,
.btn-forest:focus {
  background: #1d3e2b;
  border-color: #1d3e2b;
  color: var(--paper);
}

.btn-outline-warm,
.btn-cookie-detail {
  background: rgba(255, 249, 237, 0.55);
  border-color: rgba(53, 38, 28, 0.22);
  color: var(--espresso);
}

.btn-outline-warm:hover,
.btn-cookie-detail:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
}

.hero-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.hero-note-row span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(53, 38, 28, 0.12);
  border-radius: 999px;
  background: rgba(255, 249, 237, 0.55);
  color: rgba(53, 38, 28, 0.72);
  font-size: 0.86rem;
}

.image-collage {
  position: relative;
  min-height: 580px;
}

.collage-main,
.collage-secondary,
.masthead-image,
.organic-card,
.feature-card,
.play-card,
.article-card,
.journal-feature,
.contact-form,
.contact-card,
.legal-document,
.daily-challenge-card,
.streak-panel,
.week-card,
.daily-panel,
.note-card,
.style-tile {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 249, 237, 0.14)),
    var(--paper);
  border: 1px solid rgba(53, 38, 28, 0.1);
  box-shadow: var(--shadow-soft);
}

.collage-main {
  position: absolute;
  inset: 0 8% 16% 4%;
  overflow: hidden;
  border-radius: 46px 46px 110px 46px;
}

.collage-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
  border-radius: 80px 26px 44px 26px;
  border: 10px solid var(--ivory);
}

.collage-main img,
.collage-secondary img,
.masthead-image img,
.organic-card img,
.feature-card img,
.play-card img,
.article-card img,
.journal-feature img,
.challenge-image img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.floating-label {
  position: absolute;
  left: 0;
  bottom: 7rem;
  padding: 0.8rem 1rem;
  background: var(--forest);
  color: var(--paper);
  border-radius: 999px;
  box-shadow: var(--shadow-tight);
  font-weight: 800;
}

.section-pad {
  padding: 5.75rem 0;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-top: 0.55rem;
}

.section-heading.narrow {
  max-width: 40rem;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-weight: 850;
  border-bottom: 1px solid rgba(38, 75, 53, 0.35);
}

.style-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 1.25rem;
}

.style-tile {
  position: relative;
  min-height: 220px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.style-tile::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 11rem;
  height: 11rem;
  border-radius: 36% 64% 45% 55%;
  background: rgba(38, 75, 53, 0.08);
}

.style-tile h3 {
  margin-top: 4rem;
}

.style-tile p {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  max-width: 24rem;
  color: rgba(53, 38, 28, 0.72);
}

.tile-large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(219, 230, 207, 0.82), rgba(255, 249, 237, 0.74));
}

.tile-tall {
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(214, 190, 161, 0.5), rgba(255, 249, 237, 0.86));
}

.style-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(183, 154, 85, 0.18);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 850;
}

.reason-section {
  background: rgba(255, 249, 237, 0.42);
  border-block: 1px solid rgba(53, 38, 28, 0.08);
}

.reason-stack {
  display: grid;
  gap: 2rem;
}

.reason-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 2rem;
}

.reason-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.reason-row.reverse .reason-text {
  order: 2;
}

.reason-row.reverse .reason-visual {
  order: 1;
}

.reason-text {
  padding: 2rem;
  border-left: 4px solid var(--gold);
}

.reason-number {
  display: inline-block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.reason-text h3 {
  margin-top: 0.8rem;
}

.reason-text p {
  margin-top: 0.85rem;
  color: rgba(53, 38, 28, 0.72);
}

.organic-card {
  min-height: 330px;
  overflow: hidden;
  border-radius: 54px 26px 70px 28px;
}

.magazine-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.25rem;
}

.feature-card {
  display: flex;
  min-height: 250px;
  overflow: hidden;
  border-radius: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.play-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 78px rgba(53, 38, 28, 0.15);
}

.feature-card img {
  width: 45%;
  min-height: 100%;
}

.feature-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.feature-wide {
  grid-column: span 2;
}

.feature-tall {
  grid-row: span 2;
  flex-direction: column;
}

.feature-tall img {
  width: 100%;
  height: 52%;
  min-height: 0;
}

.card-kicker,
.article-meta,
.play-meta {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feature-card h3 {
  margin-top: 0.5rem;
}

.feature-card p:not(.card-kicker) {
  margin-top: 0.65rem;
  color: rgba(53, 38, 28, 0.72);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

.card-meta span {
  color: rgba(53, 38, 28, 0.65);
  font-weight: 750;
}

.preview-button,
.filter-button {
  border: 1px solid rgba(53, 38, 28, 0.16);
  background: rgba(255, 249, 237, 0.75);
  color: var(--espresso);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease;
}

.preview-button:hover,
.filter-button.active {
  background: var(--forest);
  color: var(--paper);
}

.preview-message {
  min-height: 1.75rem;
  margin-top: 1rem;
  color: var(--forest);
  font-weight: 800;
}

.daily-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(219, 230, 207, 0.88), rgba(255, 249, 237, 0.82)),
    var(--paper);
}

.daily-copy h2 {
  margin-top: 0.55rem;
}

.daily-copy p:not(.eyebrow) {
  max-width: 44rem;
  margin-top: 0.9rem;
  color: rgba(53, 38, 28, 0.72);
}

.countdown-card {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  padding: 1.5rem;
  border-radius: 30px 30px 56px 30px;
  background: var(--forest);
  color: var(--paper);
  box-shadow: var(--shadow-tight);
  text-align: center;
}

.countdown-card strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  line-height: 1;
}

.countdown-label,
.countdown-card small {
  color: rgba(255, 249, 237, 0.82);
}

.notes-section {
  background: rgba(214, 190, 161, 0.17);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.note-card {
  min-height: 250px;
  padding: 2rem;
  border-radius: 30px 46px 30px 46px;
  transform: rotate(-1deg);
}

.note-card.note-offset {
  margin-top: 2rem;
  transform: rotate(1deg);
}

.note-card p {
  color: rgba(53, 38, 28, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

.note-card span {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--forest);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(53, 38, 28, 0.12);
  border-radius: 22px;
  background: rgba(255, 249, 237, 0.72);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--espresso);
  padding: 1.25rem 1.4rem;
  text-align: left;
  font-weight: 850;
  font-size: 1.05rem;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--forest);
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 1.4rem 1.25rem;
  color: rgba(53, 38, 28, 0.72);
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 1.5rem;
  width: 15rem;
  height: 7rem;
  border-radius: 58% 42% 65% 35%;
  background: rgba(183, 154, 85, 0.16);
  z-index: -1;
}

.playroom-masthead {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.playroom-masthead h1,
.journal-title-block h1,
.contact-hero h1,
.challenge-hero h1,
.legal-hero h1 {
  max-width: 13ch;
}

.masthead-image {
  min-height: 420px;
  overflow: hidden;
  border-radius: 42px 72px 42px 28px;
}

.filter-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}

.filter-panel h2 {
  margin-top: 0.45rem;
  max-width: 15ch;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.filter-count {
  margin-bottom: 1.5rem;
  color: rgba(53, 38, 28, 0.66);
  font-weight: 700;
}

.playroom-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 1.25rem;
}

.play-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-column: span 3;
  overflow: hidden;
  border-radius: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.play-card:nth-child(3n + 1) {
  grid-column: span 4;
}

.play-card:nth-child(4n) {
  grid-column: span 2;
  grid-template-columns: 1fr;
}

.play-card:nth-child(4n) img {
  min-height: 190px;
}

.play-card.is-hidden {
  display: none;
}

.play-card img {
  min-height: 100%;
  object-fit: cover;
}

.play-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
}

.play-card h3 {
  margin-top: 0.8rem;
}

.play-card p:not(.play-meta) {
  margin-top: 0.7rem;
  color: rgba(53, 38, 28, 0.72);
}

.play-card .preview-button {
  margin-top: auto;
}

.challenge-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 2rem;
}

.challenge-disclaimer {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 30px;
  background: var(--forest);
  color: var(--paper);
  box-shadow: var(--shadow-tight);
}

.challenge-disclaimer strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.challenge-disclaimer span {
  color: rgba(255, 249, 237, 0.82);
}

.challenge-board-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.75fr;
  gap: 1.25rem;
  align-items: stretch;
}

.daily-challenge-card,
.streak-panel,
.week-card {
  padding: 1.5rem;
  border-radius: 30px;
}

.daily-challenge-card h2 {
  margin-top: 0.5rem;
  font-size: 2rem;
}

.daily-challenge-card p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: rgba(53, 38, 28, 0.72);
}

.inline-countdown {
  margin: 1.2rem 0;
  padding: 1rem;
}

.inline-countdown strong {
  font-size: 1.65rem;
}

.challenge-image {
  min-height: 410px;
}

.streak-panel {
  display: grid;
  align-content: center;
  gap: 1.1rem;
}

.milestone {
  display: grid;
  gap: 0.4rem;
}

.milestone span {
  font-weight: 850;
}

.progress-meter,
.mini-meter {
  width: 100%;
  height: 0.8rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(53, 38, 28, 0.1);
}

.progress-fill,
.mini-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transition: width 1.25s ease;
}

.weekly-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.week-card span {
  color: var(--forest);
  font-weight: 900;
}

.week-card h3 {
  margin-top: 0.5rem;
}

.week-card p {
  margin: 0.75rem 0 1.2rem;
  color: rgba(53, 38, 28, 0.72);
}

.section-note {
  max-width: 18rem;
  color: rgba(53, 38, 28, 0.68);
}

.journal-title-block {
  max-width: 58rem;
}

.journal-layout {
  display: grid;
  grid-template-columns: 1fr 0.34fr;
  gap: 1.25rem;
}

.journal-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 40px;
}

.journal-feature img {
  min-height: 380px;
  border-radius: 30px 60px 30px 30px;
}

.journal-feature h2 {
  margin-top: 0.55rem;
}

.journal-feature p:not(.article-meta) {
  margin: 1rem 0;
  color: rgba(53, 38, 28, 0.72);
}

.journal-sidebar {
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}

.journal-sidebar h2 {
  font-size: 1.5rem;
}

.journal-sidebar ul {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(53, 38, 28, 0.72);
}

.article-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.article-card {
  overflow: hidden;
  border-radius: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card img {
  height: 220px;
  object-fit: cover;
}

.article-card .article-meta,
.article-card h3,
.article-card p:not(.article-meta) {
  margin-inline: 1.25rem;
}

.article-card .article-meta {
  margin-top: 1.15rem;
}

.article-card h3 {
  margin-top: 0.55rem;
}

.article-card p:not(.article-meta) {
  margin-top: 0.8rem;
  margin-bottom: 1.4rem;
  color: rgba(53, 38, 28, 0.72);
}

.contact-hero .container-xl {
  max-width: 880px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form,
.contact-card {
  padding: 2rem;
  border-radius: 34px;
}

.contact-form label {
  margin-bottom: 0.45rem;
  color: var(--espresso);
  font-weight: 850;
}

.form-control,
.form-select {
  min-height: 3.25rem;
  border: 1px solid rgba(53, 38, 28, 0.16);
  border-radius: 16px;
  background: rgba(255, 249, 237, 0.82);
  color: var(--espresso);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 0.2rem rgba(38, 75, 53, 0.15);
}

textarea.form-control {
  min-height: 160px;
}

.field-error {
  min-height: 1.35rem;
  margin-top: 0.35rem;
  color: #8a342d;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #8a342d;
}

.form-success {
  display: none;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(219, 230, 207, 0.9);
  color: var(--forest);
  font-weight: 850;
}

.form-success.is-visible {
  display: block;
}

.contact-card address {
  display: grid;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.contact-card address strong {
  margin-top: 0.8rem;
  color: var(--forest);
}

.contact-note {
  color: rgba(53, 38, 28, 0.66);
}

.legal-hero .container-xl {
  max-width: 900px;
}

.legal-layout {
  display: flex;
  justify-content: center;
}

.legal-document {
  max-width: 920px;
  padding: 2.25rem;
  border-radius: 34px;
}

.legal-document h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  margin-top: 0.75rem;
  color: rgba(53, 38, 28, 0.74);
}

.site-footer {
  margin-top: 3rem;
  padding: 4rem 0 1.5rem;
  background: var(--forest);
  color: rgba(255, 249, 237, 0.78);
}

.site-footer .brand-lockup,
.site-footer h2,
.site-footer a,
.site-footer strong {
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  max-width: 24rem;
  margin-top: 1rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer address {
  margin: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 249, 237, 0.16);
  color: rgba(255, 249, 237, 0.68);
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  width: min(720px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(38, 75, 53, 0.16);
  border-radius: 24px;
  background: rgba(255, 249, 237, 0.96);
  box-shadow: var(--shadow-soft);
}

.cookie-notice.is-hidden {
  display: none;
}

.cookie-notice p {
  color: rgba(53, 38, 28, 0.78);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .magazine-card-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .weekly-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .play-card,
  .play-card:nth-child(3n + 1),
  .play-card:nth-child(4n) {
    grid-column: span 3;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding: 0;
  }

  .nav-shell {
    border-radius: 0 0 22px 22px;
  }

  .navbar-collapse {
    padding-top: 0.75rem;
  }

  .hero-section,
  .page-hero {
    padding: 5.5rem 0 3.5rem;
  }

  .image-collage {
    min-height: 470px;
  }

  .style-editorial-grid,
  .reason-row,
  .reason-row.reverse,
  .playroom-masthead,
  .challenge-hero-grid,
  .challenge-board-layout,
  .journal-layout,
  .journal-feature,
  .contact-layout,
  .daily-panel {
    grid-template-columns: 1fr;
  }

  .reason-row.reverse .reason-text,
  .reason-row.reverse .reason-visual {
    order: initial;
  }

  .tile-large,
  .tile-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .playroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .play-card,
  .play-card:nth-child(3n + 1),
  .play-card:nth-child(4n) {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .play-card img {
    min-height: 230px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .hero-actions,
  .split-heading,
  .filter-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-collage {
    min-height: 390px;
  }

  .collage-main {
    inset: 0 4% 22% 0;
  }

  .collage-secondary {
    width: 58%;
  }

  .floating-label {
    bottom: 5rem;
  }

  .magazine-card-grid,
  .note-grid,
  .article-grid,
  .weekly-grid,
  .playroom-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-tall {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
  }

  .feature-card img,
  .feature-tall img {
    width: 100%;
    height: 220px;
    min-height: 220px;
  }

  .note-card,
  .note-card.note-offset {
    margin-top: 0;
    transform: none;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .brand-lockup {
    font-size: 1.1rem;
  }

  .hero-section,
  .page-hero {
    padding-top: 4.5rem;
  }

  .style-tile,
  .daily-panel,
  .contact-form,
  .contact-card,
  .legal-document {
    padding: 1.25rem;
  }
}
