:root {
    --bg: #f7f4ee;
    --bg-soft: #fbfaf7;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.96);
    --surface-dark: #111111;
    --text: #161616;
    --muted: #6d675c;
    --gold: #c9a44c;
    --gold-deep: #9c7931;
    --gold-soft: rgba(201, 164, 76, 0.18);
    --line: rgba(153, 122, 49, 0.16);
    --shadow: 0 24px 60px rgba(15, 15, 15, 0.08);
    --shadow-strong: 0 26px 80px rgba(15, 15, 15, 0.14);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(201, 164, 76, 0.16), transparent 28%),
        linear-gradient(180deg, #fff 0%, var(--bg) 42%, #f4f0e8 100%);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
button { border: 0; }

main { overflow: clip; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 18px clamp(14px, 3vw, 32px) 0;
    padding: 14px clamp(18px, 3vw, 28px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
}

.brand img {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    padding: 6px;
    background: linear-gradient(180deg, rgba(201, 164, 76, 0.18), rgba(201, 164, 76, 0.05));
}

.brand span {
    line-height: 1.1;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.brand strong {
    display: block;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: normal;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 0 0 1px rgba(201, 164, 76, 0.14);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.nav-cta,
.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, #1b1b1b, #2e2415 36%, var(--gold) 100%);
    box-shadow: 0 14px 32px rgba(156, 121, 49, 0.24);
}

.btn.secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 164, 76, 0.2);
    box-shadow: var(--shadow);
}

.btn:hover,
.nav-cta:hover,
.feature-card:hover,
.quote-card:hover,
.program-card:hover,
.announcement-card:hover,
.price-card:hover,
.gallery-item:hover,
.timing-card:hover,
.hero-panel:hover,
.contact-form:hover,
.info-card:hover {
    transform: translateY(-4px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(201, 164, 76, 0.18);
    box-shadow: var(--shadow);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    border-radius: 999px;
    background: var(--gold-deep);
}

.hero,
.page-hero,
.section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 34px;
    padding: clamp(42px, 8vw, 88px) 0 54px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 24px 0 auto auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.25), transparent 70%);
    filter: blur(18px);
    z-index: -1;
}

.hero-copy,
.hero-panel,
.feature-card,
.quote-card,
.program-card,
.announcement-card,
.price-card,
.panel,
.contact-form,
.gallery-item,
.timing-card,
.info-card,
.empty-state {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: clamp(28px, 4vw, 44px);
    align-self: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.05; 
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

h1 { font-size: clamp(2rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: 1.2rem; }
h1 {
    font-size: clamp(2rem, 5vw, 4.4rem);
    color: #ffbf00;
}   

.hero-copy p,
.page-hero p,
.feature-card p,
.quote-card p,
.program-card p,
.price-card p,
.panel p,
.contact-form p,
.info-card p {
    color: var(--muted);
}

.hero-tagline {
    max-width: 620px;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-points,
.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.hero-points div,
.contact-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
}

.hero-points i,
.contact-points i,
.timing-card i,
/* .feature-icon, */
.info-card i {
    color: var(--gold-deep);
}
.feature-icon i {
    color: #000;
    font-size: 22px;
}
.hero-visual {
    display: grid;
    gap: 18px;
}

.hero-panel {
    padding: 28px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    width: min(100%, 400px);
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 20px 45px rgba(201, 164, 76, 0.24));
    animation: floatLogo 5.5s ease-in-out infinite;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.hero-metrics div {
    padding: 18px;
    border-radius: 20px;
    background: #1e90ff;
    color: #f5efe3;
}

.hero-metrics strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    color: #fff;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
}

.page-hero {
    padding: clamp(48px, 8vw, 82px) clamp(20px, 3vw, 36px);
    margin-top: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
    border: 1px solid rgba(255,255,255,0.88);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.section {
    padding: clamp(54px, 7vw, 92px) 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-subline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-subline p {
    margin: 0;
    color: var(--muted);
}

.card-grid,
.pricing-grid,
.gallery,
.stat-grid,
.program-list,
.info-grid {
    display: grid;
    gap: 20px;
}

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

.card-grid.three,
.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.quote-card,
.program-card,
.price-card,
.panel,
.contact-form,
.timing-card,
.info-card,
.empty-state {
    padding: 28px;
}

.feature-card,
.quote-card,
.program-card,
.price-card,
.panel,
.gallery-item,
.timing-card,
.info-card {
    opacity: 0;
    transform: translateY(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

.feature-card:hover,
.quote-card:hover,
.program-card:hover,
.announcement-card:hover,
.price-card:hover,
.panel:hover,
.gallery-item:hover,
.timing-card:hover,
.info-card:hover {
    box-shadow: var(--shadow-strong);
}

.profile-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.92);
    color: var(--text);
    box-shadow: var(--shadow);
}

.profile-card img {
    width: 112px;
    height: 112px;
    margin-bottom: 20px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.profile-card h3 {
    color: var(--text);
}

.profile-card p,
.profile-card p strong {
    color: var(--muted);
}

.profile-card p strong {
    color: var(--gold-deep);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f4ead1, #d5b567);
    color: #000;
    box-shadow: 0 14px 26px rgba(156, 121, 49, 0.16);
}

.quote-card .feature-icon {
    background: linear-gradient(135deg, #fff6dd, #c9a44c);
    box-shadow: 0 14px 26px rgba(156, 121, 49, 0.18);
}

.feature-icon i {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #000;
    color: #000;
    font-size: 0;
    line-height: 1;
    -webkit-mask: var(--feature-icon-mask) center / contain no-repeat;
    mask: var(--feature-icon-mask) center / contain no-repeat;
}

.feature-icon .fa-dumbbell {
    --feature-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 6.5 17.5 17.5'/%3E%3Cpath d='M3 8 8 3'/%3E%3Cpath d='M16 21 21 16'/%3E%3Cpath d='M5 10 10 5'/%3E%3Cpath d='M14 19 19 14'/%3E%3C/svg%3E");
}

.feature-icon .fa-child-reaching {
    --feature-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2.2'/%3E%3Cpath d='M12 8v6'/%3E%3Cpath d='M7 11h10'/%3E%3Cpath d='M12 14 8 21'/%3E%3Cpath d='M12 14 16 21'/%3E%3C/svg%3E");
}

.feature-icon .fa-fire-flame-curved {
    --feature-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13 2c.8 3.5-2.6 4.6-2.6 7 0 1.1.7 2 1.8 2.4.5-2.2 2.2-3.2 3.5-4.8C18 9.1 20 11.7 20 15.2 20 19.1 16.7 22 12 22s-8-2.9-8-6.8c0-3.1 1.8-5.5 4.3-7.6C8.1 10.2 9.6 12 11 12c-1.1-3.9.7-7.4 2-10Z'/%3E%3C/svg%3E");
}

.feature-icon .fa-trophy {
    --feature-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 4h8v5a4 4 0 0 1-8 0V4Z'/%3E%3Cpath d='M6 4H4v3a4 4 0 0 0 4 4'/%3E%3Cpath d='M18 4h2v3a4 4 0 0 1-4 4'/%3E%3Cpath d='M12 13v5'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M10 18h4'/%3E%3C/svg%3E");
}

.feature-icon .fa-user-secret {
    --feature-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9h14'/%3E%3Cpath d='M8 9l2-5h4l2 5'/%3E%3Ccircle cx='9' cy='14' r='1.3'/%3E%3Ccircle cx='15' cy='14' r='1.3'/%3E%3Cpath d='M10.5 18h3'/%3E%3Cpath d='M5 21c1.3-2 3.6-3 7-3s5.7 1 7 3'/%3E%3C/svg%3E");
}

.feature-icon .fa-quote-left {
    --feature-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 6c-3.6 1-6 3.9-6 7.4V18h7v-7H8.2c.4-1.4 1.5-2.4 3.1-3L10 6Zm10 0c-3.6 1-6 3.9-6 7.4V18h7v-7h-2.8c.4-1.4 1.5-2.4 3.1-3L20 6Z'/%3E%3C/svg%3E");
}

.profile-card {
    display: flex;
    flex-direction: column;
}

.profile-card img {
    width: 100%;
    height: 330px;
    margin-bottom: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 239, 227, 0.9));
    border: 1px solid rgba(201, 164, 76, 0.16);
    object-fit: contain;
    object-position: center;
    box-shadow: 0 16px 36px rgba(15, 15, 15, 0.08);
}

.profile-card h3 {
    margin-top: 0;
}

.corporate-winners {
    position: relative;
    overflow: hidden;
    padding: clamp(42px, 7vw, 78px);
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(201, 164, 76, 0.14) 1px, transparent 1px),
        linear-gradient(180deg, rgba(201, 164, 76, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 12% 10%, rgba(255, 215, 0, 0.3), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(30, 144, 255, 0.12), transparent 34%),
        linear-gradient(135deg, #fffdf7, #f5efe1 48%, #fff9e8);
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
    color: var(--text);
    box-shadow: 0 0 44px rgba(201, 164, 76, 0.34), 0 28px 80px rgba(156, 121, 49, 0.14);
    isolation: isolate;
}

.corporate-winners::before,
.corporate-winners::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.corporate-winners::before {
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(201, 164, 76, 0.32);
    box-shadow: inset 0 0 38px rgba(255, 215, 0, 0.12), 0 0 28px rgba(255, 215, 0, 0.14);
}

.corporate-winners::after {
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.22), transparent 68%);
    filter: blur(6px);
}

.corporate-winners-copy,
.corporate-winners-grid,
.corporate-partners {
    position: relative;
    z-index: 1;
}

.corporate-winners .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(201, 164, 76, 0.3);
    color: var(--gold-deep);
    box-shadow: 0 0 22px rgba(255, 215, 0, 0.2);
}

.corporate-winners h2,
.corporate-winners h3,
.corporate-winners p {
    color: var(--text);
}

.corporate-winners-copy {
    max-width: 880px;
}

.corporate-winners-copy h2 {
    max-width: 980px;
    color: #161616;
    text-shadow: 0 0 18px rgba(255, 215, 0, 0.2);
}

.corporate-winners-copy p {
    max-width: 760px;
    color: var(--muted);
}

.corporate-winners-grid {
    display: grid;
    grid-template-columns: 1.18fr repeat(2, minmax(0, 0.91fr));
    gap: 18px;
    margin-top: 30px;
}

.corporate-glow-card {
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(201, 164, 76, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65), 0 20px 46px rgba(156, 121, 49, 0.12);
    backdrop-filter: blur(18px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.corporate-glow-card.featured {
    background: linear-gradient(180deg, rgba(255, 247, 199, 0.9), rgba(255, 255, 255, 0.76));
    border-color: rgba(201, 164, 76, 0.42);
    box-shadow: 0 0 38px rgba(255, 215, 0, 0.22), 0 26px 58px rgba(156, 121, 49, 0.14);
}

.corporate-glow-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 164, 76, 0.58);
    box-shadow: 0 0 46px rgba(255, 215, 0, 0.3), 0 26px 58px rgba(156, 121, 49, 0.18);
}

.corporate-glow-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.corporate-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8e9bd 0%, #dfbd66 100%);
    color: #111;
    box-shadow: 0 12px 28px rgba(201, 164, 76, 0.24), 0 0 22px rgba(223, 189, 102, 0.28);
}

.corporate-icon i {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #111;
    font-size: 0;
    line-height: 1;
    -webkit-mask: var(--corporate-icon-mask) center / contain no-repeat;
    mask: var(--corporate-icon-mask) center / contain no-repeat;
}

.corporate-icon .fa-brain {
    --corporate-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5a3 3 0 0 0-5 2.2A3.2 3.2 0 0 0 5 13a3 3 0 0 0 4 4.8V5Z'/%3E%3Cpath d='M15 5a3 3 0 0 1 5 2.2A3.2 3.2 0 0 1 19 13a3 3 0 0 1-4 4.8V5Z'/%3E%3Cpath d='M9 8H7'/%3E%3Cpath d='M15 8h2'/%3E%3Cpath d='M9 13H7'/%3E%3Cpath d='M15 13h2'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E");
}

.corporate-icon .fa-shield-heart {
    --corporate-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-11V5l-8-3-8 3v6c0 7 8 11 8 11Z'/%3E%3Cpath d='M8.8 11.2c0-1.2 1.6-2 3.2-.5 1.6-1.5 3.2-.7 3.2.5 0 1.8-3.2 3.8-3.2 3.8s-3.2-2-3.2-3.8Z'/%3E%3C/svg%3E");
}

.corporate-icon .fa-hand-fist {
    --corporate-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 11V6a2 2 0 0 1 4 0v5'/%3E%3Cpath d='M11 11V5a2 2 0 0 1 4 0v6'/%3E%3Cpath d='M15 11V7a2 2 0 0 1 4 0v7c0 4-2.7 7-7 7h-1c-3.3 0-6-2.7-6-6v-2a2 2 0 0 1 4 0v1'/%3E%3Cpath d='M7 11h10'/%3E%3Cpath d='M8 16h7'/%3E%3C/svg%3E");
}

.corporate-partners {
    margin-top: 22px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(201, 164, 76, 0.18);
    box-shadow: inset 0 0 26px rgba(255, 215, 0, 0.08), 0 18px 42px rgba(156, 121, 49, 0.1);
}

.corporate-partners p {
    margin: 0 0 14px;
    color: var(--gold-deep);
    font-weight: 800;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 247, 199, 0.78);
    border: 1px solid rgba(201, 164, 76, 0.26);
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.16);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.mission-section {
    align-items: start;
}

.mission-panel,
.mission-actions,
.mission-highlights,
.mission-list,
.support-methods,
.donation-layout,
.bank-details {
    display: grid;
    gap: 16px;
}

.mission-panel {
    gap: 20px;
    align-content: start;
}

.mission-card {
    align-self: start;
    padding: 28px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.mission-card,
.mission-highlights div {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.35s ease,
                box-shadow 0.35s ease,
                opacity 0.35s ease;
}

.mission-highlights div:hover,
.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.mission-card-dark {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(253, 248, 236, 0.94));
    color: var(--text);
    border-color: rgba(201, 164, 76, 0.2);
}

.mission-card-dark h2,
.mission-card-dark h3,
.mission-card-dark p,
.mission-card-dark .eyebrow {
    color: var(--text);
}

.mission-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.mission-impact-copy {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(253, 248, 236, 0.72);
    border: 1px solid rgba(201, 164, 76, 0.16);
}

.mission-impact-copy h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.mission-impact-copy p {
    margin: 0;
}

.mission-highlights div {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 164, 76, 0.12);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.mission-highlights strong {
    color: var(--gold-deep);
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    line-height: 1;
}

.mission-highlights span {
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
}

.mission-list div,
.support-methods span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(201, 164, 76, 0.12);
}

.mission-list i {
    color: var(--gold-deep);
    font-size: 1.05rem;
}

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

.support-methods span {
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(201, 164, 76, 0.16);
    color: var(--text);
    font-weight: 700;
}

.mission-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.mission-actions .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
}

.donation-layout {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    align-items: start;
}

.csr-certificate-card,
.bank-details div {
    border-radius: 20px;
    border: 1px solid rgba(201, 164, 76, 0.16);
    background: rgba(255, 255, 255, 0.76);
}

.csr-certificate-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 18px;
    text-align: center;
}

.csr-certificate-card img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    background: #fff;
    padding: 12px;
}

.csr-certificate-card strong,
.bank-details strong {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
}

.csr-certificate-card span,
.bank-details span {
    color: var(--muted);
}

.bank-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 16px;
}

.timing-card {
    position: relative;
    overflow: hidden;
}

.timing-card::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.2), transparent 72%);
}

.timing-card h3 {
    margin-bottom: 10px;
}

.timing-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.96);
    color: #fff;
    font-weight: 700;
}

.timing-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.timing-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(201, 164, 76, 0.12);
}

.timing-list strong {
    font-family: 'Poppins', sans-serif;
}

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

.stat-grid div {
    padding: 24px;
    border-radius: 24px;
    background: #f5f5f5;
    box-shadow: var(--shadow);
}

.stat-grid strong {
    display: block;
    color: var(--gold-deep);
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
}

.stat-grid span {
    color: var(--muted);
}

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

.gallery > * {
    min-height: 210px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 24px;
    padding: 0;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-copy {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.96));
}

.gallery-copy strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
}

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

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 20px;
}

.announcement-card {
    overflow: hidden;
    padding: 0;
}

.announcement-tile {
    grid-column: span 4;
    display: grid;
    min-height: 100%;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.announcement-tile.landscape {
    grid-column: span 8;
}

.announcement-tile.portrait,
.announcement-tile.square {
    grid-column: span 4;
}

.announcement-media {
    position: relative;
    overflow: hidden;
}

.announcement-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-tile.landscape .announcement-media {
    aspect-ratio: 16 / 8.8;
}

.announcement-tile.portrait .announcement-media {
    aspect-ratio: 4 / 5.2;
}

.announcement-tile.square .announcement-media {
    aspect-ratio: 1 / 1;
}

.announcement-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(14, 14, 14, 0.54));
    pointer-events: none;
}

.announcement-copy {
    padding: 24px;
}

.announcement-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.announcement-copy p {
    color: var(--muted);
}

.program-card a {
    color: var(--gold-deep);
    font-weight: 800;
}

.price-card.featured {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(44, 35, 21, 0.95));
}

.price-card.featured h2,
.price-card.featured p,
.price-card.featured strong {
    color: #fff;
}

.price-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-deep);
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
}

.cta-band {
    padding: clamp(44px, 7vw, 72px);
    background: linear-gradient(135deg, #171717, #2e2415 58%, #6f5726);
    border-radius: 34px;
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.cta-band h2,
.cta-band p {
    color: var(--text);
}

.clean-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.contact-layout,
.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.info-card i {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(201, 164, 76, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(201, 164, 76, 0.5);
    box-shadow: 0 0 0 4px rgba(201, 164, 76, 0.12);
}

textarea { resize: vertical; }

.alert,
.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
}

.alert.success,
.form-alert.success {
    color: #1d6e3c;
    background: rgba(43, 167, 92, 0.12);
    border: 1px solid rgba(43, 167, 92, 0.25);
}

.alert.error,
.form-alert.error {
    color: #9c2b2b;
    background: rgba(183, 59, 59, 0.12);
    border: 1px solid rgba(183, 59, 59, 0.22);
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(16, 16, 16, 0.84);
}

.lightbox[hidden] { display: none; }

.lightbox img {
    max-width: min(100%, 1000px);
    max-height: 84vh;
    border-radius: 24px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
}

.lightbox button {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: var(--text);
}

.modal-shell {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.modal-shell[hidden] { display: none; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.58);
    backdrop-filter: blur(8px);
}

.enquiry-modal {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    width: min(980px, 100%);
    max-height: calc(100dvh - 48px);
    gap: 24px;
    padding: 30px;
    overflow: auto;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(249,246,240,0.92));
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.modal-copy {
    padding: 16px 8px 16px 4px;
}

.modal-copy h2,
.enquiry-form label {
    overflow-wrap: anywhere;
}

.enquiry-form {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(201, 164, 76, 0.14);
}

.submit-button {
    width: 100%;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.92);
    color: #fff;
    cursor: pointer;
}

.modal-open,
.lightbox-open {
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 18px;
}

.gallery-tile {
    position: relative;
    min-height: 260px;
    padding: 0;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.gallery-tile.landscape {
    grid-column: span 8;
    aspect-ratio: 16 / 10;
}

.gallery-tile.portrait {
    grid-column: span 4;
    aspect-ratio: 4 / 5.4;
}

.gallery-tile.square {
    grid-column: span 4;
    aspect-ratio: 1 / 1;
}

.gallery-tile::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(12, 12, 12, 0.5));
    pointer-events: none;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-action-bar { display: none; }

.site-footer {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 28px;
    padding: 28px;
    background: rgba(14, 14, 14, 0.96);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-strong);
}

.site-footer strong,
.site-footer a,
.footer-links span {
    color: #fff;
}

.site-footer strong {
    display: block;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
}

.footer-links,
.footer-meta {
    display: grid;
    gap: 10px;
}

.footer-links span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.visible { opacity: 1; transform: none; }

/* Premium visual polish layer */
:root {
    --bg: #f6f0e4;
    --bg-soft: #fffaf0;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --text: #15130f;
    --muted: #746a5a;
    --gold: #d7b663;
    --gold-deep: #9b7428;
    --gold-soft: rgba(215, 182, 99, 0.2);
    --glove-red: #c9292f;
    --glove-blue: #1f63c8;
    --glove-red-soft: rgba(201, 41, 47, 0.12);
    --glove-blue-soft: rgba(31, 99, 200, 0.12);
    --shadow: 0 22px 58px rgba(52, 38, 15, 0.1);
    --shadow-strong: 0 30px 86px rgba(52, 38, 15, 0.18);
}

body {
    background:
        radial-gradient(circle at 8% 4%, rgba(215, 182, 99, 0.24), transparent 30%),
        radial-gradient(circle at 92% 12%, rgba(30, 144, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #f6f0e4 46%, #efe6d4 100%);
}

.site-header {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 54px rgba(52, 38, 15, 0.1);
}

.hero {
    min-height: clamp(520px, 86vh, 860px);
    align-items: center;
    gap: clamp(28px, 5vw, 58px);
    padding: clamp(28px, 9vw, 118px) 0 clamp(64px, 8vw, 96px);
}

.hero::before {
    inset: 0 -120px auto auto;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(215, 182, 99, 0.34), transparent 68%);
    filter: blur(24px);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 58px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 232, 0.72)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 86px rgba(52, 38, 15, 0.14);
}

.hero-copy::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 182, 99, 0.22), transparent 70%);
    pointer-events: none;
}

h1 {
    max-width: 860px;
    color: var(--gold-deep);
    background: linear-gradient(135deg, #8f681e 0%, #d7b663 45%, #f6df93 72%, #9b7428 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2rem, 5.5vw, 5rem);
    letter-spacing: 0;
}

h2 {
    color: var(--text);
    letter-spacing: 0;
}

h3 {
    letter-spacing: 0;
}

.hero-tagline {
    max-width: 700px;
    font-size: clamp(1.12rem, 2vw, 1.38rem);
}

.eyebrow {
    color: var(--gold-deep);
}

.btn,
.nav-cta {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(52, 38, 15, 0.12);
}

.nav-cta,
.btn.primary {
    background: linear-gradient(135deg, #12100d 0%, #463414 48%, #d7b663 100%);
    box-shadow: 0 16px 38px rgba(155, 116, 40, 0.28);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(215, 182, 99, 0.32);
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 22px 52px rgba(155, 116, 40, 0.24);
}

.hero-actions {
    gap: 16px;
    margin-top: 32px;
}

.section {
    padding: clamp(70px, 8vw, 112px) 0;
}

.section-heading {
    max-width: 840px;
    margin-bottom: 34px;
}

.card-grid,
.pricing-grid,
.gallery,
.stat-grid,
.program-list,
.info-grid {
    gap: 24px;
}

.hero-copy,
.hero-panel,
.feature-card,
.quote-card,
.program-card,
.announcement-card,
.price-card,
.panel,
.contact-form,
.gallery-item,
.timing-card,
.info-card,
.empty-state,
.mission-card {
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.feature-card,
.quote-card,
.program-card,
.price-card,
.panel,
.gallery-item,
.timing-card,
.info-card,
.mission-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover,
.quote-card:hover,
.program-card:hover,
.announcement-card:hover,
.price-card:hover,
.panel:hover,
.gallery-item:hover,
.timing-card:hover,
.info-card:hover,
.mission-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 182, 99, 0.32);
    box-shadow: var(--shadow-strong);
}

.hero-panel,
.cta-band,
.mission-card-dark {
    background:
        radial-gradient(circle at 12% 0%, var(--glove-red-soft), transparent 34%),
        radial-gradient(circle at 94% 10%, var(--glove-blue-soft), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 226, 0.78));
    color: var(--text);
    border-color: rgba(215, 182, 99, 0.28);
    box-shadow: 0 28px 78px rgba(52, 38, 15, 0.14);
}

.hero-panel h2,
.hero-panel h3,
.hero-panel p,
.hero-panel .eyebrow,
.cta-band h2,
.cta-band p,
.cta-band .eyebrow,
.mission-card-dark h2,
.mission-card-dark h3,
.mission-card-dark p,
.mission-card-dark .eyebrow {
    color: var(--text);
}

.hero-metrics div {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(215, 182, 99, 0.18);
    box-shadow: inset 0 0 26px rgba(215, 182, 99, 0.08), 0 14px 30px rgba(52, 38, 15, 0.08);
}

.hero-metrics div:nth-child(1) {
    border-color: rgba(201, 41, 47, 0.24);
    background: linear-gradient(180deg, rgba(201, 41, 47, 0.1), rgba(255, 255, 255, 0.78));
}

.hero-metrics div:nth-child(2) {
    border-color: rgba(31, 99, 200, 0.24);
    background: linear-gradient(180deg, rgba(31, 99, 200, 0.1), rgba(255, 255, 255, 0.78));
}

.hero-metrics strong {
    color: var(--text);
}

.hero-metrics span {
    color: var(--muted);
}

.feature-card:nth-child(odd),
.program-card:nth-child(odd),
.info-card:nth-child(odd) {
    border-color: rgba(201, 41, 47, 0.14);
}

.feature-card:nth-child(even),
.program-card:nth-child(even),
.info-card:nth-child(even) {
    border-color: rgba(31, 99, 200, 0.14);
}

.feature-card:nth-child(odd):hover,
.program-card:nth-child(odd):hover,
.info-card:nth-child(odd):hover {
    border-color: rgba(201, 41, 47, 0.34);
    box-shadow: 0 30px 86px rgba(201, 41, 47, 0.12);
}

.feature-card:nth-child(even):hover,
.program-card:nth-child(even):hover,
.info-card:nth-child(even):hover {
    border-color: rgba(31, 99, 200, 0.34);
    box-shadow: 0 30px 86px rgba(31, 99, 200, 0.12);
}

.feature-card:nth-child(odd) .feature-icon {
    background: linear-gradient(135deg, #ffe6db, #c9292f);
}

.feature-card:nth-child(even) .feature-icon {
    background: linear-gradient(135deg, #e4efff, #1f63c8);
}

.profile-card img {
    width: 100%;
    height: 330px;
    margin-bottom: 20px;
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 239, 227, 0.9));
    border: 1px solid rgba(215, 182, 99, 0.16);
    box-shadow: 0 16px 36px rgba(52, 38, 15, 0.1);
}

/* Card spacing and premium section rhythm */
.corporate-winners {
    padding: clamp(58px, 7vw, 86px);
    border-radius: 34px;
}

.corporate-winners-copy {
    max-width: 900px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.corporate-winners-copy h2 {
    max-width: 820px;
    margin-bottom: 18px;
}

.corporate-winners-copy p {
    max-width: 760px;
    line-height: 1.75;
}

.corporate-winners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 32px);
    align-items: stretch;
    margin-top: 0;
}

.corporate-glow-card {
    display: flex;
    flex-direction: column;
    min-height: 265px;
    padding: clamp(26px, 3vw, 34px);
    border-radius: 24px;
}

.corporate-glow-card h3 {
    min-height: 3.1em;
    margin-bottom: 16px;
    line-height: 1.08;
}

.corporate-glow-card p {
    line-height: 1.72;
}

.corporate-icon {
    flex: 0 0 auto;
    margin-bottom: 20px;
}

.corporate-partners {
    margin-top: clamp(24px, 3vw, 34px);
    padding: clamp(22px, 3vw, 30px);
}

.partner-list {
    gap: 12px;
}

.partner-list span {
    padding: 10px 16px;
}

.cta-band {
    padding: clamp(58px, 7vw, 86px);
}

.cta-band h2 {
    max-width: 960px;
    margin-bottom: 18px;
}

.cta-band p {
    max-width: 880px;
    line-height: 1.75;
}

.cta-band .hero-actions {
    gap: 18px;
    margin-top: 32px;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .hero,
    .split,
    .contact-layout,
    .info-grid,
    .enquiry-modal {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .gallery,
    .mission-highlights,
    .donation-layout,
    .support-methods,
    .mission-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-list,
    .announcement-grid,
    .gallery-grid,
    .pricing-grid,
    .card-grid.three,
    .corporate-winners-grid,
    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .announcement-tile.landscape,
    .announcement-tile.portrait,
    .announcement-tile.square {
        grid-column: span 1;
    }

    .gallery-tile.landscape,
    .gallery-tile.portrait,
    .gallery-tile.square {
        grid-column: span 1;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    body { padding-bottom: 78px; }

    .site-header {
        margin: 12px 12px 0;
        padding: 12px 14px;
        border-radius: 24px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand span {
        font-size: 0.74rem;
    }

    .nav-toggle { display: block; }

    .main-nav {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-strong);
    }

    .main-nav.open { display: flex; }
    .main-nav a,
    .nav-cta { width: 100%; }

    .hero,
    .page-hero,
    .section,
    .site-footer {
        width: min(100% - 24px, 1200px);
    }

    .hero-copy,
    .hero-panel,
    .feature-card,
    .quote-card,
    .program-card,
    .price-card,
    .panel,
    .contact-form,
    .timing-card,
    .info-card,
    .enquiry-form,
    .enquiry-modal {
        padding: 22px;
    }

    .modal-shell {
        align-items: start;
        padding: 10px 10px 96px;
    }

    .enquiry-modal {
        width: 100%;
        max-height: calc(100dvh - 20px);
        gap: 18px;
        padding: 18px;
        border-radius: 24px;
    }

    .modal-copy {
        padding: 30px 0 0;
    }

    .modal-copy p {
        margin-bottom: 12px;
    }

    .contact-points {
        gap: 10px;
        margin-top: 18px;
    }

    .contact-points div {
        align-items: flex-start;
        gap: 10px;
    }

    .contact-points a,
    .contact-points span {
        line-height: 1.45;
    }

    .enquiry-form {
        padding: 18px;
        border-radius: 20px;
    }

    .enquiry-form label {
        gap: 6px;
        margin-bottom: 14px;
        font-size: 0.92rem;
    }

    .enquiry-form input,
    .enquiry-form textarea {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .submit-button {
        min-height: 52px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .hero-logo img {
        width: min(100%, 280px);
    }

    .mission-card,
    .mission-impact-copy {
        padding: 18px;
        border-radius: 20px;
    }

    .bank-details div {
        display: grid;
        gap: 6px;
        justify-content: stretch;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .hero-metrics,
    .card-grid,
    .card-grid.three,
    .corporate-winners-grid,
    .gallery,
    .gallery-grid,
    .mission-highlights,
    .donation-layout,
    .support-methods,
    .mission-actions,
    .program-list,
    .announcement-grid,
    .pricing-grid,
    .stat-grid,
    .info-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.9rem; }

    .corporate-winners {
        padding: 32px 20px;
        border-radius: 28px;
    }

    .corporate-winners::before {
        inset: 10px;
        border-radius: 22px;
    }

    .corporate-glow-card,
    .corporate-partners {
        padding: 20px;
    }

    .corporate-winners-copy {
        margin-bottom: 24px;
    }

    .corporate-winners-grid {
        gap: 16px;
    }

    .corporate-glow-card {
        min-height: auto;
    }

    .corporate-glow-card h3 {
        min-height: 0;
    }

    .cta-band {
        padding: 34px 22px;
    }

    .gallery-tile.landscape,
    .gallery-tile.portrait,
    .gallery-tile.square {
        grid-column: span 1;
        aspect-ratio: auto;
        min-height: 240px;
    }

    .announcement-tile.landscape,
    .announcement-tile.portrait,
    .announcement-tile.square {
        grid-column: span 1;
    }

    .mobile-action-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 60;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.88);
        box-shadow: var(--shadow-strong);
        backdrop-filter: blur(18px);
    }

    .mobile-action-bar a,
    .mobile-action-bar button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        border-radius: 999px;
        font-weight: 800;
    }

    .mobile-action-bar a {
        color: var(--text);
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(201, 164, 76, 0.18);
    }

    .mobile-action-bar button {
        color: #fff;
        background: linear-gradient(135deg, #171717, #2e2415 36%, var(--gold));
    }

    .map-section iframe {
        height: 320px;
    }
}
