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

:root {
    --navy: #17375E;
    --gold: #C8962E;
    --accent: #D81878;
    --teal: #0C6B5C;
    --cream: #F7F8FA;
    --light-gray: #EEF1F5;
    --text-dark: #1B1F24;
    --text-muted: #5E646C;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text-dark);
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    min-height: 100vh;
}

.skip-link {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    left: 1rem;
    padding: 0.65rem 1rem;
    position: fixed;
    top: -5rem;
    z-index: 2000;
}

.skip-link:focus {
    top: 1rem;
}

.site-nav {
    background: #fff;
    border-bottom: 1px solid #d9dee5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1400px;
    padding: 1.5rem 3rem;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
}

.brand-name {
    color: var(--navy);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-tagline {
    color: var(--teal);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    justify-content: flex-end;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--accent);
}

a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.hero {
    align-items: center;
    background: #10243f;
    display: flex;
    min-height: 22rem;
    overflow: hidden;
    padding: 6rem 3rem;
    position: relative;
}

.hero-photo {
    inset: 0;
    position: absolute;
}

.hero-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
    width: 100%;
}

.hero::after {
    background: linear-gradient(90deg, rgba(16, 36, 63, 0.88) 0%, rgba(16, 36, 63, 0.52) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.hero-content {
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    color: rgba(250, 249, 246, 0.72);
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    color: var(--accent);
}

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

.hero h1 {
    color: var(--cream);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(250, 249, 246, 0.86);
    font-size: 1.2rem;
    max-width: 760px;
}

.listings {
    margin: 0 auto;
    max-width: 1400px;
    padding: 6rem 3rem 7rem;
}

.section-intro {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-intro h2 {
    color: var(--navy);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.empty-state {
    background: #FFFFFF;
    border: 1px solid rgba(23, 55, 94, 0.1);
    border-radius: 12px;
    box-shadow: 0 16px 45px rgba(23, 55, 94, 0.06);
    padding: clamp(2.5rem, 8vw, 5rem);
    text-align: center;
}

.empty-state-mark {
    align-items: center;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-radius: 50%;
    color: var(--cream);
    display: inline-flex;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    height: 4.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 4.5rem;
}

.empty-state h2 {
    color: var(--navy);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--text-muted);
}

.site-footer {
    background: var(--navy);
    color: rgba(250, 249, 246, 0.75);
    padding: 3rem;
    text-align: center;
}

.site-footer a {
    color: var(--gold);
}

.site-footer a:hover {
    color: var(--accent);
}

@media (max-width: 760px) {
    .nav-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
    }

    .nav-links {
        gap: 0.75rem 1.25rem;
        justify-content: flex-start;
    }

    .hero,
    .listings {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero {
        padding-bottom: 4.5rem;
        padding-top: 4.5rem;
    }

    .listings {
        padding-bottom: 5rem;
        padding-top: 4.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
