:root {
  --cream: #f8f5ef;
  --charcoal: #252525;
  --orange: #c75b39;
  --orange-dark: #a9462a;
  --orange-pale: #f5e8df;
  --sage: #718c7a;
  --sage-dark: #536b5b;
  --sage-pale: #e5ece6;
  --neutral-pale: #efebe3;
  --white: #fff;
  --muted: #67645f;
  --border: rgba(37, 37, 37, .12);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
  --radius-lg: 24px;
  --section-space: clamp(5rem, 8vw, 7rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--charcoal); font-family: var(--font-sans); font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.site-container { max-width: 1200px; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; z-index: 9999; top: .75rem; left: .75rem; transform: translateY(-160%); background: var(--charcoal); color: white; padding: .65rem 1rem; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.05; }
h1, h2 { font-family: var(--font-serif); letter-spacing: -.025em; }
h1 { max-width: 760px; font-size: clamp(3.15rem, 6vw, 4.7rem); }
h2 { font-size: clamp(2.5rem, 4.25vw, 3.25rem); }
.eyebrow { margin: 0 0 1.2rem; color: var(--orange); font-size: .76rem; font-weight: 700; letter-spacing: .17em; line-height: 1.2; text-transform: uppercase; }
.section-intro { max-width: 720px; }
.section-intro > p:last-child, .section-lede { max-width: 650px; margin: 1.4rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.15rem); }

.site-header { position: relative; z-index: 10; background: rgba(248,245,239,.94); }
.navbar { min-height: 88px; padding-block: 1rem; }
.navbar-brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--charcoal); font-size: 1.35rem; font-weight: 700; letter-spacing: -.04em; }
.navbar-brand > span:last-child > span { color: var(--orange); }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50% 50% 50% 12%; background: var(--orange); color: white; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400; transform: rotate(-4deg); }
.nav-link { position: relative; margin-inline: .5rem; padding: .55rem .25rem !important; color: #45433f; font-size: .93rem; font-weight: 500; }
.nav-link::after { content: ""; position: absolute; right: .25rem; bottom: .3rem; left: .25rem; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s ease; }
.nav-link:hover, .nav-link:focus, .nav-link.active { color: var(--charcoal); }
.nav-link:hover::after, .nav-link:focus::after, .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border: 1px solid var(--border); border-radius: 10px; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(199,91,57,.22); }

.btn { border-radius: 9px; padding: .78rem 1.35rem; font-weight: 650; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { --bs-btn-bg: var(--orange); --bs-btn-border-color: var(--orange); --bs-btn-hover-bg: var(--orange-dark); --bs-btn-hover-border-color: var(--orange-dark); --bs-btn-active-bg: var(--orange-dark); --bs-btn-active-border-color: var(--orange-dark); --bs-btn-focus-shadow-rgb: 199,91,57; }
.btn-lg { padding: .9rem 1.65rem; font-size: 1rem; }
.btn-link-arrow { border: 0; color: var(--charcoal); text-decoration: none; }
.btn-link-arrow span, .card-link span { display: inline-block; transition: transform .2s ease; }
.btn-link-arrow:hover span { transform: translateX(5px); }
.nav-cta { color: white !important; padding-inline: 1.25rem !important; }

.hero { overflow: hidden; padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(5.5rem, 9vw, 8rem); }
.hero-copy { position: relative; z-index: 2; }
.hero-lede { max-width: 670px; margin: 1.65rem 0 2rem; color: #57544f; font-size: clamp(1.08rem, 1.8vw, 1.25rem); }
.trust-list { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin: 2.4rem 0 0; padding: 0; list-style: none; color: #54514c; font-size: .88rem; font-weight: 600; }
.trust-list li { display: flex; align-items: center; gap: .55rem; }
.mini-icon { display: inline-grid; flex: 0 0 35px; width: 35px; height: 35px; place-items: center; border-radius: 50%; background: var(--sage-pale); color: var(--sage-dark); }
.mini-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.image-composition { position: relative; }
.image-placeholder, .feature-photo { position: relative; z-index: 2; display: flex; min-height: 430px; aspect-ratio: 4 / 4.8; align-items: center; justify-content: center; flex-direction: column; gap: .65rem; overflow: hidden; border: 1px solid rgba(113,140,122,.2); border-radius: var(--radius-lg); background: linear-gradient(145deg, #e1e9e2, #eee9df); color: var(--sage-dark); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .feature-photo img { object-position: center 42%; }
.placeholder-icon { display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(83,107,91,.25); border-radius: 50%; background: rgba(255,255,255,.4); }
.placeholder-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.decor-arc { position: absolute; z-index: 1; top: -30px; right: -35px; width: 165px; height: 165px; border: 34px solid rgba(199,91,57,.85); border-left-color: transparent; border-radius: 50%; transform: rotate(18deg); }
.decor-dot-grid { position: absolute; z-index: 3; bottom: -22px; left: -26px; width: 85px; height: 85px; background-image: radial-gradient(var(--orange) 2px, transparent 2px); background-size: 14px 14px; opacity: .6; }
.local-note { position: absolute; z-index: 3; right: -12px; bottom: 30px; padding: .7rem 1rem; border-radius: 8px; background: var(--white); box-shadow: 0 10px 35px rgba(37,37,37,.12); color: #4f4b45; font-size: .78rem; font-weight: 700; }
.local-note span { margin-right: .35rem; color: var(--orange); }

.stats-section { padding: var(--section-space) 0; background: var(--white); }
.stats-section .section-intro > p:last-child { margin-inline: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4.5rem; }
.stat-item { padding: .25rem clamp(2rem, 5vw, 4.5rem); text-align: center; }
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-item strong { display: block; color: var(--orange); font-family: var(--font-serif); font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 400; line-height: .9; }
.stat-item strong span { color: var(--sage); font-family: var(--font-sans); font-size: .45em; font-weight: 600; vertical-align: top; }
.stat-item h3 { min-height: 2.8em; margin-top: 1.3rem; font-size: 1.05rem; font-weight: 700; line-height: 1.35; }
.stat-item p { margin: .55rem 0 0; color: #85817b; font-size: .82rem; }

.explore-section { padding: var(--section-space) 0; }
.path-card { display: flex; height: 100%; min-height: 430px; padding: clamp(2rem, 3vw, 2.7rem); flex-direction: column; border: 1px solid rgba(37,37,37,.06); border-radius: var(--radius-lg); color: var(--charcoal); text-decoration: none; box-shadow: 0 8px 30px rgba(37,37,37,.025); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.path-card:hover, .path-card:focus-visible { border-color: rgba(199,91,57,.32); color: var(--charcoal); box-shadow: 0 16px 40px rgba(37,37,37,.07); transform: translateY(-7px); }
.path-card:focus-visible { outline: 3px solid rgba(199,91,57,.35); outline-offset: 4px; }
.path-card:hover .card-link span { transform: translateX(6px); }
.card-orange { background: var(--orange-pale); }
.card-sage { background: var(--sage-pale); }
.card-neutral { background: var(--neutral-pale); }
.card-icon { display: grid; width: 54px; height: 54px; margin-bottom: 2.1rem; place-items: center; border-radius: 14px; background: rgba(255,255,255,.62); color: var(--orange); }
.card-sage .card-icon { color: var(--sage-dark); }
.card-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.path-card .eyebrow { margin-bottom: .85rem; font-size: .68rem; }
.path-card h3 { max-width: 280px; font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2rem); }
.path-card p { margin: 1.15rem 0 2rem; color: #5f5b55; line-height: 1.65; }
.card-link { margin-top: auto; font-size: .92rem; font-weight: 700; }

.ways-section { padding: var(--section-space) 0; background: var(--white); }
.community-visual { margin-right: clamp(0rem, 4vw, 2rem); }
.community-visual .image-placeholder, .community-visual .feature-photo { min-height: 360px; aspect-ratio: 4 / 3.35; background: linear-gradient(145deg, #f0e5dc, #e7ece5); }
.community-photo img { object-position: center center; }
.inset-photo { position: absolute; z-index: 3; right: -18px; bottom: -34px; width: clamp(110px, 27%, 155px); aspect-ratio: 1 / 1.08; overflow: hidden; border: 6px solid var(--white); border-radius: 16px; background: var(--white); box-shadow: 0 14px 35px rgba(37,37,37,.16); transform: rotate(2deg); }
.inset-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.inset-photo-top { top: -30px; right: auto; bottom: auto; left: -24px; width: clamp(100px, 24%, 140px); transform: rotate(-3deg); }
.decor-circle { position: absolute; z-index: 1; bottom: -25px; left: -30px; width: 130px; height: 130px; border-radius: 50%; background: var(--orange); opacity: .9; }
.ways-copy h2 { max-width: 540px; }
.help-ways { margin: 2rem 0 1.5rem; }
.help-way { display: flex; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--border); }
.help-way:last-child { border-bottom: 1px solid var(--border); }
.help-way h3 { margin-bottom: .2rem; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.help-way p { margin: 0; color: var(--muted); }

.support-cta { padding: clamp(5.5rem, 9vw, 7.5rem) 0; background-color: var(--charcoal); background-image: radial-gradient(circle at 15% 25%, rgba(113,140,122,.14) 0, transparent 28%), radial-gradient(circle at 90% 85%, rgba(199,91,57,.14) 0, transparent 28%); color: var(--cream); }
.support-cta .eyebrow { color: #df8c72; }
.support-cta h2 { max-width: 760px; margin-inline: auto; }
.support-cta > .site-container > p:not(.eyebrow) { max-width: 690px; margin: 1.5rem auto 0; color: #c9c5bd; font-size: 1.08rem; }
.category-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin: 2.2rem 0 2.5rem; padding: 0; list-style: none; }
.category-list li { display: flex; align-items: center; gap: .5rem; padding: .55rem .9rem; border: 1px solid rgba(255,255,255,.15); border-radius: 99px; background: rgba(255,255,255,.055); color: #e3dfd7; font-size: .82rem; font-weight: 600; }
.category-list svg { width: 16px; height: 16px; fill: none; stroke: #a9c0ae; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.site-footer { padding: 4.5rem 0 2rem; background: #efebe4; }
.footer-brand { margin-bottom: 1.2rem; }
.site-footer p { max-width: 460px; margin: 0; color: var(--muted); }
.footer-links { display: flex; gap: clamp(1rem, 4vw, 2.5rem); margin: 1rem 0 0; padding: 0; list-style: none; }
.footer-links a { font-weight: 650; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus { color: var(--orange); text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: #7a766f; font-size: .78rem; }

/* About page */
.about-hero { overflow: hidden; padding: clamp(4rem, 7vw, 6.5rem) 0 var(--section-space); }
.about-hero h1 { max-width: 720px; font-size: clamp(3rem, 5.4vw, 4.25rem); }
.about-hero-copy > p:not(.eyebrow) { max-width: 720px; margin: 1.35rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.1rem); }
.about-hero .trust-list { margin-top: 2rem; }
.about-visual { max-width: 500px; margin-left: auto; }
.about-visual .image-placeholder { min-height: 0; aspect-ratio: 4 / 3.45; }
.about-visual .image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.about-visual .feature-photo { min-height: 0; aspect-ratio: 4 / 3.45; }
.about-photo img { object-position: center 42%; }

.team-section { padding: var(--section-space) 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; margin-top: 4rem; }
.team-card { display: flex; min-width: 0; grid-column: span 2; overflow: hidden; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--cream); box-shadow: 0 8px 30px rgba(37,37,37,.035); }
.team-card:nth-child(4) { grid-column: 2 / span 2; }
.member-photo { display: flex; aspect-ratio: 4 / 3; align-items: center; justify-content: center; flex-direction: column; gap: .55rem; border-bottom: 1px solid var(--border); background-color: var(--sage-pale); background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,.55), transparent 35%); color: var(--sage-dark); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.member-photo svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card:first-child .member-photo img { object-position: center 34%; }
.team-card-body { display: flex; height: 100%; padding: 1.8rem; flex-direction: column; }
.team-card h3 { font-family: var(--font-serif); font-size: 1.7rem; }
.member-role { min-height: 2em; margin: .4rem 0 1.5rem; color: var(--orange); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.member-detail + .member-detail { margin-top: 1rem; }
.member-detail h4 { margin: 0 0 .25rem; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.member-detail p { margin: 0; color: var(--muted); font-size: .9rem; }
.member-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 1.6rem 0 0; padding-top: 1.35rem; border-top: 1px solid var(--border); text-align: center; }
.member-stats div + div { border-left: 1px solid var(--border); }
.member-stats dt { color: #817d77; font-size: .58rem; letter-spacing: .08em; line-height: 1.25; text-transform: uppercase; }
.member-stats dd { margin: 0 0 .25rem; font-family: var(--font-serif); font-size: 1.45rem; line-height: 1; }

.project-stats-section { padding: clamp(4.5rem, 7vw, 6rem) 0; background: var(--charcoal); color: var(--cream); }
.project-stats-section .eyebrow { color: #df8c72; }
.project-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 960px; margin: 3rem auto 0; text-align: center; }
.project-stats div { display: flex; padding: 1rem 2rem; flex-direction: column-reverse; }
.project-stats div + div { border-left: 1px solid rgba(255,255,255,.16); }
.project-stats dd { margin: 0 0 .8rem; color: var(--cream); font-family: var(--font-serif); font-size: clamp(4rem, 7vw, 5.6rem); line-height: .85; }
.project-stats dt { color: #c9c5bd; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.data-section { padding: var(--section-space) 0; }
.data-source-list { display: grid; gap: 1rem; margin-top: 3.5rem; }
.data-source-card { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.7rem 2rem; border: 1px solid var(--border); border-radius: 16px; background: var(--white); color: var(--charcoal); text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.data-source-card:hover, .data-source-card:focus-visible { border-color: rgba(199,91,57,.45); color: var(--charcoal); box-shadow: 0 10px 30px rgba(37,37,37,.06); transform: translateY(-3px); }
.data-source-card:focus-visible, .resource-card:focus-visible { outline: 3px solid rgba(199,91,57,.4); outline-offset: 3px; }
.data-source-card .eyebrow { display: block; margin-bottom: .5rem; font-size: .64rem; }
.data-source-card strong, .data-source-card small { display: block; }
.data-source-card strong { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; }
.data-source-card small { max-width: 680px; margin-top: .4rem; color: var(--muted); font-size: .9rem; }
.external-link { flex: 0 0 auto; color: var(--orange); font-size: .84rem; font-weight: 700; }
.external-link span { display: inline-block; transition: transform .2s ease; }
.data-source-card:hover .external-link span { transform: translate(3px, -3px); }

.toolkit-section { padding: var(--section-space) 0; background: var(--white); }
.toolkit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.tool-group { position: relative; padding: 2.2rem; overflow: hidden; border: 1px solid var(--border); border-radius: 20px; background: var(--cream); }
.tool-number { position: absolute; top: 1.35rem; right: 1.5rem; color: rgba(199,91,57,.32); font-family: var(--font-serif); font-size: 2.6rem; line-height: 1; }
.tool-group > h3 { max-width: 75%; margin-bottom: 1.6rem; font-family: var(--font-serif); font-size: 1.65rem; }
.tool-item { padding-top: 1rem; border-top: 1px solid var(--border); }
.tool-item + .tool-item { margin-top: 1rem; }
.tool-item h4 { margin: 0 0 .35rem; font-size: .92rem; font-weight: 750; }
.tool-item p { margin: 0; color: var(--muted); font-size: .9rem; }
.optional-tools { display: grid; grid-template-columns: minmax(190px, .55fr) 1.45fr; align-items: center; gap: 2rem; margin-top: 1.5rem; padding: 2rem 2.2rem; border-radius: 20px; background: var(--sage-pale); }
.optional-tools .eyebrow { margin-bottom: .35rem; }
.optional-tools h3 { font-family: var(--font-serif); font-size: 1.65rem; }
.optional-tools > p { margin: 0; color: var(--sage-dark); }

.project-resources { padding: var(--section-space) 0; background-color: var(--charcoal); background-image: radial-gradient(circle at 10% 20%, rgba(113,140,122,.14), transparent 27%), radial-gradient(circle at 88% 80%, rgba(199,91,57,.14), transparent 28%); color: var(--cream); }
.project-resources .eyebrow { color: #df8c72; }
.project-resources .section-intro > p:last-child { color: #c9c5bd; }
.resource-grid { max-width: 900px; margin: 3.25rem auto 0; }
.resource-card { display: flex; height: 100%; min-height: 310px; padding: 2.3rem; flex-direction: column; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: rgba(255,255,255,.065); color: var(--cream); text-decoration: none; transition: transform .22s ease, border-color .22s ease, background-color .22s ease; }
.resource-card:hover { border-color: rgba(223,140,114,.65); background: rgba(255,255,255,.1); color: var(--cream); transform: translateY(-5px); }
.resource-icon { display: grid; width: 48px; height: 48px; margin-bottom: 1.7rem; place-items: center; border-radius: 12px; background: rgba(199,91,57,.17); color: #e79a81; }
.resource-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.resource-card h3 { font-family: var(--font-serif); font-size: 1.9rem; }
.resource-card p { margin: .85rem 0 1.5rem; color: #c9c5bd; }
.resource-card .card-link { margin-top: auto; }
.resource-card:hover .card-link span { transform: translateX(5px); }

@media (max-width: 991.98px) {
  .navbar-collapse { margin-top: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: 14px; background: var(--white); }
  .nav-link { margin-inline: 0; padding: .7rem .25rem !important; }
  .nav-link::after { right: auto; width: 30px; }
  .nav-cta { display: inline-block; margin-top: .65rem; }
  .hero { padding-top: 3.5rem; }
  .hero-visual { max-width: 600px; margin: 1rem auto 0; }
  .image-placeholder, .feature-photo { aspect-ratio: 4 / 3; min-height: 0; }
  .community-visual { max-width: 700px; margin: 0 auto 2rem; }
  .about-visual { max-width: 680px; margin: 1rem auto 0; }
  .team-card { grid-column: span 3; }
  .team-card:nth-child(4) { grid-column: span 3; }
  .team-card:last-child { grid-column: 2 / span 4; }
}

@media (max-width: 767.98px) {
  :root { --section-space: 4.5rem; --radius-lg: 20px; }
  .navbar { min-height: 74px; }
  h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .hero-actions .btn { width: 100%; text-align: center; }
  .trust-list { display: grid; gap: .85rem; }
  .stats-grid { grid-template-columns: 1fr; margin-top: 3.25rem; }
  .stat-item { padding: 2.2rem 1rem; }
  .stat-item + .stat-item { border-top: 1px solid var(--border); border-left: 0; }
  .stat-item h3 { min-height: auto; }
  .path-card { min-height: 380px; }
  .ways-section .row { --bs-gutter-y: 2rem; }
  .community-visual { margin-bottom: 3rem; }
  .inset-photo { right: 12px; bottom: -28px; border-width: 4px; }
  .inset-photo-top { top: -20px; right: auto; bottom: auto; left: 12px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .about-hero { padding-top: 3.5rem; }
  .about-hero h1 { font-size: clamp(2.65rem, 12vw, 3.6rem); }
  .team-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .team-card, .team-card:nth-child(4), .team-card:last-child { grid-column: auto; }
  .member-photo { aspect-ratio: 16 / 10; }
  .project-stats { grid-template-columns: 1fr; }
  .project-stats div { padding: 2rem 1rem; }
  .project-stats div + div { border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .data-source-card { align-items: flex-start; flex-direction: column; padding: 1.5rem; }
  .toolkit-grid { grid-template-columns: 1fr; }
  .optional-tools { grid-template-columns: 1fr; gap: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
