@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:wght@700;900&display=swap');

:root {
    --navy: #13294b;
    --navy-dark: #0b1b33;
    --green: #526342;
    --green-dark: #38462e;
    --gold: #c4a24f;
    --gold-light: #ddc77e;
    --cream: #f6f4ee;
    --white: #ffffff;
    --charcoal: #25282b;
    --gray: #666b70;
    --light-gray: #e6e8ea;
    --danger: #9f2f2f;

    --max-width: 1180px;
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: "Merriweather", Georgia, serif;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.3rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.section-small {
    padding: 60px 0;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

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

.section-heading p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-top: 15px;
}

.text-center {
    text-align: center;
}

.text-center .section-heading {
    margin-left: auto;
    margin-right: auto;
}

/* -----------------------------
   TOP ASSISTANCE BAR
----------------------------- */

.assistance-bar {
    background: var(--green-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.86rem;
}

.assistance-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.assistance-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

/* -----------------------------
   HEADER / NAV
----------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--light-gray);
    backdrop-filter: blur(10px);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--gold);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-weight: 900;
    border: 2px solid var(--gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    font-family: "Merriweather", Georgia, serif;
    font-weight: 900;
    color: var(--navy-dark);
    font-size: 1.06rem;
}

.brand-subtitle {
    color: var(--gray);
    font-size: 0.65rem;
    margin-top: 5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

.nav-help {
    padding: 11px 17px;
    color: var(--white) !important;
    background: var(--navy);
    border-radius: 4px;
}

.nav-help:hover {
    background: var(--green);
}

.menu-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
    display: none;
    width: 42px;
    height: 42px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    display: block;
    margin: 5px auto;
}

/* -----------------------------
   BUTTONS
----------------------------- */

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

/* -----------------------------
   HERO
----------------------------- */

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            rgba(7, 19, 37, 0.98) 0%,
            rgba(19, 41, 75, 0.91) 47%,
            rgba(19, 41, 75, 0.66) 100%
        ),
        radial-gradient(circle at 78% 42%, #6f795f 0%, #13294b 52%, #091528 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -250px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(196, 162, 79, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 100px rgba(196, 162, 79, 0.04),
        0 0 0 200px rgba(196, 162, 79, 0.025);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 80px 0;
}

.hero h1 {
    margin-bottom: 22px;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 690px;
    color: rgba(255, 255, 255, 0.84);
}

/* -----------------------------
   PAGE HERO
----------------------------- */

.page-hero {
    background:
        linear-gradient(110deg, rgba(9, 23, 43, 0.97), rgba(19, 41, 75, 0.84)),
        linear-gradient(135deg, #13294b, #526342);
    color: var(--white);
    padding: 95px 0;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    margin-top: 18px;
}

/* -----------------------------
   ASSISTANCE FEATURE
----------------------------- */

.help-panel {
    margin-top: -65px;
    position: relative;
    z-index: 5;
}

.help-panel-inner {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 36px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: center;
    border-top: 5px solid var(--gold);
}

.help-panel h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 10px;
}

.help-phone {
    background: var(--cream);
    padding: 24px;
    border-left: 4px solid var(--green);
}

.help-phone small {
    display: block;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.help-phone a {
    color: var(--navy);
    font-family: "Merriweather", Georgia, serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    text-decoration: none;
}

/* -----------------------------
   CARDS
----------------------------- */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    border: 1px solid var(--light-gray);
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

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

.card-number,
.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--green-dark);
    border-radius: 50%;
    font-family: "Merriweather", Georgia, serif;
    font-weight: 900;
    margin-bottom: 20px;
}

.card h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* -----------------------------
   TWO COLUMN
----------------------------- */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.feature-box {
    background: var(--cream);
    padding: 42px;
    border-radius: var(--radius);
}

.feature-box h3 {
    color: var(--navy);
    margin-bottom: 16px;
}

/* -----------------------------
   MEETING BLOCK
----------------------------- */

.meeting-section {
    background: var(--navy);
    color: var(--white);
}

.meeting-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.meeting-section h2 {
    margin-bottom: 15px;
}

.meeting-section p {
    color: rgba(255, 255, 255, 0.78);
}

.meeting-details {
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 30px;
    border-radius: var(--radius);
}

.detail-row {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-row:last-child {
    border-bottom: 0;
}

.detail-row strong {
    display: block;
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

/* -----------------------------
   CONTENT / INFO
----------------------------- */

.content-narrow {
    max-width: 820px;
    margin: 0 auto;
}

.content-narrow h2 {
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 15px;
}

.content-narrow h2:first-child {
    margin-top: 0;
}

.content-narrow p,
.content-narrow li {
    color: #50555a;
}

.content-narrow ul {
    padding-left: 22px;
    margin: 15px 0 25px;
}

.content-narrow li {
    margin-bottom: 8px;
}

/* -----------------------------
   CONTACT
----------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-card {
    background: var(--cream);
    padding: 35px;
    margin-bottom: 20px;
    border-radius: var(--radius);
}

.contact-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-card a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 38px;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #ccd0d3;
    border-radius: 4px;
    font: inherit;
}

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

.form-note {
    color: var(--gray);
    font-size: 0.82rem;
    margin-top: 14px;
}

/* -----------------------------
   RESOURCE LIST
----------------------------- */

.resource-list {
    display: grid;
    gap: 18px;
}

.resource-item {
    border: 1px solid var(--light-gray);
    padding: 28px;
    border-left: 5px solid var(--green);
    border-radius: 4px;
}

.resource-item h3 {
    color: var(--navy);
    margin-bottom: 8px;
}

.resource-item p {
    color: var(--gray);
    margin-bottom: 8px;
}

.resource-item a {
    color: var(--green-dark);
    font-weight: 700;
}

/* -----------------------------
   CALLOUT
----------------------------- */

.callout {
    background: var(--cream);
    border-left: 5px solid var(--gold);
    padding: 30px;
    margin: 35px 0;
}

.callout h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

/* -----------------------------
   FOOTER
----------------------------- */

.site-footer {
    background: #09172a;
    color: var(--white);
    padding: 65px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.62);
    max-width: 480px;
    margin-top: 18px;
}

.footer-title {
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    margin-top: 45px;
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* -----------------------------
   RESPONSIVE
----------------------------- */

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        background: var(--white);
        padding: 25px 4%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--light-gray);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-links li:last-child {
        border: 0;
    }

    .nav-links a {
        display: block;
        padding: 13px 0;
    }

    .nav-help {
        margin-top: 12px;
        text-align: center;
    }

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

    .two-column,
    .meeting-card,
    .contact-grid,
    .help-panel-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .section {
        padding: 65px 0;
    }

    .hero {
        min-height: 610px;
    }

    .assistance-bar .container {
        justify-content: center;
        text-align: center;
    }

    .assistance-bar span:first-child {
        display: none;
    }

    .brand-subtitle {
        display: none;
    }

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

    .help-panel-inner,
    .feature-box,
    .contact-form,
    .contact-card {
        padding: 26px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}