:root {
  --green-950: #082c1a;
  --green-900: #0b3c23;
  --green-800: #125a32;
  --green-700: #1d7041;
  --green-100: #e5f0e8;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --gold: #d8ad42;
  --gold-light: #f1d374;
  --ink: #1b241e;
  --muted: #5d675f;
  --line: #d6ddd7;
  --white: #fff;
  --shadow: 0 24px 60px rgba(8, 44, 26, .13);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4 { margin: 0 0 .65em; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.8rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2rem, 4.2vw, 4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p { margin: 0 0 1.2em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); }
.narrow-wide { width: min(calc(100% - 40px), 960px); }
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section-tint { background: var(--cream); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; background: var(--white); color: var(--green-950); transform: translateY(-140%); }
.skip-link:focus { transform: none; }
.festive-rule { height: 7px; background: repeating-linear-gradient(120deg, var(--green-800) 0 26px, var(--gold) 26px 36px, var(--green-950) 36px 62px, var(--paper) 62px 67px); }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(8,44,26,.12); background: rgba(255,253,248,.95); backdrop-filter: blur(14px); }
.header-inner { display: flex; min-height: 94px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 1 315px; }
.brand img { width: min(315px, 100%); }
.main-nav { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 25px); }
.main-nav a { position: relative; color: var(--green-950); font-size: .89rem; font-weight: 750; text-decoration: none; }
.main-nav a:not(.nav-highlight)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--green-700); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav .nav-highlight { padding: 11px 15px; border-radius: 999px; background: var(--green-800); color: var(--white); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--green-950); }
.menu-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close { display: inline; }

.notice { padding: 13px 0; font-weight: 700; }
.notice-success { background: var(--green-100); color: var(--green-950); }
.notice-error { background: #fbe6e3; color: #86261c; }
.eyebrow { margin-bottom: 16px; color: var(--green-700); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.lead { color: var(--muted); font-size: clamp(1.1rem, 1.7vw, 1.35rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 13px 21px; border: 2px solid var(--green-800); border-radius: 8px; background: var(--green-800); color: var(--white); font-weight: 800; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(8,44,26,.16); }
.button:focus-visible, .text-link:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button-ghost { background: transparent; color: var(--green-900); }
.button-light { border-color: var(--white); background: var(--white); color: var(--green-950); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-800); font-weight: 800; text-decoration-thickness: 2px; }

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::before { position: absolute; inset: 0; opacity: .25; background-image: radial-gradient(var(--green-800) .7px, transparent .7px); background-size: 18px 18px; content: ""; mask-image: linear-gradient(to right, #000, transparent 60%); }
.hero-grid { position: relative; display: grid; min-height: min(720px, calc(100vh - 101px)); grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(40px, 8vw, 110px); padding-top: 58px; padding-bottom: 58px; }
.hero-copy h1 { max-width: 780px; }
.hero-copy h1 span { color: var(--green-800); font-style: italic; }
.hero-lead { max-width: 630px; color: #38463c; font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.association-note { margin: 25px 0 0; color: var(--muted); font-size: .9rem; }
.hero-visual { position: relative; justify-self: end; width: min(100%, 460px); }
.hero-image-wrap { aspect-ratio: 4 / 5; overflow: hidden; border: 10px solid var(--paper); border-radius: 48% 48% 16px 16px; box-shadow: var(--shadow); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-stamp { position: absolute; bottom: 7%; left: -62px; display: flex; width: 142px; height: 142px; align-items: center; justify-content: center; gap: 7px; border: 4px solid var(--paper); border-radius: 50%; background: var(--gold); color: var(--green-950); transform: rotate(-8deg); box-shadow: var(--shadow); }
.hero-stamp strong { font: 700 2.5rem/1 Georgia, serif; }
.hero-stamp span { font-size: .72rem; font-weight: 850; line-height: 1.1; text-transform: uppercase; }
.prince-note { position: absolute; top: 7%; left: -35px; display: flex; flex-direction: column; padding: 12px 15px; border: 2px solid var(--green-800); border-radius: 8px; background: var(--paper); color: var(--green-950); text-decoration: none; box-shadow: 0 12px 28px rgba(8,44,26,.12); }
.prince-note small { color: var(--green-700); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.prince-note strong { font-family: Georgia, serif; }
.hero-marquee { display: flex; width: max-content; gap: 0; padding: 11px 0; background: var(--green-950); color: var(--gold-light); font-size: .82rem; font-weight: 800; letter-spacing: .18em; white-space: nowrap; }
.hero-marquee span { padding-right: 16px; }

.section-heading { max-width: 740px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: .3em; }
.split-heading { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 30px; }
.event-list { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-card { display: grid; grid-template-columns: 96px 1fr; gap: 28px; padding: 28px 22px; background: var(--paper); transition: background .2s ease; }
.event-card:hover { background: var(--cream); }
.event-date { display: flex; width: 76px; height: 76px; flex-direction: column; align-items: center; justify-content: center; border: 2px solid var(--green-800); border-radius: 50%; color: var(--green-800); line-height: 1; }
.event-date strong { font: 700 1.85rem/1 Georgia, serif; }
.event-date span { margin-top: 5px; font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.event-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-bottom: 9px; color: var(--muted); font-size: .84rem; font-weight: 700; }
.event-content h3 { margin-bottom: .35em; }
.event-content p:last-child { max-width: 760px; margin-bottom: 0; color: var(--muted); }

.about-section { background: var(--green-950); color: #dfe9e2; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(45px, 8vw, 105px); }
.about-section h2, .about-section h3 { color: var(--white); }
.about-section .eyebrow, .about-section .text-link { color: var(--gold-light); }
.photo-stack { position: relative; padding: 0 70px 70px 0; }
.photo-main { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); object-fit: cover; }
.photo-small { position: absolute; right: 0; bottom: 0; width: 45%; aspect-ratio: 1; border: 8px solid var(--green-950); border-radius: 50%; object-fit: cover; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text h2, .rich-text h3 { margin-top: 1.3em; }
.rich-text ul, .rich-text ol { padding-left: 1.25em; }

.gallery-teaser { background: var(--green-800); color: #e9f1eb; }
.gallery-teaser h2, .gallery-teaser h3 { color: var(--white); }
.gallery-teaser .eyebrow { color: var(--gold-light); }
.photo-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1.25fr; gap: 14px; }
.photo-grid img { width: 100%; height: 350px; border-radius: 10px; object-fit: cover; }
.photo-grid img:nth-child(2), .photo-grid img:nth-child(3) { height: 290px; margin-top: 60px; }
.center { margin-top: 36px; text-align: center; }

.join-section { background: var(--cream); }
.join-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 100px); }
.join-cards { display: grid; gap: 14px; }
.join-cards article { position: relative; padding: 28px 30px 25px 76px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.join-cards article span { position: absolute; top: 29px; left: 25px; color: var(--green-700); font-weight: 850; }
.join-cards article p { margin: 0; color: var(--muted); }

.dance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dance-card { overflow: hidden; border-radius: var(--radius); background: var(--cream); }
.dance-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.dance-card div { padding: 24px; }
.dance-card div p { margin: 0 0 5px; color: var(--green-700); font-size: .8rem; font-weight: 850; text-transform: uppercase; }
.dance-card h3 { margin-bottom: 5px; }
.dance-card span { color: var(--muted); }
.training-location { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 28px 0 0; color: var(--muted); text-align: center; }
.training-location a { color: var(--green-800); font-weight: 750; }

.people-teaser { border-top: 1px solid var(--line); }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.person-card { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.person-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: saturate(.82); transition: filter .2s ease, transform .35s ease; }
.person-card:hover img { filter: none; transform: scale(1.02); }
.person-card div { padding: 18px 20px 21px; }
.person-card div p { margin: 0 0 5px; color: var(--green-700); font-size: .75rem; font-weight: 850; text-transform: uppercase; }
.person-card h3 { margin: 0; font-size: 1.3rem; }
.person-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; color: var(--green-800); font-size: .85rem; font-weight: 750; }

.page-intro { position: relative; overflow: hidden; padding: clamp(75px, 10vw, 135px) 0; background: var(--cream); text-align: center; }
.page-intro::after { position: absolute; right: -60px; bottom: -140px; width: 330px; height: 330px; border: 60px solid rgba(18,90,50,.07); border-radius: 50%; content: ""; }
.page-intro h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); }
.page-intro .lead { max-width: 680px; margin-inline: auto; }
.feature-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.history-section { background: var(--green-950); color: #dfe9e2; }
.history-section h2, .history-section h3 { color: var(--white); }
.history-section .eyebrow { color: var(--gold-light); }
.history-copy h3 { position: relative; padding-left: 70px; color: var(--gold-light); }
.history-copy h3::before { position: absolute; top: 50%; left: 0; width: 48px; height: 1px; background: var(--gold); content: ""; }

.empty-state { max-width: 620px; margin: 20px auto; text-align: center; }
.empty-state img { margin: 0 auto 22px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card div { padding: 25px; }
.post-card h2 a { text-decoration: none; }
.article-image { margin-top: -42px; }
.article-image img { width: 100%; max-height: 620px; border: 10px solid var(--paper); border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.article-back { margin-top: 45px !important; padding-top: 20px; border-top: 1px solid var(--line); }

.gallery-actions { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 44px; padding: 24px 28px; border-radius: 12px; background: var(--green-100); }
.gallery-actions p { max-width: 700px; margin: 0; }
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.album-card { position: relative; overflow: hidden; min-height: 330px; border-radius: 14px; background: var(--green-950); color: var(--white); text-decoration: none; }
.album-card::after { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(8,44,26,.92)); content: ""; }
.album-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .4s ease; }
.album-card:hover img { transform: scale(1.04); }
.album-card div { position: absolute; z-index: 2; right: 24px; bottom: 20px; left: 24px; }
.album-card h2 { margin: 0; color: var(--white); font-size: 1.55rem; }
.album-card p { margin: 4px 0 0; color: var(--gold-light); font-weight: 800; }

.form-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(40px, 7vw, 90px); }
.rounded-image { margin-top: 35px; border-radius: var(--radius); }
.form-card { padding: clamp(25px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 50px rgba(8,44,26,.08); }
.form-card h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full { grid-column: 1 / -1; }
.form-card label:not(.check-row), .form-card legend { color: var(--green-950); font-size: .9rem; font-weight: 800; }
.form-card input:not([type="checkbox"]), .form-card select, .form-card textarea { width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid #aebbb1; border-radius: 7px; background: #fff; color: var(--ink); }
.form-card textarea { resize: vertical; }
.form-card fieldset { margin: 8px 0; padding: 20px; border: 1px solid var(--line); border-radius: 10px; }
.form-card legend { padding: 0 8px; }
.check-row { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; line-height: 1.45; }
.check-row input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green-800); }
.form-card .button { margin-top: 25px; }
.form-card .button:disabled { opacity: .65; cursor: wait; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .79rem; }
.hp-field { position: absolute !important; left: -9999px !important; }
.contact-panel { position: sticky; top: 135px; padding: 35px; overflow: hidden; border-radius: var(--radius); background: var(--green-950); color: #e5ede7; }
.contact-panel h2 { color: var(--white); }
.contact-panel a { color: var(--gold-light); }
.contact-panel .eyebrow { color: var(--gold-light); }
.contact-figure { height: 300px; margin: 25px -35px -35px; overflow: hidden; }
.contact-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; opacity: .9; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.data-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.data-table th, .data-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table thead { background: var(--green-950); color: var(--white); }
.data-table thead th { color: var(--white); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.data-table tbody th { color: var(--green-800); white-space: nowrap; }
.data-table tbody tr:nth-child(even) { background: var(--cream); }
.muted { color: var(--muted); font-style: italic; }
.inline-note { display: flex; align-items: center; gap: 12px; margin-top: 25px; padding: 16px 20px; border-radius: 10px; background: var(--green-100); }
.inline-note p { margin: 0; }

.download-list { display: grid; gap: 12px; }
.download-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; color: inherit; text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.download-card:hover { border-color: var(--green-700); transform: translateX(4px); }
.download-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-800); }
.download-card small { color: var(--green-700); font-weight: 850; text-transform: uppercase; }
.download-card strong { display: block; font: 700 1.35rem/1.2 Georgia, serif; }
.download-card p { margin: 5px 0 0; color: var(--muted); }
.download-action { color: var(--muted); font-weight: 850; }

.parade-info { padding-bottom: 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.info-grid details, .bank-details { border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.info-grid summary, .bank-details summary { padding: 20px 22px; color: var(--green-950); font-weight: 850; cursor: pointer; }
.info-grid details > :not(summary), .bank-details > :not(summary) { margin-right: 22px; margin-left: 22px; }
.info-grid details > :last-child, .bank-details > :last-child { margin-bottom: 22px; }
.parade-form { max-width: 920px; margin-inline: auto; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { display: flex; min-height: 54px; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.choice:has(input:checked) { border-color: var(--green-700); background: var(--green-100); }
.choice input { width: 20px; height: 20px; accent-color: var(--green-800); }
.bank-details { margin-top: 22px; background: var(--cream); }
.consent-stack { display: grid; gap: 14px; margin-top: 24px; }

.legal-copy { max-width: 820px; }
.legal-copy h2 { margin-top: 1.6em; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.not-found { text-align: center; }
.not-found img { margin: 0 auto 20px; }

.site-footer { padding: 70px 0 25px; background: var(--green-950); color: #cfddd3; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 45px; }
.footer-grid h2 { margin-bottom: 16px; color: var(--white); font: 800 .8rem/1.2 Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand { display: flex; align-items: center; gap: 18px; color: var(--white); }
.footer-brand p { margin: 4px 0 0; color: var(--gold-light); font-size: .84rem; }
.site-footer address { font-style: normal; }
.site-footer a { color: inherit; }
.footer-links, .social-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.social-links a { display: inline-flex; align-items: center; gap: 5px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); color: #9bb0a1; font-size: .8rem; }

@media (max-width: 1020px) {
  .menu-toggle { display: inline-grid; width: 48px; height: 48px; place-items: center; cursor: pointer; }
  .main-nav { position: fixed; z-index: 99; top: 101px; right: 0; bottom: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 25px 20px 50px; overflow-y: auto; background: var(--paper); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px 8px; border-bottom: 1px solid var(--line); font: 700 1.5rem/1.2 Georgia, serif; }
  .main-nav a::after { display: none; }
  .main-nav .nav-highlight { margin-top: 18px; text-align: center; }
  .hero-grid { min-height: auto; }
  .hero-stamp { left: -30px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid img, .photo-grid img:nth-child(2), .photo-grid img:nth-child(3) { height: 280px; margin-top: 0; }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .container, .narrow, .narrow-wide { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 79px; }
  .brand { flex-basis: 230px; }
  .main-nav { top: 86px; }
  .hero-grid, .about-grid, .join-grid, .form-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 55px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; justify-self: center; width: min(88%, 420px); }
  .hero-stamp { right: -12px; bottom: 4%; left: auto; width: 118px; height: 118px; }
  .prince-note { top: 3%; left: -12px; }
  .split-heading, .gallery-actions { align-items: flex-start; flex-direction: column; }
  .event-card { grid-template-columns: 72px 1fr; gap: 18px; padding: 22px 10px; }
  .event-date { width: 64px; height: 64px; }
  .photo-stack { padding: 0 40px 45px 0; }
  .dance-grid, .album-grid, .post-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid, .choice-grid, .info-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .contact-panel { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .section { padding: 65px 0; }
  h1 { font-size: clamp(2.65rem, 15vw, 4.3rem); }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img, .photo-grid img:nth-child(2), .photo-grid img:nth-child(3) { height: 250px; }
  .people-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .person-card div { padding: 14px; }
  .person-card h3 { font-size: 1.05rem; }
  .person-card a { font-size: .72rem; }
  .download-card { grid-template-columns: auto 1fr; }
  .download-action { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

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

@media print {
  .site-header, .site-footer, .button, .festive-rule { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}
