/* =========================================================
   VISION & VOICE FOUNDATION
   Main Website Styles
========================================================= */

:root {
    --green-dark: #12372a;
    --green: #1d5a43;
    --green-light: #e8f1eb;

    --gold: #d4a84f;
    --gold-light: #f5ead0;

    --cream: #f8f6f0;
    --white: #ffffff;

    --text-dark: #18221e;
    --text: #52605a;
    --text-light: #7b8580;

    --border: #e3e7e3;

    --shadow-sm: 0 8px 25px rgba(18, 55, 42, 0.06);
    --shadow-md: 0 18px 45px rgba(18, 55, 42, 0.10);
    --shadow-lg: 0 30px 70px rgba(18, 55, 42, 0.16);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --container: 1180px;

    --transition: 0.3s ease;
}


/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

::selection {
    background: var(--green);
    color: var(--white);
}


/* =========================
   CONTAINER
========================= */

.section-container {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(248, 246, 240, 0.94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(18, 55, 42, 0.07);

    transition: 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(18, 55, 42, 0.08);
}

.nav-container {
    width: min(100% - 48px, 1280px);
    min-height: 82px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================
   LOGO
========================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.logo-mark {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green);
    color: var(--white);

    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;

    overflow: hidden;
    flex-shrink: 0;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 15px;
    font-weight: 700;
}

.logo-text small {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================
   NAV MENU
========================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 31px;
}

.nav-menu a {
    position: relative;

    color: var(--text);

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.nav-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--green);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--green);
}


/* =========================
   DONATE NAV BUTTON
========================= */

.nav-donate {
    padding: 12px 22px;

    border-radius: 100px;

    background: var(--green);
    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.nav-donate:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}


/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    color: var(--green);

    font-size: 25px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 140px 7% 90px;

    background:
        linear-gradient(
            90deg,
            rgba(8, 32, 24, 0.88),
            rgba(8, 32, 24, 0.67),
            rgba(8, 32, 24, 0.25)
        ),
        url("assets/images/hero.png")
        center / cover no-repeat;

    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(212, 168, 79, 0.12),
            transparent 35%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(700px, 100%);
}

.eyebrow {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;

    font-family: "Playfair Display", serif;

    font-size: clamp(52px, 7vw, 90px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: #e7c978;
}

.hero-description {
    max-width: 600px;

    margin: 28px 0 35px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 54px;

    padding: 0 27px;

    border-radius: 100px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.btn span {
    font-size: 18px;

    transition: var(--transition);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
}

.btn-primary:hover {
    background: #e3bc61;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(212, 168, 79, 0.22);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);

    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);

    border-color: var(--white);
}

.btn-dark {
    background: var(--green);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--green-dark);

    transform: translateY(-3px);
}


/* =========================
   HERO SCROLL
========================= */

.hero-scroll {
    position: absolute;

    bottom: 38px;
    right: 7%;

    display: flex;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 55px;

    background: rgba(255, 255, 255, 0.5);
}


/* =========================
   SECTION HEADINGS
========================= */

.section-label {
    margin-bottom: 14px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading h2,
.about-content h2,
.impact-intro h2,
.volunteer-box h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.12;

    letter-spacing: -1.8px;
}

.section-heading h2 span,
.about-content h2 span,
.impact-intro h2 span,
.volunteer-box h2 span {
    color: var(--green);
}

.section-heading > p:last-child {
    max-width: 600px;

    margin-top: 18px;

    color: var(--text);

    font-size: 16px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    background: var(--white);

    /* Slightly tighter than the other sections */
    padding: 95px 0;
}

.about-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}


/* MAIN FIX:
   The image now gets a real visual height
   and the actual img fills the container.
*/

.about-image {
    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--cream);

    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* Keep this for any older placeholder version */

.image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            to top,
            rgba(18, 55, 42, 0.6),
            rgba(18, 55, 42, 0.02)
        ),
        url("assets/images/about.png")
        center / cover no-repeat;

    color: rgba(255, 255, 255, 0.85);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    box-shadow: var(--shadow-lg);
}

.about-content {
    max-width: 570px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content > p:not(.section-label) {
    max-width: 550px;

    margin-bottom: 18px;

    color: var(--text);

    font-size: 16px;
}

.text-link {
    display: inline-block;

    margin-top: 13px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--gold);

    transform: translateX(4px);
}


/* =========================
   CAUSES
========================= */

.causes-section {
    background: var(--cream);
}

.causes-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.cause-card {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.cause-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.cause-image {
    height: 270px;

    display: flex;
    align-items: flex-end;

    padding: 24px;

    color: var(--white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    background-position: center;
    background-size: cover;

    overflow: hidden;
}

.cause-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.blind-image {
    background:
        linear-gradient(
            to top,
            rgba(18, 55, 42, 0.65),
            transparent
        ),
        url("assets/images/blind-children.png")
        center / cover no-repeat;
}

.cancer-image {
    background:
        linear-gradient(
            to top,
            rgba(18, 55, 42, 0.65),
            transparent
        ),
        url("assets/images/cancer-support.png")
        center / cover no-repeat;
}

.elderly-image {
    background:
        linear-gradient(
            to top,
            rgba(18, 55, 42, 0.65),
            transparent
        ),
        url("assets/images/elderly-care.png")
        center / cover no-repeat;
}

.cause-content {
    padding: 30px;
}

.cause-number {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.cause-content h3 {
    margin-bottom: 12px;

    font-family: "Playfair Display", serif;

    font-size: 28px;

    line-height: 1.2;
}

.cause-content p {
    margin-bottom: 22px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.75;
}

.cause-link {
    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.cause-link:hover {
    color: var(--gold);
}


/* =========================
   DONATION INTRO
========================= */

.donation-impact {
    background: var(--gold-light);
}

.impact-intro {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    align-items: center;

    gap: 90px;
}

.impact-intro h2 {
    margin-bottom: 0;
}

.impact-intro > p {
    color: var(--text);

    font-size: 17px;

    line-height: 1.9;
}


/* =========================
   STORIES
========================= */

.stories-section {
    background: var(--white);
}

.stories-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.story-card {
    overflow: hidden;

    border-radius: var(--radius-md);

    background: var(--cream);

    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-md);
}

.story-image {
    height: 250px;

    display: flex;
    align-items: flex-end;

    padding: 22px;

    background:
        linear-gradient(
            to top,
            rgba(18, 55, 42, 0.55),
            transparent
        ),
        url("assets/images/story.png")
        center / cover no-repeat;

    color: rgba(255, 255, 255, 0.85);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.story-content {
    padding: 26px;
}

.story-content > span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-content h3 {
    margin: 10px 0 20px;

    font-family: "Playfair Display", serif;

    font-size: 24px;

    line-height: 1.3;
}

.story-content a {
    color: var(--green);

    font-size: 12px;
    font-weight: 800;
}


/* =========================
   IMPACT
========================= */

.impact-section {
    background: var(--green-dark);

    color: var(--white);
}

.light-heading h2 {
    color: var(--white);
}

.light-heading h2 span {
    color: #e7c978;
}

.impact-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.14);

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-item {
    min-height: 190px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 25px;

    border-right: 1px solid rgba(255, 255, 255, 0.14);

    transition: var(--transition);
}

.impact-item:last-child {
    border-right: 0;
}

.impact-item strong {
    margin-bottom: 7px;

    color: #e7c978;

    font-family: "Playfair Display", serif;

    font-size: 54px;

    line-height: 1;
}

.impact-item span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.impact-note {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 11px;
}


/* =========================
   VOLUNTEER
========================= */

.volunteer-section {
    background: var(--cream);
}

.volunteer-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    padding: 65px;

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-md);
}

.volunteer-box h2 {
    max-width: 600px;

    margin-bottom: 15px;
}

.volunteer-box > div > p:last-child {
    max-width: 580px;

    color: var(--text);
}


/* =========================
   DONATE SECTION
========================= */

.donate-section {
    position: relative;

    min-height: 650px;

    display: grid;

    place-items: center;

    padding: 100px 24px;

    background:
        linear-gradient(
            rgba(8, 35, 25, 0.82),
            rgba(8, 35, 25, 0.90)
        ),
        url("assets/images/donate.png")
        center / cover no-repeat;

    color: var(--white);

    text-align: center;
}

.donate-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 168, 79, 0.13),
            transparent 45%
        );
}

.donate-content {
    position: relative;
    z-index: 2;

    max-width: 750px;
}

.donate-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 72px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.donate-content h2 span {
    display: block;

    color: #e7c978;
}

.donate-content > p:not(.eyebrow) {
    max-width: 570px;

    margin: 24px auto 32px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
}

.btn-donate {
    min-width: 190px;

    background: var(--gold);

    color: var(--green-dark);

    font-size: 14px;
}

.btn-donate:hover {
    background: #e3bc61;

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(212, 168, 79, 0.25);
}

.phone-support {
    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-top: 30px;

    font-size: 12px;
}

.phone-support span {
    color: rgba(255, 255, 255, 0.55);
}

.phone-support a {
    color: #e7c978;

    font-weight: 700;
}

.phone-support a:hover {
    text-decoration: underline;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #0c261d;

    color: var(--white);

    padding: 75px 0 0;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;
}

.footer-brand > p {
    max-width: 300px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}

.footer-logo .logo-text strong {
    color: var(--white);
}

.footer-logo .logo-text small {
    color: rgba(255, 255, 255, 0.4);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 10px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);

    transform: translateX(3px);
}

.footer-bottom {
    width: min(100% - 48px, var(--container));

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
}

.footer-bottom > div {
    display: flex;

    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--white);
}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   FOCUS
========================= */

:focus-visible {
    outline: 3px solid var(--gold);

    outline-offset: 4px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .about-grid {
        gap: 45px;
        grid-template-columns: 1fr 1fr;
    }

    .about-image {
        height: 450px;
    }

    .causes-grid,
    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cause-card:last-child {
        grid-column: 1 / -1;

        max-width: calc(50% - 12px);

        justify-self: center;
    }

    .impact-intro {
        gap: 45px;
    }

    .volunteer-box {
        padding: 45px;
    }

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


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .section {
        padding: 80px 0;
    }

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


    /* NAV */

    .nav-container {
        width: min(100% - 32px, 1280px);

        min-height: 72px;
    }

    .nav-menu,
    .nav-donate {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu.mobile-active {
        position: absolute;

        top: 72px;

        left: 16px;
        right: 16px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px;

        border: 1px solid var(--border);

        border-radius: 18px;

        background: rgba(255, 255, 255, 0.98);

        box-shadow: var(--shadow-lg);
    }

    .nav-menu.mobile-active a {
        padding: 14px 16px;

        border-radius: 10px;
    }

    .nav-menu.mobile-active a:hover {
        background: var(--green-light);
    }

    .nav-menu.mobile-active a::after {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 760px;

        padding: 120px 25px 90px;

        background-position: 60% center;
    }

    .hero h1 {
        font-size: clamp(45px, 13vw, 64px);

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-scroll {
        display: none;
    }

    .btn {
        width: 100%;
    }


    /* ABOUT */

    .about-section {
        padding: 75px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        width: 100%;
        height: 400px;

        min-height: 0;

        border-radius: 22px;
    }

    .about-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .about-content {
        max-width: none;
    }


    /* CAUSES + STORIES */

    .causes-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .cause-card:last-child {
        grid-column: auto;

        max-width: none;
    }


    /* IMPACT */

    .impact-intro {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-item {
        min-height: 145px;
    }

    .impact-item:nth-child(2) {
        border-right: 0;
    }

    .impact-item:nth-child(1),
    .impact-item:nth-child(2) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.14);
    }


    /* VOLUNTEER */

    .volunteer-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }


    /* DONATE */

    .donate-section {
        min-height: 600px;

        padding: 80px 25px;
    }


    /* FOOTER */

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

        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-bottom > div {
        flex-wrap: wrap;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 430px) {

    .logo-text strong {
        font-size: 13px;
    }

    .logo-mark {
        width: 39px;
        height: 39px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-buttons {
        width: 100%;
    }

    .section-heading h2,
    .about-content h2,
    .impact-intro h2,
    .volunteer-box h2 {
        font-size: 39px;
    }

    .impact-item strong {
        font-size: 43px;
    }

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

    .about-image {
        height: 360px;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: var(--brand-cream);
    padding: 110px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}


/* LEFT */

.contact-intro {
    max-width: 520px;
}

.contact-intro .section-label {
    margin-bottom: 22px;
}

.contact-intro h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    color: var(--brand-navy);
}

.contact-intro h2 span {
    color: var(--brand-gold);
}

.contact-description {
    margin-top: 28px;
    max-width: 500px;
    color: #66716f;
    font-size: 17px;
    line-height: 1.8;
}


/* CONTACT DETAILS */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 42px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    text-decoration: none;
    color: inherit;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-navy);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-detail small {
    display: block;
    margin-bottom: 5px;
    color: #7a8582;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-detail strong {
    display: block;
    color: var(--brand-navy);
    font-size: 17px;
}


/* RIGHT CARD */

.contact-card {
    background: #ffffff;
    padding: 48px;
    border: 1px solid rgba(23, 63, 95, 0.08);
    box-shadow: 0 20px 60px rgba(23, 63, 95, 0.08);
}

.contact-card-label {
    margin: 0 0 30px;
    color: var(--brand-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
}


/* FORM */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    color: var(--brand-navy);
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #d9dfdc;
    background: #fbfaf6;
    color: var(--brand-navy);
    padding: 15px 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease,
                box-shadow 0.25s ease;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 135px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa39f;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(58, 166, 160, 0.10);
}

.contact-submit {
    width: fit-content;
    margin-top: 5px;
    border: none;
    cursor: pointer;
}


/* =========================================================
   CONTACT MOBILE
========================================================= */

@media (max-width: 900px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-intro {
        max-width: 100%;
    }

    .contact-card {
        padding: 35px 28px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-intro h2 {
        font-size: 48px;
    }

    .contact-description {
        font-size: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
    }

}