:root {
    --navy: #0c344d;
    --olive: #7e902d;
    --navy-dark: #082638;
    --navy-soft: #eaf1f5;
    --olive-soft: #f2f6e4;
    --text: #183142;
    --muted: #5b6f7c;
    --white: #ffffff;
    --border: #d8e1e7;
    --shadow: 0 18px 40px rgba(12, 52, 77, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shell: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f6fafc 0%, #ffffff 40%, #f8fbfc 100%);
}

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

a {
    color: inherit;
}

.shell {
    width: min(var(--shell), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12, 52, 77, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 88px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(12, 52, 77, 0.08);
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
}

.brand-tag {
    font-size: 0.88rem;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
    background: var(--navy-soft);
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 12px 18px;
    border-radius: 999px;
}

.nav-cta:hover {
    background: var(--navy-dark);
    color: var(--white) !important;
}

.hero {
    padding: 46px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.hero-side {
    display: grid;
    gap: 22px;
}

.hero-card {
    position: relative;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--olive);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.03;
    color: var(--navy);
    max-width: 12ch;
}

.hero-text {
    margin: 20px 0 0;
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 62ch;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(12, 52, 77, 0.16);
}

.button-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--navy);
    font-weight: 700;
}

.hero-contact a {
    text-decoration: none;
}

.hero-contact span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--olive);
}


.hero-card::before {
    content: "";
    position: absolute;
    inset: 20px -12px -20px 32px;
    background: linear-gradient(135deg, rgba(126, 144, 45, 0.2), rgba(12, 52, 77, 0.14));
    border-radius: var(--radius-lg);
    z-index: 0;
}

.hero-card-inner {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid rgba(12, 52, 77, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.hero-logo {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 22px;
}

.hero-card h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 1.55rem;
}

.hero-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.hero-memory {
    background: linear-gradient(135deg, rgba(12,52,77,0.08), rgba(126,144,45,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-memory img {
    width: 100%;
    height: 320px;
    object-fit: contain;
}

.hero-memory figcaption {
    padding: 14px 16px;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}
.section {
    padding: 38px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(12, 52, 77, 0.04), rgba(126, 144, 45, 0.04));
    border-top: 1px solid rgba(12, 52, 77, 0.05);
    border-bottom: 1px solid rgba(12, 52, 77, 0.05);
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    color: var(--navy);
}

.summary-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 22px;
}

.summary-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow);
}

.summary-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.82;
    font-size: 1.2rem;
}

.summary-card p:last-child {
    margin-bottom: 0;
}

.summary-card h3 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 1.18rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.6;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--olive);
    box-shadow: 0 0 0 6px rgba(126, 144, 45, 0.12);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.area-pill {
    background: var(--white);
    color: var(--navy);
    border: 1px solid rgba(12, 52, 77, 0.1);
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(12, 52, 77, 0.05);
}

.about-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-photo-wrap {
    min-height: 100%;
    background: linear-gradient(160deg, rgba(12, 52, 77, 0.08), rgba(126, 144, 45, 0.12));
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(12, 52, 77, 0.16);
    background: #eef3f6;
}

.about-copy {
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-copy h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    color: var(--navy);
}

.about-placeholder {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.02rem;
}

.cta-band {
    padding-top: 18px;
    padding-bottom: 60px;
}

.cta-band-inner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    border-radius: 30px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 24px 48px rgba(12, 52, 77, 0.18);
}

.cta-band-inner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
}

.cta-band-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 58ch;
}

.cta-band .eyebrow {
    color: #d8e6a0;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-band .button-primary {
    background: var(--olive);
    color: var(--white);
    box-shadow: none;
}

.cta-band .button-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer {
    border-top: 1px solid rgba(12, 52, 77, 0.08);
    background: #fbfdfe;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
}

.section {
    scroll-margin-top: 110px;
}

@media (max-width: 980px) {
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }

    .nav {
        gap: 16px;
    }

    .hero-grid,
    .summary-grid,
    .about-panel,
    .cta-band-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .cta-band-inner {
        justify-content: start;
    }

    .cta-band-actions {
        margin-top: 6px;
    }

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

    .footer-links {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(var(--shell), calc(100% - 24px));
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-card-inner,
    .summary-card,
    .about-copy,
    .cta-band-inner {
        padding: 22px;
    }

    .about-photo-wrap {
        padding: 20px;
    }

    .nav {
        width: 100%;
    }

    .nav a {
        font-size: 0.95rem;
		display: none;
    }

	.nav-cta {
		display: block !important;
		margin: 0px 5rem 0px 5rem;
		width: 100rem;
		text-align: center;
	}
	
    .hero-actions,
    .cta-band-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-contact span {
        display: none;
    }
	
.hero-memory img {
    height: 220px;
}
	
	.hero-contact {
		display: none;
	}
	
}