/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0B1D3A;
    --navy-light:  #132D54;
    --navy-dark:   #071225;
    --gold:        #C8A45E;
    --gold-light:  #D4B76E;
    --gold-dark:   #B08D3F;
    --cream:       #FAF8F4;
    --cream-dark:  #F0EBE3;
    --white:       #FFFFFF;
    --text:        #1A1A1A;
    --text-light:  #4A4A4A;
    --text-muted:  #7A7A7A;
    --border:      #E0D9CF;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Inter', -apple-system, sans-serif;
    --shadow-sm:   0 1px 3px rgba(11,29,58,0.08);
    --shadow-md:   0 4px 20px rgba(11,29,58,0.10);
    --shadow-lg:   0 8px 40px rgba(11,29,58,0.14);
    --radius:      4px;
    --transition:  0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--navy); color: var(--gold);
    padding: 0.5rem 1rem; border-radius: var(--radius);
    z-index: 1000; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-family: var(--font-sans); font-weight: 600; }

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

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

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border: 2px solid var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn-full { width: 100%; }

/* ── Header ───────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.header.scrolled {
    background: rgba(250,248,244,0.97);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
}
.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-list a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius);
    transition: color var(--transition);
}
.nav-list a:hover { color: var(--navy); }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: var(--radius);
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,29,58,0.92) 0%, rgba(11,29,58,0.78) 50%, rgba(11,29,58,0.65) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-card {
    max-width: 700px;
    padding: 3rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero-card h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── Hero Stats ───────────────────────────────────── */
.hero-stats {
    position: relative;
    z-index: 1;
    margin-top: auto;
}
.hero-stats .container { padding-bottom: 2rem; }

.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 1.75rem 2rem;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-top: 3px solid var(--gold);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-number .stat-suffix { font-size: 1.5rem; color: var(--gold); }

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ── Sections ─────────────────────────────────────── */
.section { padding: 6rem 0; }

.section-header { margin-bottom: 4rem; }

/* ── About ────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}
.about-image-wrap img {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}
.about-accent {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    width: 200px; height: 200px;
    background: var(--gold);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.3;
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.0rem;
}

.about-values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text);
}
.value-icon {
    width: 20px; height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Services ─────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-icon {
    width: 56px; height: 56px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* ── Approach ─────────────────────────────────────── */
.approach { background: var(--navy); color: var(--white); }
.approach .section-eyebrow { color: var(--gold); }
.approach h2 { color: var(--white); margin-bottom: 1.25rem; }
.approach-intro {
    color: rgba(255,255,255,0.75);
    font-size: 1.0625rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-steps { display: flex; flex-direction: column; gap: 2rem; }

.approach-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.approach-step h4 { color: var(--white); margin-bottom: 0.375rem; }
.approach-step p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; line-height: 1.7; }

.approach-image-wrap img {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 650/800;
}

/* ── Community ────────────────────────────────────── */
.community {
    background: var(--cream-dark);
    text-align: center;
}
.community-content { max-width: 750px; margin: 0 auto; }
.community-content h2 { margin-bottom: 1.25rem; }
.community-content > p {
    color: var(--text-light);
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.community-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}
.community-stat { text-align: center; }
.community-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.community-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    text-align: center;
    padding: 5rem 0;
}
.cta-eyebrow { color: var(--gold); }
.cta h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta > .container > .cta-inner > p {
    color: rgba(255,255,255,0.75);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto; margin-right: auto;
    line-height: 1.8;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Contact ──────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-icon {
    width: 24px; height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.contact-item a, .contact-item span {
    color: var(--text);
    font-size: 1rem;
}
.contact-item a:hover { color: var(--gold-dark); }

.contact-form-wrap {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

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

.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,164,94,0.15);
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}
.form-success svg {
    width: 56px; height: 56px;
    color: var(--gold);
    margin: 0 auto 1rem;
}
.form-success h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-family: var(--font-serif);
}
.form-success p { color: var(--text-light); }

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo-mark { background: var(--gold); color: var(--navy-dark); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact address {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.footer-contact p { font-size: 0.9375rem; margin-bottom: 0.375rem; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

/* ── Mobile Nav ───────────────────────────────────── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav { 
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        transform: translateY(-120%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-md);
    }
    .nav.open { transform: translateY(0); }
    .nav-list { flex-direction: column; }
    .nav-list a { padding: 0.75rem 1rem; width: 100%; }
    .nav-list a:hover { background: var(--cream-dark); }
    .nav-list li:last-child { margin-top: 0.5rem; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid,
    .approach-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image-wrap { order: -1; }
    .approach-image-wrap { order: -1; }
    .about-accent { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-cards { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .stat-card { padding: 1.25rem 1rem; }
    .stat-number { font-size: 2rem; }
    .community-grid { gap: 2rem; }
}

@media (max-width: 640px) {
    .section { padding: 4rem 0; }
    .hero-card { padding: 2rem 1.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 300px; }
    .community-grid { flex-direction: column; gap: 1.5rem; }
}
