/* Base layout & typography */

:root {
    --text-main: #222222;
    --text-muted: #666666;
    --accent-soft: #e5e5e5;
    --bg-page: #f7f7f7;
    --card-bg: #ffffff;
    --accent-border: #d0d0d0;
    --accent-highlight: #f2f2f2;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    color: var(--text-main);
    background: var(--bg-page);
    line-height: 1.6;
}

/* Header */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--accent-border);
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 72px;
    height: auto;
    display: block;
}

.brand-text h1 {
    margin: 0;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.tagline {
    margin: 0.15rem 0 0;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Navigation */

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-main);
    padding-bottom: 0.15rem;
    border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a:focus {
    border-color: var(--text-main);
}

/* Sections */

.section {
    padding: 2.5rem 1.5rem;
}

.hero {
    background: var(--accent-soft);
}

.card {
    max-width: 960px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 2rem 2.25rem;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--accent-border);
}

.hero-subtitle {
    margin: 0;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.1rem;
    text-align: center;
}

.hero-text {
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
    color: var(--text-muted);
}

/* Headings & text */

h2 {
    margin-top: 0;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 600;
    font-size: 1.4rem;
}

h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 0;
}

p {
    margin: 0.4rem 0 0.75rem;
}

/* Columns */

.columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}

ul {
    padding-left: 1.1rem;
    margin: 0.4rem 0 0;
}

.note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-lines {
    margin-top: 0.75rem;
}

/* Footer */

.site-footer {
    border-top: 1px solid var(--accent-border);
    background: #ffffff;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive adjustments */

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .card {
        padding: 1.5rem 1.5rem;
    }

    .columns {
        grid-template-columns: 1fr;
    }

    .logo {
        width: 60px;
    }
}
