:root {
  --forest: #173f2d;
  --forest-2: #0f3223;
  --leaf: #5d8d58;
  --lime: #c8dc83;
  --cream: #f5f0e4;
  --cream-2: #fbf8f1;
  --ink: #18221b;
  --muted: #667068;
  --line: rgba(23, 63, 45, 0.16);
  --white: #ffffff;
  --orange: #e88d45;
  --shadow: 0 22px 60px rgba(16, 47, 33, 0.13);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  background: var(--white); color: var(--forest); padding: 12px 16px;
  border-radius: 8px; box-shadow: var(--shadow); transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.announcement { background: var(--forest-2); color: #e9f1e8; font-size: 13px; }
.announcement__inner {
  min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.announcement a { font-weight: 700; color: var(--lime); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream-2) 92%, transparent);
  backdrop-filter: blur(16px); border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(23, 63, 45, .08); border-color: var(--line); }
.nav-wrap { min-height: 86px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Fraunces", serif; font-weight: 700; font-size: 25px; color: var(--forest); white-space: nowrap; }
.brand__mark { width: 38px; height: 38px; display: grid; place-items: center; }
.brand__mark svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.5vw, 34px); }
.primary-nav a { font-size: 14px; font-weight: 700; color: #304137; position: relative; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--leaf); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.search-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; display: grid; place-items: center; cursor: pointer; transition: .2s ease; }
.search-button:hover { background: var(--forest); color: white; transform: translateY(-2px); }
.search-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.nav-toggle { display: none; }

.hero { position: relative; padding: 70px 0 0; background: var(--cream); overflow: hidden; }
.hero__backdrop { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 10% 20%, rgba(200, 220, 131, .22), transparent 27%), radial-gradient(circle at 82% 32%, rgba(93, 141, 88, .12), transparent 35%); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 7vw, 100px); padding-bottom: 78px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--leaf); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.hero h1, .section h2, .newsletter h2, .search-modal h2 { font-family: "Fraunces", serif; color: var(--forest); letter-spacing: -.045em; line-height: 1.04; margin: 18px 0 20px; }
.hero h1 { font-size: clamp(52px, 6vw, 86px); max-width: 740px; }
.hero h1 em { color: var(--leaf); font-style: italic; font-weight: 600; }
.hero__copy > p { max-width: 650px; color: var(--muted); font-size: 18px; margin: 0 0 32px; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 0; border-radius: 999px; font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-3px); }
.button--primary { background: var(--forest); color: white; box-shadow: 0 14px 28px rgba(23, 63, 45, .22); }
.button--primary:hover { background: var(--forest-2); box-shadow: 0 18px 32px rgba(23, 63, 45, .28); }
.button--dark { background: var(--forest); color: white; }
.button--cream { background: var(--cream); color: var(--forest); width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forest); font-weight: 800; font-size: 14px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero__stats { display: flex; gap: 34px; margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 620px; }
.hero__stats div { display: grid; }
.hero__stats strong { color: var(--forest); font-family: "Fraunces", serif; font-size: 20px; }
.hero__stats span { color: var(--muted); font-size: 12px; }
.hero__visual { position: relative; min-height: 590px; }
.hero__image { position: absolute; inset: 0 0 28px 45px; margin: 0; overflow: hidden; border-radius: 49% 49% 36px 36px; box-shadow: var(--shadow); background: #d8dfcf; }
.hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 42, 28, .22), transparent 42%); }
.hero__image img { height: 100%; object-fit: cover; }
.floating-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 18px 40px rgba(24, 53, 36, .16); border-radius: 16px; padding: 14px 17px; }
.floating-card strong, .floating-card span { display: block; }
.floating-card strong { color: var(--forest); font-size: 13px; }
.floating-card div span { color: var(--muted); font-size: 11px; }
.floating-card__icon { width: 34px; height: 34px; border-radius: 50%; background: #fbdf8a; display: grid !important; place-items: center; color: #94651c; }
.floating-card--top { top: 92px; left: 0; }
.floating-card--bottom { right: -26px; bottom: 66px; }
.mini-leaf { width: 34px; height: 34px; border-radius: 60% 10% 60% 10%; background: var(--leaf); transform: rotate(-12deg); }
.hero__marquee { position: relative; overflow: hidden; background: var(--lime); color: var(--forest); border-top: 1px solid rgba(23,63,45,.1); border-bottom: 1px solid rgba(23,63,45,.1); }
.hero__marquee div { width: max-content; display: flex; align-items: center; gap: 28px; padding: 14px 0; font-size: 11px; font-weight: 900; letter-spacing: .18em; animation: marquee 24s linear infinite; }
.hero__marquee b { font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.category-strip { background: white; border-bottom: 1px solid var(--line); }
.category-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.category-strip a { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 106px; padding: 18px; border-right: 1px solid var(--line); transition: background .2s ease; }
.category-strip a:first-child { border-left: 1px solid var(--line); }
.category-strip a:hover { background: #f5f8ef; }
.category-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--leaf); font-size: 19px; }
.category-strip strong, .category-strip small { display: block; }
.category-strip strong { color: var(--forest); font-size: 14px; }
.category-strip small { color: var(--muted); font-size: 11px; margin-top: 1px; }

.section { padding: 110px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 46px; }
.section h2 { font-size: clamp(40px, 4.8vw, 64px); margin-bottom: 0; }
.featured { background: var(--cream-2); }
.featured-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 42px; }
.story__image { position: relative; display: block; overflow: hidden; background: #d8dfd4; }
.story__image img { height: 100%; object-fit: cover; transition: transform .55s ease; }
.story:hover .story__image img { transform: scale(1.045); }
.story--lead .story__image { height: 470px; border-radius: var(--radius); }
.story__badge { position: absolute; left: 18px; bottom: 18px; background: var(--cream); color: var(--forest); padding: 8px 13px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.story__body { padding-top: 22px; }
.story__meta { color: var(--leaf); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.story h3 { font-family: "Fraunces", serif; color: var(--forest); letter-spacing: -.025em; line-height: 1.15; margin: 10px 0; }
.story--lead h3 { font-size: clamp(30px, 3vw, 44px); }
.story p { color: var(--muted); margin: 0 0 16px; }
.story__read { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 13px; color: var(--forest); }
.story__read span { transition: transform .2s ease; }
.story__read:hover span { transform: translateX(4px); }
.story-stack { display: grid; gap: 25px; }
.story--horizontal { display: grid; grid-template-columns: 190px 1fr; gap: 22px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.story--horizontal:last-child { border-bottom: 0; padding-bottom: 0; }
.story--horizontal .story__image { height: 154px; border-radius: 17px; }
.story--horizontal .story__body { padding: 2px 0 0; }
.story--horizontal h3 { font-size: 24px; margin: 7px 0 14px; }

.season { background: #dfe7cd; }
.season__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(60px, 8vw, 120px); }
.season__media { position: relative; min-height: 610px; }
.season__media img { height: 100%; min-height: 610px; object-fit: cover; border-radius: 240px 240px 24px 24px; box-shadow: var(--shadow); }
.season__label { position: absolute; left: -28px; bottom: 52px; transform: rotate(-90deg); transform-origin: left bottom; color: var(--forest); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.season__label span { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--forest); margin-right: 10px; }
.season__content h2 { max-width: 570px; }
.season__content > p { color: #59675b; font-size: 17px; max-width: 590px; }
.check-list { display: grid; gap: 15px; list-style: none; padding: 0; margin: 28px 0 34px; }
.check-list li { position: relative; padding-left: 34px; color: var(--forest); font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--forest); color: white; font-size: 11px; }

.topics { background: var(--cream-2); }
.topic-grid { display: grid; grid-template-columns: 1.35fr .65fr 1fr; grid-template-rows: 300px 280px; gap: 20px; }
.topic-card { position: relative; overflow: hidden; border-radius: 22px; min-height: 260px; color: white; }
.topic-card--large { grid-row: 1 / 3; }
.topic-card--wide { grid-column: 2 / 4; }
.topic-card img { height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.topic-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 39, 26, .82), rgba(10, 39, 26, .04) 65%); }
.topic-card__content { position: absolute; left: 24px; right: 24px; bottom: 23px; }
.topic-card__content small, .topic-card__content strong, .topic-card__content em { display: block; }
.topic-card__content small { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; opacity: .84; }
.topic-card__content strong { font-family: "Fraunces", serif; font-size: 30px; line-height: 1.12; margin: 5px 0; }
.topic-card__content em { font-style: normal; font-size: 11px; opacity: .72; }
.topic-card:hover img { transform: scale(1.06); }

.planner { padding-top: 0; background: var(--cream-2); }
.planner__box { position: relative; display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 70px; overflow: hidden; border-radius: 34px; background: var(--forest); color: white; padding: 72px clamp(32px, 6vw, 82px); }
.planner__box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 15%, rgba(200,220,131,.15), transparent 30%), radial-gradient(circle at 90% 90%, rgba(200,220,131,.1), transparent 34%); }
.planner__copy, .planner__form { position: relative; z-index: 2; }
.eyebrow--light { color: var(--lime); }
.planner h2 { color: white; font-size: clamp(42px, 5vw, 66px); }
.planner__copy p { color: rgba(255,255,255,.7); max-width: 560px; font-size: 17px; }
.planner__form { display: grid; gap: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; padding: 24px; backdrop-filter: blur(10px); }
.planner__form label span { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--lime); margin-bottom: 7px; }
.planner__form select { width: 100%; min-height: 52px; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; background: rgba(255,255,255,.1); color: white; padding: 0 14px; outline: none; }
.planner__form select option { color: var(--ink); background: white; }
.form-status { margin: 0; min-height: 1.35em; font-size: 12px; }
.planner__form .form-status { color: var(--lime); text-align: center; }
.planner__art { position: absolute; inset: 0; pointer-events: none; opacity: .42; }
.sun-orb { position: absolute; width: 140px; height: 140px; border-radius: 50%; border: 1px solid rgba(200,220,131,.45); right: -35px; top: -40px; box-shadow: 0 0 0 30px rgba(200,220,131,.04), 0 0 0 60px rgba(200,220,131,.025); }
.plant { position: absolute; bottom: -20px; width: 90px; height: 210px; border-left: 2px solid var(--lime); transform-origin: bottom; }
.plant::before, .plant::after { content: ""; position: absolute; width: 52px; height: 24px; border: 2px solid var(--lime); border-radius: 100% 0 100% 0; }
.plant::before { left: -2px; top: 48px; transform: rotate(-25deg); }
.plant::after { left: -49px; top: 94px; transform: scaleX(-1) rotate(-25deg); }
.plant--one { left: 4%; transform: rotate(-8deg); }
.plant--two { left: 16%; transform: scale(.72) rotate(8deg); }
.plant--three { right: 8%; transform: scale(.85) rotate(12deg); }

.about { background: #f1ecdd; }
.about__grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.about__copy p { max-width: 650px; color: var(--muted); font-size: 16px; }
.about__quote { border-left: 1px solid var(--line); padding: 20px 0 20px clamp(36px, 6vw, 78px); }
.quote-mark { display: block; color: var(--orange); font-family: "Fraunces", serif; font-size: 100px; line-height: .7; }
blockquote { margin: 20px 0 28px; color: var(--forest); font-family: "Fraunces", serif; font-size: clamp(30px, 3vw, 44px); line-height: 1.18; letter-spacing: -.025em; }
.about__signature { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.signature-line { width: 48px; height: 1px; background: var(--leaf); }

.newsletter { background: var(--lime); padding: 70px 0; }
.newsletter__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.newsletter h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 0; }
.newsletter .eyebrow { color: var(--forest); }
.newsletter__form { position: relative; display: grid; grid-template-columns: 1fr auto; background: rgba(255,255,255,.5); border: 1px solid rgba(23,63,45,.15); border-radius: 999px; padding: 7px; }
.newsletter__form input { min-width: 0; border: 0; background: transparent; padding: 0 18px; outline: none; color: var(--forest); }
.newsletter__form input::placeholder { color: #64705f; }
.newsletter__form button { border: 0; border-radius: 999px; background: var(--forest); color: white; min-height: 48px; padding: 0 20px; font-weight: 800; cursor: pointer; }
.newsletter__form .form-status { position: absolute; left: 16px; top: calc(100% + 7px); color: var(--forest); }

.site-footer { background: var(--forest-2); color: rgba(255,255,255,.76); }
.footer__top { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; padding: 78px 0 55px; }
.brand--footer { color: white; }
.footer__brand p { max-width: 360px; color: rgba(255,255,255,.57); font-size: 14px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__links div { display: grid; align-content: start; gap: 9px; }
.footer__links strong { color: var(--lime); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 7px; }
.footer__links a { font-size: 13px; transition: color .2s ease, transform .2s ease; }
.footer__links a:hover { color: white; transform: translateX(3px); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; min-height: 72px; border-top: 1px solid rgba(255,255,255,.11); font-size: 11px; }

.search-modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: start center; padding: 12vh 20px 20px; background: rgba(10,33,22,.76); backdrop-filter: blur(12px); }
.search-modal[hidden] { display: none; }
.search-modal__panel { position: relative; width: min(720px, 100%); border-radius: 28px; background: var(--cream-2); box-shadow: 0 30px 90px rgba(0,0,0,.25); padding: clamp(34px, 6vw, 68px); animation: modalIn .25s ease both; }
@keyframes modalIn { from { opacity: 0; transform: translateY(-16px) scale(.98); } }
.search-modal__close { position: absolute; right: 18px; top: 14px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--cream); font-size: 28px; line-height: 1; cursor: pointer; }
.search-modal h2 { font-size: clamp(38px, 5vw, 58px); }
.search-modal form { display: grid; grid-template-columns: 1fr 54px; border-bottom: 2px solid var(--forest); }
.search-modal input { min-width: 0; min-height: 58px; border: 0; background: transparent; outline: none; font-size: 18px; }
.search-modal form button { border: 0; background: transparent; color: var(--forest); font-size: 28px; cursor: pointer; }
.search-modal__hint { color: var(--muted); font-size: 12px; }
.search-modal .form-status { color: var(--leaf); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 860px); }
  .nav-wrap { grid-template-columns: auto auto auto; justify-content: space-between; gap: 16px; }
  .nav-toggle { display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; border: 1px solid var(--line); background: transparent; border-radius: 50%; cursor: pointer; order: 3; }
  .nav-toggle span:not(.sr-only) { display: block; width: 17px; height: 2px; background: var(--forest); transition: .2s ease; }
  .primary-nav { position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; background: var(--cream-2); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px; }
  .primary-nav a::after { display: none; }
  .search-button { margin-left: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 760px; }
  .hero__visual { min-height: 620px; width: min(700px, 100%); margin-inline: auto; }
  .hero__image { left: 40px; right: 40px; }
  .floating-card--bottom { right: 0; }
  .category-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .category-strip a:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .category-strip a:nth-child(4) { border-top: 1px solid var(--line); }
  .featured-grid, .season__grid, .planner__box, .about__grid, .newsletter__grid, .footer__top { grid-template-columns: 1fr; }
  .story-stack { grid-template-columns: repeat(3, 1fr); }
  .story--horizontal { grid-template-columns: 1fr; }
  .story--horizontal .story__image { height: 210px; }
  .season__media { width: min(620px, 100%); margin-inline: auto; }
  .planner__box { gap: 36px; }
  .about__quote { border-left: 0; border-top: 1px solid var(--line); padding: 55px 0 0; }
  .newsletter__grid { gap: 36px; }
  .footer__top { gap: 48px; }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 24px, 620px); }
  .announcement__inner { justify-content: center; text-align: center; min-height: 44px; }
  .announcement__inner > span { display: none; }
  .site-header .brand__text { font-size: 22px; }
  .nav-wrap { min-height: 74px; }
  .search-button { display: none; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero__copy > p { font-size: 16px; }
  .hero__stats { gap: 16px; justify-content: space-between; }
  .hero__stats strong { font-size: 17px; }
  .hero__visual { min-height: 500px; }
  .hero__image { left: 12px; right: 12px; bottom: 22px; border-radius: 180px 180px 24px 24px; }
  .floating-card { padding: 11px 12px; }
  .floating-card--top { top: 62px; left: -2px; }
  .floating-card--bottom { right: -2px; bottom: 46px; }
  .category-strip__grid { grid-template-columns: 1fr; }
  .category-strip a { justify-content: flex-start; min-height: 82px; border-left: 1px solid var(--line) !important; border-top: 1px solid var(--line); }
  .category-strip a:first-child { border-top: 0; }
  .section { padding: 80px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 30px; }
  .section h2 { font-size: clamp(38px, 11vw, 52px); }
  .featured-grid { gap: 36px; }
  .story--lead .story__image { height: 350px; }
  .story-stack { grid-template-columns: 1fr; }
  .story--horizontal { grid-template-columns: 150px 1fr; }
  .story--horizontal .story__image { height: 150px; }
  .story--horizontal h3 { font-size: 20px; }
  .season__grid { gap: 50px; }
  .season__media, .season__media img { min-height: 470px; }
  .season__label { display: none; }
  .topic-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .topic-card, .topic-card--large, .topic-card--wide { grid-column: auto; grid-row: auto; min-height: 300px; }
  .planner__box { padding: 52px 22px; border-radius: 24px; }
  .planner h2 { font-size: 44px; }
  .newsletter { padding: 58px 0 76px; }
  .newsletter__form { grid-template-columns: 1fr; border-radius: 20px; gap: 8px; }
  .newsletter__form input { min-height: 52px; }
  .newsletter__form button { width: 100%; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; padding: 18px 0; }
  .search-modal { padding-top: 70px; }
}

@media (max-width: 430px) {
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__stats { flex-wrap: wrap; }
  .hero__stats div { min-width: 30%; }
  .story--horizontal { grid-template-columns: 1fr; }
  .story--horizontal .story__image { height: 210px; }
  .footer__links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
