/* =========================
   Variables
========================= */
:root {
    --primary: #0d4637;
    --primary-dark: #082f26;
    --primary-deep: #061f1a;
    --primary-soft: #e5f0ea;
    --accent: #c49a48;
    --accent-dark: #8f6b25;
    --accent-soft: #fff6df;
    --background: #f7f3ea;
    --surface: #ffffff;
    --surface-muted: #fbfaf6;
    --text: #1d2925;
    --text-muted: #66736e;
    --border: #dfe5dd;
    --shadow-soft: 0 18px 50px rgba(8, 47, 38, 0.12);
    --shadow-card: 0 16px 35px rgba(8, 47, 38, 0.09);
    --radius: 8px;
    --radius-large: 8px;
    --container: 1240px;
    --header-height: 84px;
    --section-space: clamp(72px, 8vw, 120px);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================
   Reset
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background: var(--background);
    color: var(--text);
    font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

address {
    font-style: normal;
}

:focus-visible {
    outline: 3px solid rgba(196, 154, 72, 0.72);
    outline-offset: 4px;
}

/* =========================
   Base
========================= */
.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding-block: var(--section-space);
}

.section-anchor {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--text);
    line-height: 1.05;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0;
}

h1 {
    max-width: 1040px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(3.1rem, 6.2vw, 5.8rem);
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 4.2vw, 4.25rem);
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.25rem, 1.6vw, 1.55rem);
}

p {
    color: var(--text-muted);
    font-size: 1.02rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: clamp(36px, 5vw, 62px);
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:last-child,
.split-copy p,
.feature-copy p,
.contact-copy p,
.location-copy p {
    max-width: 650px;
}

.page-main {
    padding-top: var(--header-height);
}

.detail-feature {
    padding-top: var(--section-space);
}

.detail-feature .feature-copy h1,
.legal-content h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    overflow-wrap: anywhere;
}

.legal-section {
    background: var(--background);
}

.legal-content {
    max-width: 920px;
    border: 1px solid rgba(13, 70, 55, 0.1);
    border-radius: var(--radius);
    background: var(--surface);
    padding: clamp(28px, 5vw, 58px);
    box-shadow: var(--shadow-card);
}

.legal-content h2 {
    margin-top: 34px;
    font-family: inherit;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
}

.legal-content ul {
    margin: 0 0 22px;
    padding-left: 20px;
}

.legal-note {
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
    padding: 14px 16px;
}

/* =========================
   Utilities
========================= */
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-150%);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--primary-dark);
    padding: 10px 14px;
    font-weight: 800;
    box-shadow: var(--shadow-card);
    transition: transform 200ms var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

.button-row,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.btn-primary {
    background: var(--accent);
    color: #17130b;
    box-shadow: 0 16px 32px rgba(196, 154, 72, 0.24);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #d3ab5a;
    box-shadow: 0 20px 38px rgba(196, 154, 72, 0.3);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.17);
}

.btn-outline {
    border-color: rgba(13, 70, 55, 0.18);
    background: var(--surface);
    color: var(--primary);
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 70, 55, 0.38);
    box-shadow: var(--shadow-card);
}

.btn-light {
    background: #fff;
    color: var(--primary-dark);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
}

.check-list,
.lined-list,
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--text);
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
}

.check-list li::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 7px;
    width: 8px;
    height: 5px;
    transform: rotate(-45deg);
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

/* =========================
   Header
========================= */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    color: #fff;
    transition: height 220ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(4, 20, 17, 0.72), rgba(4, 20, 17, 0.12));
    pointer-events: none;
    transition: background-color 220ms var(--ease), opacity 220ms var(--ease), backdrop-filter 220ms var(--ease), border-color 220ms var(--ease);
}

.site-header.is-scrolled {
    height: 68px;
    color: var(--primary-dark);
}

.site-header.is-scrolled::before,
body.nav-open .site-header::before {
    border-bottom-color: rgba(13, 70, 55, 0.1);
    background: rgba(255, 255, 255, 0.91);
    box-shadow: 0 12px 32px rgba(8, 47, 38, 0.08);
    backdrop-filter: blur(16px);
}

.header-inner {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.brand-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: currentColor;
}

.brand-mark svg {
    width: 28px;
    height: 28px;
}

.brand-text {
    display: grid;
    gap: 1px;
    line-height: 1;
    letter-spacing: 0;
}

.brand-text span:first-child {
    font-size: 1.03rem;
}

.brand-text span:last-child {
    font-size: 0.72rem;
    opacity: 0.84;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.3vw, 30px);
    font-size: 0.94rem;
    font-weight: 800;
}

.desktop-nav a {
    position: relative;
    padding-block: 10px;
    color: currentColor;
    opacity: 0.9;
    transition: opacity 180ms var(--ease), color 180ms var(--ease);
}

.desktop-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent);
    transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius);
    padding: 12px 16px !important;
}

.site-header.is-scrolled .nav-cta {
    border-color: rgba(13, 70, 55, 0.17);
    background: var(--primary);
    color: #fff;
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 3;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: currentColor;
}

.menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms var(--ease), opacity 180ms var(--ease), top 220ms var(--ease);
}

.menu-toggle span:nth-child(1) {
    top: 16px;
}

.menu-toggle span:nth-child(2) {
    top: 23px;
}

.menu-toggle span:nth-child(3) {
    top: 30px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    z-index: 1;
    display: grid;
    max-height: calc(100dvh - var(--header-height) - 24px);
    overflow-y: auto;
    transform: translateY(-14px);
    border: 1px solid rgba(13, 70, 55, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    padding: 10px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(6, 31, 26, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms var(--ease);
}

.mobile-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    min-height: 48px;
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--primary-dark);
    font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
    background: var(--primary-soft);
}

.mobile-support {
    margin-top: 6px;
    background: linear-gradient(135deg, #d4a545, #f0c46b);
    color: #161006 !important;
    text-align: center;
    box-shadow: 0 14px 26px rgba(196, 154, 72, 0.26);
}

/* =========================
   Hero
========================= */
.hero {
    position: relative;
    display: grid;
    min-height: clamp(650px, 82vh, 790px);
    overflow: hidden;
    isolation: isolate;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    z-index: -3;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(4, 20, 17, 0.86), rgba(6, 31, 26, 0.62) 46%, rgba(4, 20, 17, 0.26)),
        linear-gradient(0deg, rgba(6, 31, 26, 0.62), rgba(6, 31, 26, 0.08) 44%, rgba(6, 31, 26, 0.2));
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 42%;
    background: linear-gradient(0deg, rgba(247, 243, 234, 0.94), rgba(247, 243, 234, 0));
}

.hero-content {
    align-self: center;
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 104px;
}

.hero-eyebrow {
    color: #f5d98d;
}

.hero-title-single {
    display: flex;
    min-height: 3.15em;
    align-items: flex-end;
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.04rem, 1.7vw, 1.32rem);
}

.scroll-indicator {
    position: absolute;
    right: 50%;
    bottom: 42px;
    z-index: 4;
    display: grid;
    width: 36px;
    height: 52px;
    translate: 50% 0;
    place-items: start center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
}

.scroll-indicator span {
    width: 5px;
    height: 5px;
    margin-top: 12px;
    border-radius: 50%;
    background: #fff;
    animation: scroll-dot 1.7s infinite;
}

/* =========================
   Hero Info Cards
========================= */
.info-strip {
    position: relative;
    z-index: 5;
    margin-top: -76px;
    padding-bottom: 28px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    display: flex;
    min-height: 148px;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(13, 70, 55, 0.08);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.96);
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.icon-box,
.round-icon,
.service-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--primary);
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius);
    background: var(--primary-soft);
}

.icon-box svg,
.round-icon svg,
.service-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card h2 {
    margin-bottom: 8px;
    font-family: inherit;
    font-size: 1.2rem;
}

.info-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

/* =========================
   About
========================= */
.split-layout,
.feature-grid,
.contact-grid,
.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(36px, 6vw, 82px);
    align-items: center;
}

.split-copy h2,
.feature-copy h2,
.contact-copy h2,
.location-copy h2 {
    max-width: 720px;
}

.image-panel,
.feature-media {
    position: relative;
    min-width: 0;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.image-panel img,
.feature-media img,
.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-panel::before,
.feature-media::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: var(--radius);
    pointer-events: none;
}

.image-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    max-width: min(320px, calc(100% - 36px));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(8, 47, 38, 0.86);
    color: #fff;
    padding: 18px;
    backdrop-filter: blur(14px);
}

.image-note strong,
.image-note span {
    display: block;
}

.image-note strong {
    margin-bottom: 4px;
}

.image-note span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
}

/* =========================
   Values
========================= */
.values-section {
    position: relative;
    overflow: hidden;
    background: var(--surface-muted);
}

.values-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background:
        linear-gradient(135deg, transparent 0 48%, rgba(13, 70, 55, 0.08) 48% 52%, transparent 52%),
        linear-gradient(45deg, transparent 0 48%, rgba(196, 154, 72, 0.08) 48% 52%, transparent 52%);
    background-size: 44px 44px;
    pointer-events: none;
}

.values-section .container {
    position: relative;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.principle-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.86);
    padding: clamp(24px, 3.2vw, 34px);
    box-shadow: 0 12px 30px rgba(8, 47, 38, 0.05);
}

.round-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 70, 55, 0.13);
    border-radius: 50%;
    background: var(--primary-soft);
}

/* =========================
   Services
========================= */
.services {
    background: var(--background);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    display: grid;
    min-height: 282px;
    align-content: start;
    border: 1px solid rgba(13, 70, 55, 0.1);
    border-radius: var(--radius-large);
    background: var(--surface);
    padding: clamp(24px, 3.2vw, 34px);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(8, 47, 38, 0.04);
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent);
    transition: transform 240ms var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 70, 55, 0.24);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-icon {
    transform: translateY(-2px);
}

.service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: var(--radius);
    background: var(--primary-soft);
    transition: transform 240ms var(--ease);
}

.service-card p {
    margin-bottom: 24px;
}

.card-link {
    display: inline-flex;
    align-self: end;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.93rem;
    font-weight: 900;
}

.card-link::after {
    content: "›";
    color: var(--accent-dark);
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 200ms var(--ease);
}

.service-card:hover .card-link::after {
    transform: translateX(3px);
}

/* =========================
   Feature Sections
========================= */
.feature-section {
    background: var(--surface-muted);
}

.feature-reverse {
    background: var(--background);
}

.feature-reverse .feature-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
}

.feature-media {
    aspect-ratio: 4 / 3;
}

.lined-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 32px;
}

.lined-list li {
    border-left: 3px solid var(--accent);
    padding-left: 14px;
    color: var(--text);
    font-weight: 700;
}

/* =========================
   Statement
========================= */
.statement-section {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
    color: #fff;
    padding-block: clamp(80px, 9vw, 128px);
}

.statement-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background:
        linear-gradient(30deg, transparent 35%, #fff 36%, transparent 37%),
        linear-gradient(150deg, transparent 35%, #fff 36%, transparent 37%);
    background-size: 70px 70px;
}

.statement-inner {
    position: relative;
    max-width: 980px;
    text-align: center;
}

.statement-inner blockquote {
    margin: 0 auto 24px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4.35rem);
    font-weight: 700;
    line-height: 1.14;
}

.statement-inner p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 800;
}

/* =========================
   Activities
========================= */
.activities {
    background: var(--surface-muted);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.activity-card {
    overflow: hidden;
    border: 1px solid rgba(13, 70, 55, 0.1);
    border-radius: var(--radius-large);
    background: var(--surface);
    box-shadow: 0 12px 28px rgba(8, 47, 38, 0.05);
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.activity-card img {
    aspect-ratio: 16 / 11;
    object-fit: contain;
    background: var(--surface);
}

.activity-card div {
    padding: 24px;
}

.activity-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.activity-card p {
    margin-bottom: 0;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* =========================
   Donation
========================= */
.donation {
    background:
        linear-gradient(135deg, rgba(8, 59, 101, 0.98), rgba(17, 111, 171, 0.95)),
        #0b5f9f;
}

.donation-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.donation-card::after {
    display: none;
}

.donation-card > * {
    position: relative;
    z-index: 1;
}

.donation-card p {
    max-width: 680px;
    margin-bottom: 0;
}

.donation .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.donation h2,
.donation p {
    color: #fff;
}

.donation .btn-primary {
    background: #fff;
    color: #0a4f85;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.donation .btn-primary:hover {
    background: #f4f8fb;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

/* =========================
   Contact
========================= */
.contact {
    background: var(--background);
}

.contact-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
}

.contact-card {
    border: 1px solid rgba(13, 70, 55, 0.1);
    border-radius: var(--radius-large);
    background: var(--surface);
    padding: clamp(26px, 4vw, 42px);
    box-shadow: var(--shadow-card);
}

.contact-card h3 {
    font-size: clamp(1.7rem, 2.5vw, 2.45rem);
}

.contact-card address {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.contact-line {
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--border);
    padding-block: 18px;
}

.contact-line:last-child {
    padding-bottom: 0;
}

.contact-line span {
    color: var(--text-muted);
    font-size: 0.83rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-line a,
.site-footer a {
    transition: color 180ms var(--ease), opacity 180ms var(--ease);
}

.contact-line a {
    color: var(--primary);
    font-weight: 900;
}

.contact-line a:hover,
.site-footer a:hover {
    color: var(--accent);
}

/* =========================
   Map
========================= */
.map-section {
    height: 420px;
    background: #d9dfda;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.18) contrast(1.05);
}

.location-section {
    padding-block: 0 clamp(72px, 8vw, 120px);
    background: var(--background);
}

.location-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
    border-radius: var(--radius);
    background: var(--surface);
    padding: clamp(18px, 3vw, 28px);
    box-shadow: var(--shadow-soft);
}

.map-visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface-muted);
}

.map-visual iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.location-copy {
    padding: clamp(12px, 3vw, 26px);
}

/* =========================
   Footer
========================= */
.site-footer {
    background: var(--primary-deep);
    color: #fff;
    padding-top: clamp(58px, 7vw, 86px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
    gap: clamp(28px, 4vw, 58px);
    padding-bottom: 46px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo .brand-logo {
    width: 46px;
    height: 46px;
}

.footer-brand p,
.site-footer address,
.site-footer li,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand p {
    max-width: 340px;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 10px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer address + a,
.site-footer address + a + a {
    display: block;
    width: fit-content;
    margin-top: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

.legal-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-card);
    transition: transform 200ms var(--ease), opacity 200ms var(--ease), background-color 200ms var(--ease);
}

.back-to-top[hidden] {
    display: none;
}

.back-to-top:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* =========================
   Animations
========================= */
.js .reveal {
    transform: translateY(24px);
    opacity: 0;
    transition: transform 720ms var(--ease), opacity 720ms var(--ease);
    transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
    transform: translateY(0);
    opacity: 1;
}

@keyframes scroll-dot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    70% {
        transform: translateY(18px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
    .desktop-nav {
        gap: 16px;
        font-size: 0.89rem;
    }

    .service-grid,
    .activities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid,
    .feature-reverse .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-reverse .feature-copy {
        order: 1;
    }

    .feature-reverse .feature-media {
        order: 2;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 74px;
    }

    .container {
        width: min(100% - 32px, var(--container));
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-header.is-scrolled {
        height: 64px;
    }

    .split-layout,
    .feature-grid,
    .feature-reverse .feature-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .info-grid,
    .principle-grid {
        grid-template-columns: 1fr;
    }

    .info-strip {
        margin-top: -44px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-bottom: 118px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(4, 20, 17, 0.9), rgba(6, 31, 26, 0.68)),
            linear-gradient(0deg, rgba(6, 31, 26, 0.58), rgba(6, 31, 26, 0.16));
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .donation-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    :root {
        --section-space: 72px;
    }

    h1 {
        font-size: clamp(2.58rem, 13vw, 3.85rem);
    }

    h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .brand-text span:first-child {
        font-size: 0.94rem;
    }

    .brand-text span:last-child {
        font-size: 0.66rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: 690px;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 112px;
    }

    .hero-copy {
        font-size: 1.02rem;
    }

    .button-row,
    .contact-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
        min-height: 52px;
    }

    .scroll-indicator {
        display: none;
    }

    .info-card {
        min-height: auto;
        padding: 22px;
    }

    .image-panel {
        min-height: 320px;
    }

    .feature-media {
        min-height: 0;
    }

    .image-note {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
    }

    .service-grid,
    .activities-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .statement-inner blockquote {
        font-size: clamp(1.85rem, 9vw, 3rem);
    }

    .location-grid {
        padding: 14px;
    }

    .map-visual {
        min-height: 280px;
    }

    .map-section {
        height: 340px;
    }

    .legal-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 390px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .brand {
        gap: 9px;
    }

    .hero {
        min-height: 670px;
    }

    .hero-content {
        padding-top: 110px;
    }

    .info-card {
        flex-direction: column;
        gap: 14px;
    }

    .contact-grid {
        gap: 28px;
    }
}

@media (min-width: 1440px) {
    .hero-image {
        object-position: center 42%;
    }
}

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

    .js .reveal {
        transform: none;
        opacity: 1;
    }
}
