:root {
    --navy: #10233d;
    --navy-deep: #0a1830;
    --gold: #b08a4a;
    --gold-soft: #d7c1a0;
    --sand: #efe5d4;
    --mist: #f6f3ee;
    --white: #ffffff;
    --text: #233041;
    --muted: #677489;
    --border: rgba(16, 35, 61, 0.12);
    --shadow: 0 20px 45px rgba(16, 35, 61, 0.12);
    --radius: 22px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(176, 138, 74, 0.18), transparent 26%),
        linear-gradient(180deg, #faf8f4 0%, #ffffff 28%, #f9f5ef 100%);
    line-height: 1.6;
}

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

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

p,
ul {
    margin-top: 0;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    clip: auto;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    margin: 0.75rem;
    background: var(--navy);
    color: var(--white);
    z-index: 1000;
}

.topbar {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.7rem 0;
}

.topbar-copy {
    margin: 0;
}

.topbar-link {
    color: var(--gold-soft);
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255, 251, 245, 0.88);
    border-bottom: 1px solid rgba(16, 35, 61, 0.06);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand img,
.footer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(16, 35, 61, 0.18);
}

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

.brand-text strong {
    font-family: 'Fraunces', serif;
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.15;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.9rem;
}

.site-nav {
    min-width: 0;
}

.site-nav ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.96rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    background: rgba(16, 35, 61, 0.08);
    color: var(--navy-deep);
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    border-radius: 14px;
    padding: 0.75rem;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    margin: 4px 0;
}

.hero,
.page-hero {
    padding: 4.5rem 0 2.5rem;
}

.page-hero-short {
    padding-bottom: 1rem;
}

.hero-grid,
.split-section,
.contact-layout,
.grid-two,
.gallery-grid,
.footer-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid,
.split-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-copy h2,
.section-heading h2,
.callout-panel h2,
.info-panel h2 {
    font-family: 'Fraunces', serif;
    color: var(--navy);
    line-height: 1.08;
    margin: 0 0 1rem;
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.section-copy h2,
.section-heading h2,
.callout-panel h2,
.info-panel h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-copy p,
.section-copy p,
.section-heading p,
.content-card p,
.feature-card p,
.photo-card p,
.footer-branding p {
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-actions,
.stack-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(16, 35, 61, 0.12);
}

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

.button-secondary {
    background: rgba(16, 35, 61, 0.04);
    border-color: rgba(16, 35, 61, 0.15);
    color: var(--navy);
}

.text-link {
    color: var(--navy);
    font-weight: 700;
}

.hero-media img,
.framed-image img,
.photo-card img {
    width: 100%;
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-media img {
    min-height: 460px;
}

.section {
    padding: 2.5rem 0;
}

.soft-section {
    background: rgba(255, 255, 255, 0.55);
}

.intro-band {
    padding-top: 0.5rem;
}

.intro-grid,
.grid-three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card,
.content-card,
.photo-card,
.callout-panel,
.info-panel,
.contact-card,
.form-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card,
.content-card,
.contact-card,
.form-card {
    padding: 1.7rem;
}

.content-card h2,
.content-card h3,
.feature-card h2,
.photo-card h2,
.site-footer h2,
.site-footer h3 {
    margin-top: 0;
    color: var(--navy);
}

.photo-card {
    overflow: hidden;
}

.photo-card div {
    padding: 1.4rem 1.5rem 1.5rem;
}

.callout-panel,
.info-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.grid-two,
.contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-heading.center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2rem;
}

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

.check-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.85rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--gold);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.2rem 1.35rem;
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
}

.faq-item p {
    margin: 1rem 0 0;
    color: var(--muted);
}

.contact-layout {
    align-items: start;
}

form {
    display: grid;
    gap: 0.9rem;
}

label {
    color: var(--navy);
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(16, 35, 61, 0.18);
    border-radius: 14px;
    font: inherit;
    color: var(--text);
    background: #fffdfa;
}

input:focus,
textarea:focus,
.menu-toggle:focus-visible,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(176, 138, 74, 0.35);
    outline-offset: 2px;
}

.form-alert {
    border-radius: 16px;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.form-alert-success {
    background: rgba(28, 115, 74, 0.12);
    color: #1c734a;
}

.form-alert-error {
    background: rgba(143, 38, 38, 0.09);
    color: #8f2626;
}

.form-alert ul {
    padding-left: 1.25rem;
    margin: 0;
}

.site-footer {
    margin-top: 3rem;
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: rgba(255, 255, 255, 0.82);
}

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

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand h2,
.site-footer h3 {
    color: var(--white);
}

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

.footer-list li {
    margin-bottom: 0.6rem;
}

.footer-list a,
.footer-meta {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1080px) {
    .topbar-inner,
    .callout-panel,
    .info-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-text strong {
        font-size: 0.98rem;
    }

    .site-nav a {
        font-size: 0.92rem;
        padding-inline: 0.62rem;
    }
}

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

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        display: none;
        background: rgba(255, 252, 247, 0.98);
        border: 1px solid var(--border);
        border-radius: 22px;
        box-shadow: var(--shadow);
        padding: 0.8rem;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        white-space: normal;
    }

    .site-nav a {
        width: 100%;
    }

    .hero-grid,
    .split-section,
    .grid-two,
    .grid-three,
    .intro-grid,
    .gallery-grid,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .page-hero {
        padding-top: 3rem;
    }

    .reverse-on-mobile .section-media {
        order: -1;
    }
}

@media (max-width: 640px) {
    .topbar {
        display: none;
    }

    .container {
        width: min(var(--container), calc(100% - 1.2rem));
    }

    .hero-media img {
        min-height: 320px;
    }

    .feature-card,
    .content-card,
    .contact-card,
    .form-card,
    .callout-panel,
    .info-panel {
        padding: 1.25rem;
    }

    .brand img,
    .footer-brand img {
        width: 50px;
        height: 50px;
    }
}
