/* ==========================================================================
   MAATRUM — CALM INSTITUTIONAL
   Shared stylesheet for all pages.
   ========================================================================== */

:root {
    --page:        #f4ede0;   /* Outer page wash */
    --cream:       #fffdf2;   /* Main content background */
    --white:       #ffffff;   /* Cards, header, banded sections */
    --tint:        #fdf1d6;   /* Icon chip background */
    --amber:       #e69500;   /* Primary action / accent */
    --amber-dark:  #a86e00;   /* Hover state */
    --ink:         #2d1e00;   /* Headings, strong text */
    --ink-soft:    #5c4c2e;   /* Body copy */
    --ink-faint:   #7a6a45;   /* Footer, metadata */
    --rule:        #ece1c4;   /* Hairline divider */
    --rule-strong: #d8c99a;   /* Input + card outer border */

    --radius-sm: 6px;
    --radius:    8px;
    --radius-lg: 10px;
    --shell:     1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--page);
    color: var(--ink-soft);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.shell { max-width: var(--shell); margin: 0 auto; }

a { color: var(--amber); }
a:hover { color: var(--amber-dark); }

img { max-width: 100%; display: block; }

/* --------------------------------------------------------------------------
   SKIP LINK + FOCUS
   -------------------------------------------------------------------------- */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--ink); color: #fff;
    padding: 10px 18px; border-radius: 0 0 var(--radius) 0;
    font-weight: 700; z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    position: sticky; top: 0; z-index: 50;
}

.header-inner {
    max-width: var(--shell); margin: 0 auto;
    padding: 18px 44px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.brand img {
    width: auto; height: 26px;
    max-width: 76px;
    object-fit: contain;
}
.brand span { font-weight: 700; font-size: 17px; color: var(--ink); }

.nav-toggle {
    display: none;
    background: none; border: 1px solid var(--rule-strong);
    border-radius: var(--radius-sm); padding: 8px 10px; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 18px; height: 2px;
    background: var(--ink); margin: 3px 0;
}

.site-nav {
    display: flex; align-items: center; gap: 20px;
    font-size: 13px; font-weight: 600;
}
.site-nav a { color: var(--ink-soft); text-decoration: none; }
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); }

.btn {
    display: inline-block;
    background: var(--amber); color: #fff;
    font-weight: 700; text-decoration: none;
    padding: 13px 30px; border: none;
    border-radius: var(--radius-sm);
    font-size: 15px; font-family: inherit; cursor: pointer;
    transition: background 0.2s ease;
}
.btn:hover { background: var(--amber-dark); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
    background: var(--cream);
    padding: 72px 44px;
}
.hero-inner {
    max-width: var(--shell); margin: 0 auto;
    display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.hero-copy { flex: 1 1 380px; }

.hero h1 {
    font-weight: 700; font-size: 38px; line-height: 1.3;
    color: var(--ink); margin-bottom: 20px;
}
.hero p {
    font-size: 15.5px; font-weight: 500;
    color: var(--ink-soft); max-width: 42ch;
    line-height: 1.7; margin-bottom: 28px;
}
.hero-img {
    width: 380px; height: 280px; flex: none;
    object-fit: cover; border-radius: var(--radius-lg);
    background: var(--tint);
}

/* --------------------------------------------------------------------------
   TRUST STRIP
   -------------------------------------------------------------------------- */
.trust {
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 22px 44px;
}
.trust ul {
    max-width: var(--shell); margin: 0 auto;
    list-style: none;
    display: flex; justify-content: center; gap: 44px; flex-wrap: wrap;
}
.trust li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.trust svg { flex: none; }

/* --------------------------------------------------------------------------
   CATEGORY SECTION
   -------------------------------------------------------------------------- */
.categories { background: var(--cream); padding: 72px 44px; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 {
    font-weight: 700; font-size: 24px; color: var(--ink); margin-bottom: 12px;
}
.section-head p { font-size: 14px; color: var(--ink-soft); }

.cat-grid {
    max-width: var(--shell); margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.cat-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-decoration: none; display: block;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.cat-card:hover {
    border-color: var(--rule-strong);
    transform: translateY(-2px);
}
.cat-icon {
    width: 44px; height: 44px; border-radius: var(--radius);
    background: var(--tint);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.cat-card h3 {
    font-weight: 700; font-size: 16.5px; color: var(--ink); margin-bottom: 8px;
}
.cat-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* --------------------------------------------------------------------------
   MISSION
   -------------------------------------------------------------------------- */
.mission {
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 64px 44px;
}
.mission-inner {
    max-width: var(--shell); margin: 0 auto;
    display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.mission img {
    width: 300px; height: 220px; flex: none;
    object-fit: cover; border-radius: var(--radius-lg);
    background: var(--tint);
}
.mission-copy { flex: 1 1 320px; }
.mission h2 { font-weight: 700; font-size: 24px; color: var(--ink); margin-bottom: 14px; }
.mission p { font-size: 14.5px; line-height: 1.75; margin-bottom: 12px; }

/* --------------------------------------------------------------------------
   CLOSING CTA
   -------------------------------------------------------------------------- */
.closing {
    background: var(--cream);
    padding: 56px 44px; text-align: center;
}
.closing h2 { font-weight: 700; font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.closing p { font-size: 14px; margin-bottom: 22px; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--rule);
    padding: 26px 44px;
}
.footer-inner {
    max-width: var(--shell); margin: 0 auto;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--ink-faint);
}
.footer-inner a { color: var(--ink-faint); text-decoration: none; }
.footer-inner a:hover { color: var(--amber); }

/* --------------------------------------------------------------------------
   DIRECTORY
   -------------------------------------------------------------------------- */
.dir-head { background: var(--cream); padding: 48px 44px 24px; }
.dir-head-inner { max-width: var(--shell); margin: 0 auto; }
.dir-head h1 { font-weight: 700; font-size: 28px; color: var(--ink); margin-bottom: 8px; }
.dir-head p { font-size: 14px; }

.dir-filters {
    background: var(--cream);
    padding: 0 44px 20px;
}
.dir-filters-inner {
    max-width: var(--shell); margin: 0 auto;
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.dir-filters input,
.dir-filters select {
    font-family: inherit; font-size: 13.5px;
    background: var(--white);
    border: 1px solid var(--rule-strong);
    border-radius: var(--radius-sm);
    color: var(--ink);
}
.dir-filters input {
    flex: 1 1 260px; padding: 11px 16px;
}
.dir-filters input::placeholder { color: #8a7a5c; }
.dir-filters select {
    padding: 10px 16px; font-weight: 600; cursor: pointer;
}

.dir-list {
    background: var(--cream);
    padding: 8px 44px 52px;
}
.dir-list-inner {
    max-width: var(--shell); margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}

.listing {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex; align-items: center; gap: 18px;
    text-decoration: none;
    transition: border-color 0.2s ease;
}
.listing:hover { border-color: var(--rule-strong); }
.listing[hidden] { display: none; }
.listing img {
    width: 56px; height: 56px; flex: none;
    object-fit: cover; border-radius: var(--radius-sm);
    background: var(--tint);
}
.listing-body { flex: 1; min-width: 0; }
.listing-name {
    display: flex; align-items: center; gap: 8px; margin-bottom: 3px;
}
.listing-name strong { font-weight: 700; font-size: 15px; color: var(--ink); }
.listing-meta { font-size: 12.5px; color: var(--ink-soft); }
.listing-cta { font-size: 13px; font-weight: 700; color: var(--amber); flex: none; }

.dir-empty {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 32px; text-align: center; font-size: 14px;
}

/* --------------------------------------------------------------------------
   SIMPLE PAGE HEAD
   -------------------------------------------------------------------------- */
.page-head { background: var(--cream); padding: 56px 44px 40px; }
.page-head-inner { max-width: 760px; margin: 0 auto; }
.page-head h1 {
    font-weight: 700; font-size: 30px; color: var(--ink); margin-bottom: 12px;
}
.page-head p { font-size: 15.5px; line-height: 1.7; max-width: 56ch; }

/* --------------------------------------------------------------------------
   NUMBERED STEPS
   -------------------------------------------------------------------------- */
.steps {
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 36px 44px;
}
.steps-inner {
    max-width: 900px; margin: 0 auto;
    list-style: none;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
    flex: none;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--tint); color: var(--amber);
    font-weight: 700; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
}
.steps h2 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.steps p { font-size: 13.5px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
.form-section { background: var(--cream); padding: 48px 44px 64px; }
.form-inner { max-width: 680px; margin: 0 auto; }

form fieldset {
    border: 1px solid var(--rule);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px 24px 8px;
    margin-bottom: 20px;
}
form legend {
    font-weight: 700; font-size: 15px; color: var(--ink);
    padding: 0 8px;
}

.field { margin-bottom: 18px; }

.field label {
    display: block;
    font-size: 13.5px; font-weight: 700; color: var(--ink);
    margin-bottom: 6px;
}
.field label span { color: var(--amber); }

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: inherit; font-size: 14.5px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--rule-strong);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
}
.field textarea { resize: vertical; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: #a08e6a; }

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: var(--white);
    border-color: var(--amber);
    outline: 2px solid rgba(230, 149, 0, 0.18);
    outline-offset: 0;
}

.field small {
    display: block;
    font-size: 12.5px; color: var(--ink-faint); margin-top: 5px;
}

.field-row { display: flex; gap: 16px; flex-wrap: wrap; }
.field-row .field { flex: 1 1 220px; }

.form-note {
    font-size: 13px; color: var(--ink-faint);
    margin-bottom: 20px; line-height: 1.6;
}
.form-note span { color: var(--amber); }

/* Honeypot — hidden from people and screen readers, visible to bots */
.hp { display: none; }

/* --------------------------------------------------------------------------
   SUCCESS NOTICE
   -------------------------------------------------------------------------- */
.notice {
    background: var(--white);
    border: 1px solid var(--rule-strong);
    border-left: 4px solid var(--amber);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    margin-bottom: 24px;
}
.notice h2 {
    font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px;
}
.notice p { font-size: 14.5px; line-height: 1.7; }

/* --------------------------------------------------------------------------
   SCREEN-READER ONLY
   -------------------------------------------------------------------------- */
.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;
}

/* --------------------------------------------------------------------------
   SCHEME FILTER CHIPS
   -------------------------------------------------------------------------- */
.scheme-filters {
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 18px 44px;
}
.scheme-filters-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.filter-label { font-size: 13px; font-weight: 700; color: var(--ink); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }

.chip {
    font-family: inherit; font-size: 13px; font-weight: 600;
    color: var(--ink-soft);
    background: var(--cream);
    border: 1px solid var(--rule-strong);
    border-radius: 100px;
    padding: 8px 16px; cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover { border-color: var(--amber); color: var(--ink); }
.chip.is-active {
    background: var(--amber); border-color: var(--amber);
    color: #fff;
}

/* --------------------------------------------------------------------------
   SCHEME CARDS
   -------------------------------------------------------------------------- */
.schemes { background: var(--cream); padding: 40px 44px 56px; }
.schemes-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 16px;
}

.scheme {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    display: flex; flex-direction: column;
    transition: border-color 0.2s ease;
}
.scheme:hover { border-color: var(--rule-strong); }
.scheme[hidden] { display: none; }

.scheme-top {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 12px; margin-bottom: 10px;
}
.scheme h2 {
    font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.35;
}
.tag {
    flex: none;
    font-size: 11.5px; font-weight: 700;
    color: var(--amber); background: var(--tint);
    border-radius: 100px; padding: 4px 11px;
    white-space: nowrap;
}
.scheme p {
    font-size: 14px; line-height: 1.65; margin-bottom: 16px; flex: 1;
}

.scheme-link {
    display: inline-flex; align-items: center; gap: 6px;
    align-self: flex-start;
    font-size: 13.5px; font-weight: 700;
    color: var(--amber); text-decoration: none;
}
.scheme-link:hover { color: var(--amber-dark); text-decoration: underline; }

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section { background: var(--cream); padding: 36px 44px 8px; }
.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-group {
    font-size: 15px; font-weight: 700; color: var(--ink);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rule);
}
.faq-group:first-child { margin-top: 0; }

.faq {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq[open] { border-color: var(--rule-strong); }

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 46px 16px 18px;
    position: relative;
    font-size: 15px; font-weight: 700; color: var(--ink);
    line-height: 1.5;
    /* Comfortable tap target on mobile */
    min-height: 52px;
    display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--amber-dark); }

/* Chevron */
.faq summary::after {
    content: "";
    position: absolute; right: 18px; top: 50%;
    width: 9px; height: 9px;
    border-right: 2.5px solid var(--amber);
    border-bottom: 2.5px solid var(--amber);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
}
.faq[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

.faq-body {
    padding: 0 18px 18px;
    border-top: 1px solid var(--rule);
    padding-top: 14px;
}
.faq-body p {
    font-size: 14.5px; line-height: 1.7; margin-bottom: 10px;
}
.faq-body p:last-child { margin-bottom: 0; }
.faq-body em { color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   ASK BOX
   -------------------------------------------------------------------------- */
.ask-heading {
    font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
}
.ask-intro { font-size: 14.5px; margin-bottom: 20px; }

/* --------------------------------------------------------------------------
   INLINE FAQ (on other pages)
   -------------------------------------------------------------------------- */
.faq-inline {
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 40px 44px;
}
.faq-inline-inner { max-width: 760px; margin: 0 auto; }
.faq-inline h2 {
    font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 16px;
}
.faq-inline .faq { background: var(--cream); }
.faq-more {
    display: inline-block; margin-top: 6px;
    font-size: 13.5px; font-weight: 700;
    color: var(--amber); text-decoration: none;
}
.faq-more:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   EVENTS
   -------------------------------------------------------------------------- */
.ev-controls {
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 16px 44px;
}
.ev-controls-inner {
    max-width: 760px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
}

.view-switch { display: flex; }
.vs-btn {
    font-family: inherit; font-size: 12.5px; font-weight: 600;
    color: var(--ink-soft); background: var(--white);
    border: 1px solid var(--rule-strong);
    padding: 8px 16px; cursor: pointer;
}
.vs-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.vs-btn:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-left: none; }
.vs-btn.is-active { background: var(--amber); border-color: var(--amber); color: #fff; }

.events { background: var(--cream); padding: 28px 44px 52px; }
.events-inner { max-width: 760px; margin: 0 auto; }

.ev-month {
    font-size: 12.5px; font-weight: 700; color: var(--ink-faint);
    letter-spacing: 0.04em; text-transform: uppercase;
    padding-bottom: 8px; margin: 24px 0 12px;
    border-bottom: 1px solid var(--rule);
}
.ev-month:first-child { margin-top: 0; }

.event {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 10px;
    display: flex; gap: 15px;
    transition: border-color 0.2s ease;
}
.event:hover { border-color: var(--rule-strong); }
.event[hidden] { display: none; }

.ev-date {
    flex: none; width: 48px; text-align: center;
    display: flex; flex-direction: column; justify-content: flex-start;
}
.ev-dow {
    font-size: 11px; font-weight: 700; color: var(--amber);
    letter-spacing: 0.05em; text-transform: uppercase;
}
.ev-day {
    font-size: 24px; font-weight: 700; color: var(--ink); line-height: 1.15;
}

.ev-body {
    flex: 1; min-width: 0;
    border-left: 1px solid var(--rule); padding-left: 15px;
}
.ev-body h3 {
    font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 7px;
}

.ev-meta { list-style: none; margin-bottom: 9px; }
.ev-meta li {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: var(--ink-soft); line-height: 1.75;
}
.ev-meta svg { width: 15px; height: 15px; flex: none; color: var(--amber); }

.ev-desc {
    font-size: 13.5px; line-height: 1.65; margin-bottom: 10px;
}

.ev-cost {
    display: inline-block;
    font-size: 11.5px; font-weight: 700;
    color: var(--amber); background: var(--tint);
    border-radius: 100px; padding: 4px 11px;
}

.ev-cta {
    display: inline-block; margin-left: 10px;
    font-size: 13px; font-weight: 700;
    color: var(--amber); text-decoration: none;
}
.ev-cta:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   ADMIN CONTROL BAR
   -------------------------------------------------------------------------- */
.admin-bar { padding: 16px 44px; }
.admin-bar-inner {
    max-width: 680px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
}
.admin-bar .chips { gap: 8px; }
.admin-bar #publish { flex: none; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .header-inner { padding: 16px 20px; flex-wrap: wrap; }
    .nav-toggle { display: block; }

    .site-nav {
        display: none;
        flex-basis: calc(100% + 40px);
        flex-direction: column;
        align-items: stretch; gap: 0;
        padding-top: 8px;
        margin: 0 -20px;
    }
    .site-nav.open { display: flex; }

    /* Whole row is the tap target, not just the text */
    .site-nav a {
        display: block;
        padding: 15px 20px;
        min-height: 50px;
        font-size: 15px;
        border-top: 1px solid var(--rule);
        -webkit-tap-highlight-color: transparent;
    }
    .site-nav a:first-child { border-top: none; }

    /* Visible feedback on press */
    .site-nav a:active { background: var(--tint); }
    .site-nav a[aria-current="page"] {
        background: var(--cream);
        box-shadow: inset 3px 0 0 var(--amber);
    }

    .site-nav .btn {
        width: auto; text-align: center;
        margin: 12px 20px 6px;
        padding: 14px 20px;
        border-top: none;
    }
    .site-nav .btn:active { background: var(--amber-dark); }

    .hero { padding: 34px 20px 28px; }
    .hero-inner { flex-direction: column; text-align: center; gap: 24px; }
    .hero h1 { font-size: 26px; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-img { width: 100%; height: 200px; order: -1; }

    .trust { padding: 20px; }
    .trust ul { flex-direction: column; gap: 12px; align-items: flex-start; }

    .categories { padding: 36px 20px; }
    .mission { padding: 36px 20px; }
    .mission-inner { flex-direction: column; text-align: left; }
    .mission img { width: 100%; height: 200px; }

    .closing { padding: 36px 20px; }
    .closing .btn { display: block; }

    .dir-head { padding: 30px 20px 16px; }
    .dir-filters { padding: 0 20px 16px; }
    .dir-filters input, .dir-filters select { flex: 1 1 100%; }
    .dir-list { padding: 8px 20px 40px; }

    .listing { gap: 12px; padding: 14px; }
    .listing img { width: 46px; height: 46px; }

    .site-footer { padding: 22px 20px; }
    .footer-inner { flex-direction: column; text-align: center; }

    .page-head { padding: 32px 20px 24px; }
    .page-head h1 { font-size: 24px; }

    .steps { padding: 26px 20px; }
    .steps-inner { gap: 20px; }

    .form-section { padding: 28px 20px 44px; }
    form fieldset { padding: 20px 16px 4px; }
    .field-row { gap: 0; }
    .field-row .field { flex: 1 1 100%; }
    .notice { padding: 22px 18px; }
    .form-section .btn { display: block; width: 100%; text-align: center; }

    .scheme-filters { padding: 14px 20px; }
    .scheme-filters-inner { gap: 10px; }
    .chip { padding: 7px 13px; font-size: 12.5px; }

    .schemes { padding: 24px 20px 40px; }
    .schemes-inner { grid-template-columns: 1fr; }
    .scheme { padding: 20px 18px; }
    .scheme-top { flex-direction: column; gap: 8px; }
    .tag { align-self: flex-start; }

    .faq-section { padding: 24px 20px 4px; }
    .faq summary { padding: 15px 42px 15px 15px; font-size: 14.5px; }
    .faq-body { padding: 13px 15px 16px; }
    .faq-inline { padding: 28px 20px; }

    /* Calendar is desktop-only — the library never loads on a phone */
    .view-switch { display: none; }
    .ev-controls { padding: 14px 20px; }
    .events { padding: 20px 20px 40px; }
    .event { padding: 14px; gap: 12px; }
    .ev-date { width: 42px; }
    .ev-day { font-size: 21px; }
    .ev-body { padding-left: 12px; }
    .ev-body h3 { font-size: 15px; }

    .admin-bar { padding: 14px 20px; }
    .admin-bar-inner { gap: 12px; }
    .admin-bar #publish { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
