/* Public visual identity. Loaded after page-specific component styles. */
:root {
    --text: #142f40;
    --muted: #52616a;
    --muted-light: #627079;
    --blue: #214b63;
    --blue-dark: #142f40;
    --blue-soft: #edf2f3;
    --gold: #a67723;
    --surface: #faf9f5;
    --surface-blue: #f0f3f2;
    --border: #dce1df;
    --blue-border: #cbd6db;
    --shadow: none;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --radius: 8px;
    --container: 1200px;
    --container-padding: clamp(1.25rem, 4vw, 2.5rem);
    --section: clamp(3rem, 5vw, 4.5rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; font-family: "Manrope", system-ui, sans-serif; color: var(--text); background: var(--surface); line-height: 1.65; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--text); line-height: 1.18; letter-spacing: -.035em; }
h1 { font-size: clamp(2.25rem, 4.4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 800; }
p { color: var(--muted); }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #a67723; outline-offset: 4px; }
.container { width: 100%; max-width: var(--container); padding: 0 var(--container-padding); margin: 0 auto; }
section { padding: var(--section) 0; }
[id] { scroll-margin-top: 100px; }
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 2000; padding: .8rem 1rem; background: var(--text); color: #fff; border-radius: 4px; }
.skip-link:focus { top: 1rem; }
.header { position: fixed; inset: 0 0 auto; z-index: 1000; width: 100%; padding: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: none; backdrop-filter: none; }
.header-container { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; min-height: 80px; }
.logo img { width: auto; height: 57px; }
.logo a { display: block; }
.nav-list { display: flex; align-items: center; gap: .2rem; margin: 0; padding: 0; list-style: none; }
.nav-list .nav-link { display: inline-flex; align-items: center; min-height: 44px; padding: .5rem .65rem; color: var(--text); font-size: .81rem; font-weight: 700; white-space: nowrap; border-radius: 0; background: none; text-decoration: none; position: relative; }
.nav-list .nav-link::after { content: ''; position: absolute; left: .65rem; right: .65rem; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); }
.nav-list .nav-link:hover, .nav-list .nav-link.active { color: #80601e; }
.nav-list .nav-link:hover::after, .nav-list .nav-link.active::after { transform: scaleX(1); }
.nav-list .btn-don-nav { background: var(--text); color: #fff !important; border: 1px solid var(--text); padding: .5rem 1rem; border-radius: 5px; margin-left: .4rem; box-shadow: none; }
.nav-list .btn-don-nav:hover { background: #285169; transform: none; }
.nav-list .btn-don-nav::after { display: none; }
.hamburger { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--border); border-radius: 5px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; box-shadow: none; }
.hamburger span { width: 22px; height: 2px; background: var(--text); transition: transform .2s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-overlay { display: none; }
.eyebrow { display: inline-block; padding: 0; border: 0; border-radius: 0; background: none; color: #80601e; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow i { display: none; }
.page-hero { min-height: 0; margin-top: 80px; padding: 2.5rem 0 3rem; background: #f0f3f2; border-bottom: 1px solid var(--border); }
.page-hero::before, .page-hero::after { display: none; }
.page-hero-content { max-width: 800px; }
.page-hero h1 { font-size: clamp(2.25rem, 4.4vw, 3.5rem); margin: .65rem 0 1rem; }
.page-hero p { max-width: 760px; font-size: 1.04rem; line-height: 1.7; color: var(--muted); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-bottom: 1.7rem; color: var(--muted); font-size: .78rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb i { font-size: .6rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 49px; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: 5px; font-size: .88rem; font-weight: 800; text-decoration: none; line-height: 1.4; cursor: pointer; box-shadow: none; transition: background .2s, border-color .2s; }
.btn:hover { transform: none; box-shadow: none; }
.btn-primary { background: var(--text); color: #fff; border-color: var(--text); }
.btn-primary:hover { background: #285169; border-color: #285169; }
.btn-outline, .btn-outline-light { background: transparent; color: var(--text); border-color: #a4b0b5; }
.btn-outline:hover, .btn-outline-light:hover { background: #e9eeed; color: var(--text); border-color: var(--text); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.text-link { display: inline-flex; gap: .8rem; align-items: center; color: var(--text); text-decoration: none; font-size: .87rem; font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.section-header { max-width: 780px; margin-bottom: 2.3rem; }
.section-header h2 { margin: .65rem 0 1rem; }
.section-header p { font-size: 1rem; }
.card, .premium-card, .event-card, .featured-post, .blog-post, .sidebar-widget, .mission-card, .vision-card, .value-card, .program-card, .benefit-card, .contact-card, .membership-card, .donation-card, .receipt-card, .support-card, .impact-card, .form-container, .form-card, .faq-item, .team-member, .timeline-card, .empty-state, .share-box, .content { border-radius: 8px; box-shadow: none; }
.card:hover, .premium-card:hover, .event-card:hover, .blog-post:hover, .value-card:hover, .program-card:hover, .benefit-card:hover, .contact-card:hover, .membership-card:hover, .support-card:hover, .impact-card:hover, .team-member:hover { transform: none; box-shadow: none; }
.icon-box, .service-icon, .program-icon, .benefit-icon, .support-icon, .contact-icon { border-radius: 5px; box-shadow: none; background: #edf2f3; color: var(--text); }
.cta-box { background: var(--text); border-radius: 8px; box-shadow: none; }
.cta-box h2, .cta-box p { color: #fff; }
.cta-box .btn-primary { background: #e6c17e; border-color: #e6c17e; color: var(--text); }
.cta-box .btn-primary:hover { background: #f1d29b; }
.event-date { background: var(--text); box-shadow: none; border-radius: 5px; }
.events-list .event-card { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 1.5rem; align-items: start; padding: 1.5rem 0; background: transparent; border: 0; border-top: 1px solid var(--border); border-radius: 0; }
.events-list .event-date { width: 88px; min-width: 0; padding: 1rem .5rem; }
.event-details h2 a, .event-more { text-decoration: none; }
.event-details h2 a:hover, .event-more:hover { text-decoration: underline; text-underline-offset: 4px; }
.event-tabs a, .event-pagination a { border-radius: 4px; text-decoration: none; }
.event-tabs a[aria-current], .event-tabs a:hover { background: var(--text); }
.empty-state { background: transparent; border: 1px solid var(--border); padding: clamp(1.5rem, 4vw, 3rem); }
.empty-state h2 { font-size: 1.65rem; }
.empty-state p { font-weight: 500; max-width: 620px; margin: .9rem auto 0; }
.donation-form, .payment-method, .hours-card, .map-container { border-radius: 8px; box-shadow: none; }
.donation-option:hover { transform: none; }
.payment-method:has(input:checked) { background: var(--text); border-color: var(--text); color: #fff; }
.payment-method:focus-within { outline: 2px solid var(--gold); outline-offset: 3px; }
.payment-method input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.impact-section .card { padding: 1.5rem; border: 1px solid var(--border); background: #fff; }
.contact-info { background: var(--text); }
.contact-info .contact-icon { color: #fff; background: #ffffff15; }
.membership-card.popular { border: 1px solid #b99451; box-shadow: none; }
.membership-icon, .membership-price, .popular-badge { border-radius: 5px; }
input:not([type=checkbox]):not([type=radio]):not([type=hidden]), select, textarea { border-radius: 5px; }
form :is(input, select, textarea):focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.donation-option, .frequency-option { border-radius: 5px; }
.donation-option.selected, .frequency-option.active { background: var(--text); color: #fff; border-color: var(--text); }
.form-header, .membership-header { background: var(--text); }
.reveal, .fade-in { opacity: 1; transform: none; transition: none; }
.brand-note { min-width: 0; background: var(--text); padding: clamp(2rem, 4vw, 3rem); align-self: stretch; display: flex; flex-direction: column; justify-content: center; border-radius: 8px; }
.brand-note .eyebrow { color: #e6c17e; }
.brand-note strong { color: #fff; display: block; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -.04em; line-height: 1.2; margin: 1rem 0; }
.brand-note p { color: #d8e0e3; margin-bottom: 0; }
.team-initials { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 1.5rem; background: #edf2f3; color: var(--text); border-radius: 50%; font-weight: 800; font-size: 1.4rem; }
.service-detailed, .service-detailed.reverse { display: block; background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: none; }
.service-content { padding: clamp(1.5rem, 4vw, 3rem); }
.service-content p { max-width: 760px; }
.service-detailed .service-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1rem 0; }
.service-detailed .service-features li { align-items: flex-start; }
.article-placeholder { background: #e9eeeb; color: var(--text); display: flex; align-items: center; justify-content: center; min-height: 160px; height: 100%; font-size: 2rem; letter-spacing: .16em; font-weight: 800; border-bottom: 3px solid #b99451; }
body.article-page .hero { padding: 2.5rem 0; margin-top: 80px; background: #f0f3f2; }
body.article-page .hero h1 { font-family: inherit; font-size: clamp(2.2rem, 4.4vw, 3.5rem); line-height: 1.18; }
body.article-page .article-wrap { padding-top: 2.5rem; }
body.article-page .cover { border-radius: 8px; }
body.article-page .footer img { filter: none; background: #fff; padding: 5px; border-radius: 4px; width: auto; }
.footer { background: var(--text); color: #fff; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-logo img { width: auto; height: 56px; padding: 5px; background: #fff; border-radius: 4px; margin-bottom: 1rem; }
.footer p, .footer li { color: #d2dbe0; font-size: .86rem; }
.footer h4 { color: #fff; font-size: .85rem; margin: 0 0 1.2rem; }
.footer ul { display: grid; gap: .7rem; list-style: none; margin: 0; padding: 0; }
.footer a { color: #d2dbe0; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer li { overflow-wrap: anywhere; }
.social-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid #526674; border-radius: 4px; color: #fff; }
.social-links a:hover { background: #fff; color: var(--text); transform: none; }
.newsletter-section { padding: 1.5rem 0; border: 0; border-top: 1px solid #435965; border-radius: 0; background: none; margin-bottom: 1.5rem; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.newsletter-inner h4 { margin-bottom: .4rem; }
.newsletter-inner p { margin-bottom: 0; }
.newsletter-form { display: flex; gap: .6rem; }
.newsletter-input { width: 100%; min-width: 0; min-height: 49px; padding: .8rem; border: 1px solid #899aa4; background: transparent; color: #fff; border-radius: 5px; }
.newsletter-input::placeholder { color: #d2dbe0; }
.newsletter-form .btn { background: #e6c17e; border-color: #e6c17e; color: var(--text); }
#newsletter-message { margin-top: .8rem; color: #fff; font-size: .88rem; }
.copyright { border-top: 1px solid #435965; padding-top: 1.3rem; text-align: left; }
.copyright p { margin-bottom: 0; font-size: .75rem; }
@media (max-width: 960px) {
    .hamburger { display: flex; position: relative; z-index: 1002; }
    .header-container { min-height: 72px; }
    .logo img { height: 50px; }
    .menu-overlay.active { display: block; position: fixed; inset: 0; z-index: 999; background: #142f4077; }
    .nav-list { display: flex; position: fixed; top: 0; left: auto; right: -110%; width: min(86vw, 380px); height: 100dvh; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .3rem; padding: 6rem 1.4rem 2rem; background: #fff; z-index: 1001; overflow-y: auto; visibility: hidden; transition: right .2s, visibility .2s; }
    .nav-list.active { right: 0; visibility: visible; }
    .nav-list .nav-link { width: 100%; min-height: 49px; padding: .7rem .8rem; font-size: .98rem; background: transparent; }
    .nav-list .nav-link.active { background: #f0f3f2; }
    .nav-list .nav-link::after { display: none; }
    .nav-list .btn-don-nav { margin: .7rem 0 0; background: var(--text); justify-content: center; }
    .page-hero, body.article-page .hero { margin-top: 72px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-detailed .service-features { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .events-list .event-card { grid-template-columns: 65px minmax(0, 1fr); gap: 1rem; }
    .events-list .event-date { width: 65px; }
    .events-list .event-date .day { font-size: 1.65rem; }
    .events-list .event-date .month { font-size: .65rem; }
    .page-hero { padding: 1.75rem 0 2.3rem; min-height: 0; background: #f0f3f2; }
    .page-hero h1 { font-size: 2.35rem; }
    .page-hero p { font-size: .98rem; }
    .breadcrumb { margin-bottom: 1.25rem; }
    .hero-actions, .cta-actions { flex-direction: column; }
    .btn { width: 100%; }
    .footer-grid, .newsletter-inner { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { gap: 2rem; }
    .footer { padding-top: 2.5rem; }
    input:not([type=checkbox]):not([type=radio]):not([type=hidden]), select, textarea { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
