:root {

    --deep-gold: #C47F00;
    --dark-gold: #FFF9EE;
    --black: #1A0F00;
    --cream: #FFF9EE;
    --rust: #B84B00;
    --terracotta: #C25A2A;
    --sand: #FFF9EE;
    --deep-red: #8B1A1A;
    --teal: #1A6B6B;
    --warm-white: #FFF9EE;
    --orange: #DD5C35;
    --yellow: #F1BE49;
    --green: #317039;
    --white: #FFF9EE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--warm-white);
    color: var(--black);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #317039;
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--yellow);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
}



.nav-logo-text .tag {
    font-size: 0.65rem;
    color: var(--sand);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--sand);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--yellow);
}


.nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    border-radius: 15px !important;
    font-weight: 500 !important;
}

.nav-cta:hover {
    background: var(--deep-gold) !important;
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

.ham-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: 300;
}

.ham-btn {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* both images on top of each other */
.ham-btn div {
    position: absolute;
    top: 0;
    left: 0;
}

/* show hamburger by default */
.ham-btn div:nth-child(1) {
    opacity: 1;
}

/* hide close by default */
.ham-btn div:nth-child(2) {
    opacity: 0;
}

/* when open → hide hamburger */
.ham-btn.is-open div:nth-child(1) {
    opacity: 0;
}

/* when open → show close */
.ham-btn.is-open div:nth-child(2) {
    opacity: 1;
}


#mobileNav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--yellow);
    flex-direction: column;
    padding: 0;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

#mobileNav.is-open {
    display: flex;
}

#mobileNav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.1rem 1.5rem;
    color: #1a2744;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s, background 0.2s;
    text-align: center;
}

#mobileNav a:first-child {
    color: var(--yellow);
}

#mobileNav a:last-child {
    border-bottom: none;
}

#mobileNav a:hover,
#mobileNav a.active {
    background: rgba(241, 190, 73, 0.06);
    color: var(--yellow);
}



#mobileNav .nav-cta::after {
    display: none;
}

#mobileNav .nav-cta {
    margin: 0.8rem 1.5rem 1.2rem;
    background: var(--yellow) !important;
    color: var(--black) !important;
    border-radius: 6px;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1.5rem !important;
    font-weight: 700 !important;
    border-bottom: none !important;
}

/* ── HERO ── */
.contact-hero {
    padding-top: 72px;
    background: var(--yellow);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5A800' stroke-opacity='0.06' stroke-width='1'%3E%3Ccircle cx='40' cy='40' r='35'/%3E%3Cpath d='M40 5 L75 40 L40 75 L5 40 Z'/%3E%3Cline x1='40' y1='5' x2='40' y2='75'/%3E%3Cline x1='5' y1='40' x2='75' y2='40'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
}



.hero-inner {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    animation: fadeInUp 0.7s ease both;
}

.hero-eyebrow {

    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);

    color: #FFF9EE;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 350;
    margin-bottom: 1.2rem;
}

.section-label {
    font-weight: 350;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);

    color: #FFF9EE;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.contact-hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 100;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.contact-hero h1 em {
    font-family: "Bebas Neue", sans-serif;
    color: #317039;
    font-weight: 100;
    font-style: normal;
}

.contact-hero p {
    color: #5b5b5b;
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── MAIN CONTACT SECTION ── */
.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

/* ── LEFT INFO PANEL ── */






.info-panel h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 100;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.info-panel h2 em {
    font-style: normal;
    font-family: "Bebas Neue", sans-serif;
    color: #317039;
    font-weight: 100;
}

.info-panel>p {
    color: #5b5b5b;
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Info cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: white;
    border: 1px solid var(--sand);
    border-left: 4px solid var(--yellow);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.info-card:hover {
    border-left-color: var(--rust);
    box-shadow: 4px 6px 24px rgba(184, 75, 0, 0.1);
    transform: translateX(4px);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--cream);
    border-radius: 10px;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}



.info-card-label {
    font-size: 0.68rem;
    color: var(--yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 3px;
}

.info-card-value {
    font-size: 0.92rem;
    color: var(--black);
    font-weight: 600;
    line-height: 1.5;
}

.info-card-sub {
    font-size: 0.78rem;
    color: #8B6A4A;
    margin-top: 2px;
}

/* Social strip */
.social-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: #317039;
    border-radius: 12px;
    flex-wrap: wrap;
}

.social-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 700;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(245, 168, 0, 0.12);
    border: 1px solid rgba(245, 168, 0, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--yellow);
}

.social-icon:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

/* ── RIGHT: FORM ── */


.form-panel h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    font-weight: 100;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.form-panel>p {
    color: #5b5b5b;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.contact-form {
    background: white;
    border: 1px solid var(--sand);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.72rem;
    color: var(--rust);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--warm-white);
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--black);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245, 168, 0, 0.12);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #C4A882;
    font-size: 0.87rem;
}

.form-group select {
    cursor: pointer;
    color: var(--black);
}

.form-submit-row {
    margin-top: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-note {
    font-size: 0.75rem;
    color: #5b5b5b;
    line-height: 1.5;
    max-width: 220px;
}

.btn-submit {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 14px 36px;
    border-radius: 24px;
    font-size: 0.9rem;

    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245, 168, 0, 0.35);
    font-family: 'Nunito', sans-serif;
}

.btn-submit:hover {
    background: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 168, 0, 0.5);
}

/* ── MAP SECTION ── */
.map-section {
    background: var(--orange);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5A800' stroke-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3Cline x1='30' y1='5' x2='30' y2='55'/%3E%3Cline x1='5' y1='30' x2='55' y2='30'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.map-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-header-left .section-label {
    color: var(--yellow);
}

.map-header-left .section-label::before,
.map-header-left .section-label::after {
    background: var(--yellow);
}

.map-header-left h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 100;
    color: var(--cream);
}

.map-header-left h2 em {
    font-family: "Bebas Neue", sans-serif;
    color: #317039;
    font-weight: 100;
    font-style: normal;
}

.map-address-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    border: 1px solid rgba(245, 168, 0, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    color: var(--black);
    font-size: 0.82rem;
    line-height: 1.4;
    max-width: 340px;
    text-align: left;
}

.map-address-pill .pin {
    font-size: 1rem;
    flex-shrink: 0;
}

.map-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(245, 168, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    height: 460px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s;
}

.map-frame:hover iframe {
    filter: none;
}

.map-overlay-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #317039e1;
    border: 1px solid var(--yellow);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    pointer-events: none;
}

.map-overlay-badge img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--yellow);
}

.map-overlay-text .t1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.85rem;
    color: var(--cream);
    font-weight: 100;
}

.map-overlay-text .t2 {
    font-size: 0.68rem;
    color: var(--sand);
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* ── FAQ / QUICK CONTACT ── */
.quick-section {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quick-left h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 100;
    color: var(--black);
    margin-bottom: 0.6rem;
}

.quick-left h2 em {
    font-style: normal;
    font-family: "Bebas Neue", sans-serif;
    color: #317039;
    font-weight: 100;
}

.quick-left>p {
    color: #5b5b5b;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.quick-ways {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-way {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--sand);
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s;
}

.quick-way:hover {
    box-shadow: 0 6px 24px rgba(184, 75, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--yellow);
}

.qw-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.qw-icon.phone {
    background: #FFF3CD
}

.qw-icon.email {
    background: #FFF3CD;
}

.qw-icon.whatsapp {
    background: #FFF3CD;
}

.qw-body .qw-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 2px;
}

.qw-body .qw-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.qw-arrow {
    margin-left: auto;
    color: var(--sand);
    font-size: 1rem;
    transition: transform 0.3s;
}

.quick-way:hover .qw-arrow {
    transform: translateX(4px);
    color: var(--yellow);
}

/* Right: Volunteer CTA card */
.volunteer-card {
    background: var(--orange);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 168, 0, 0.15);
}

.volunteer-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 168, 0, 0.12), transparent 70%);
}

.volunteer-card-label {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 1rem;
}

.volunteer-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    color: var(--cream);
    font-weight: 100;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.volunteer-card h3 em {
    font-family: "Bebas Neue", sans-serif;
    color: #317039;
    font-weight: 100;
    font-style: normal;
}

.volunteer-card p {
    color: rgba(255, 226, 152, 0.933);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.volunteer-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.vol-feat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--sand);
}

.vol-feat::before {
    content: '✦';
    color: var(--yellow);
    font-size: 0.6rem;
    flex-shrink: 0;
}

.btn-volunteer {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 13px 30px;
    border-radius: 24px;

    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245, 168, 0, 0.3);
}

.btn-volunteer:hover {
    background: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 168, 0, 0.45);
}

/* ─── FOOTER WRAPPER ─────────────────────────────── */
.footer-up {
    background: var(--cream);
}

.footer-up img {
    display: block;
    width: 100%;
}

.site-footer {
    margin-top: -4px;
    background: var(--green);
    color: var(--white);

    padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px) 0;
    position: relative;
    overflow: hidden;
}



/* ─── MAIN GRID ──────────────────────────────────── */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 3px 2fr;
    gap: 0 clamp(32px, 5vw, 72px);
    position: relative;
    z-index: 1;
}

/* ─── DIVIDER ────────────────────────────────────── */
.footer-divider {
    background: var(--white-line);
    width: 1.5px;
    align-self: stretch;
    margin-top: 12px;
}

/* ─── LEFT COLUMN ────────────────────────────────── */
.footer-brand {
    padding-bottom: 40px;
}

.footer-headline {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 100;
    font-size: clamp(52px, 9vw, 100px);
    line-height: 0.92;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.footer-headline span {
    color: var(--gold);
    display: inline-block;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--white-dim);
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--yellow);
}

/* ─── RIGHT SECTION ──────────────────────────────── */
.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    padding-bottom: 40px;
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 2px solid var(--white);
    padding-bottom: 6px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    text-decoration: none;
    color: var(--white-dim);
    font-size: clamp(11px, 1.15vw, 13px);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

/* ─── SOCIAL ICONS ───────────────────────────────── */
.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.social-icon:hover {
    border-color: var(--yellow);
    background: var(--yellow);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* ─── BOTTOM BAR ─────────────────────────────────── */
.footer-bottom {
    border-top: 1px solid var(--white-line);
    margin-top: 8px;
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.footer-address {
    color: var(--white-dim);
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.65;
}

/* ─── RESPONSIVE ─────────────────────────────────── */

/* Tablet: ~768px */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 3px 1.6fr;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-divider {
        display: none;
    }

    .footer-brand {
        border-bottom: 1px solid var(--white-line);
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .footer-right {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 32px;
    }
}

/* Mobile: ~480px */
@media (max-width: 480px) {
    .footer-right {
        grid-template-columns: 1fr;
        gap: 32px;
    }


}

@media (max-width: 360px) {
    .footer-headline {
        font-size: 44px;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .quick-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }

    .map-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.2rem;
        height: 64px;
    }

    .nav-links {
        display: none;
    }

    .contact-hero {
        min-height: 240px;
    }

    .contact-main {
        padding: 3rem 1.2rem;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.8rem 1.4rem;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-note {
        max-width: 100%;
    }

    .btn-submit {
        width: 100%;
    }

    .map-section {
        padding: 2.5rem 1.2rem;
    }

    .map-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-address-pill {
        max-width: 100%;
        border-radius: 12px;
    }

    .map-frame {
        height: 320px;
    }

    .quick-section {
        padding: 3rem 1.2rem;
        gap: 2rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.2rem;
    }

    .footer-links {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.9rem;
    }

    .map-frame {
        height: 260px;
    }

    .map-overlay-badge {
        display: none;
    }

    .volunteer-card {
        padding: 1.8rem;
    }
}

/* scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 4px;
}

/* ====== HAMBURGER + MOBILE NAV ====== */

.ham-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: 300;
}

.ham-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: #F5A800;
    border-radius: 2px;
    transition: transform .28s ease, opacity .28s ease;
    transform-origin: 0 50%;
}

.ham-btn.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -1px);
}

.ham-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.ham-btn.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 1px);
}

#mobileNav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--yellow);
    flex-direction: column;
    padding: 0;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

#mobileNav.is-open {
    display: flex;
}

#mobileNav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.1rem 1.5rem;
    color: #1a2744;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s, background 0.2s;
    text-align: center;
}

#mobileNav a:last-child {
    border-bottom: none;
}

#mobileNav a:hover,
#mobileNav a.active {
    color: #F5A800;
}

#mobileNav .nav-cta {
    margin: 0.8rem 6rem 1.2rem;
    background: var(--yellow) !important;
    color: var(--black) !important;
    border-radius: 22px !important;
    text-align: center;
    justify-content: center;
    padding: 15px 4rem;
    font-weight: 700 !important;
    border-bottom: none !important;
}

@media (max-width: 768px) {
    nav {
        height: 64px !important;
        padding: 0 1.2rem !important;
    }

    .ham-btn {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }
}

/* ====== END HAMBURGER ====== */

/* ── RESPONSIVE contact ── */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .quick-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .map-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 200px;
        padding-top: 80px;
    }

    .hero-inner {
        padding: 2rem 1.2rem;
    }

    .contact-main {
        padding: 2.5rem 1.2rem;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.6rem 1.2rem;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .map-section {
        padding: 2rem 1.2rem;
    }

    .map-header {
        flex-direction: column;
        gap: .8rem;
        align-items: flex-start;
    }

    .info-panel h2 {
        font-size: 1.7rem;
    }

    .quick-section {
        padding: 2.5rem 1.2rem;
    }

    .volunteer-card {
        padding: 1.8rem 1.2rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.2rem;
        gap: 1.2rem;
    }

    .footer-links {
        gap: .7rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .map-frame {
        height: 240px;
    }

    .info-panel h2 {
        font-size: 1.5rem;
    }

    .form-panel h3 {
        font-size: 1.3rem;
    }

    .info-card-value {
        font-size: .9rem;
    }
}

@media (max-width: 360px) {
    .contact-hero h1 {
        font-size: 1.4rem;
    }
}