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

:root {
    --charcoal: #1A1A1A;
    --navy: #1B2A4A;
    --slate: #4A6274;
    --stone: #8C7E6A;
    --cream: #F7F6F3;
    --off-white: #FDFCFA;
    --warm-white: #FAF9F6;
    --text-secondary: #5A5A5A;
    --text-tertiary: #888580;
    --border: #E0DDD8;
    --border-light: #EDEAE5;
}

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

body {
    font-family: 'EB Garamond', 'Georgia', serif;
    color: var(--charcoal);
    background-color: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ─── Navigation ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

nav.scrolled {
    border-bottom-color: var(--border);
}

nav.transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
}

nav.transparent .logo,
nav.transparent .nav-links a {
    color: white;
}

nav.transparent.scrolled {
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

nav.transparent.scrolled .logo {
    color: var(--charcoal);
}

nav.transparent.scrolled .nav-links a {
    color: var(--text-tertiary);
}

nav.transparent.scrolled .nav-links a:hover,
nav.transparent.scrolled .nav-links a.active {
    color: var(--charcoal);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--charcoal);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ─── Hamburger ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: 0.3s;
}

nav.transparent .hamburger span {
    background: white;
}

nav.transparent.scrolled .hamburger span {
    background: var(--charcoal);
}

/* ─── Page Hero (shared by subpages) ─── */
.page-hero {
    padding: 180px 48px 100px;
    background: var(--off-white);
}

.page-hero .section-inner {
    max-width: 720px;
    margin: 0 auto;
}

.page-hero .section-label {
    margin-bottom: 32px;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--charcoal);
}

.page-hero .page-intro {
    margin-top: 28px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 560px;
}

/* ─── Section Shared ─── */
section, .content-section {
    padding: 100px 48px;
}

.section-inner {
    max-width: 720px;
    margin: 0 auto;
}

.section-wide {
    max-width: 960px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
    max-width: 60px;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 40px;
}

.section-body p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 24px;
}

.section-body p:last-child {
    margin-bottom: 0;
}

/* ─── Images ─── */
.image-block {
    width: 100%;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(0.95);
    transition: filter 0.6s ease;
}

.image-block:hover img {
    filter: grayscale(0%) contrast(1);
}

.image-full {
    height: 480px;
}

.image-half {
    height: 360px;
}

.image-banner {
    height: 280px;
}

/* ─── CTA Link ─── */
.text-link {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    border-bottom: 1px solid var(--slate);
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}

.text-link:hover {
    color: var(--charcoal);
    border-color: var(--charcoal);
}

/* ─── Footer ─── */
footer {
    padding: 72px 48px 48px;
    border-top: 1px solid var(--border);
    background: var(--off-white);
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
}

.footer-brand .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--charcoal);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-tertiary);
    letter-spacing: 0.03em;
}

/* ─── Animations ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 810px) {
    section, .content-section {
        padding: 72px 32px;
    }

    .page-hero {
        padding: 140px 32px 72px;
    }

    .nav-inner {
        padding: 16px 32px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--off-white);
        flex-direction: column;
        padding: 24px 32px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: var(--text-secondary) !important;
    }

    .hamburger {
        display: flex;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .image-full { height: 320px; }
    .image-half { height: 240px; }
    .image-banner { height: 200px; }
}

@media (max-width: 480px) {
    section, .content-section {
        padding: 56px 24px;
    }

    .page-hero {
        padding: 120px 24px 56px;
    }

    .nav-inner {
        padding: 16px 24px;
    }

    footer {
        padding: 48px 24px 32px;
    }

    .image-full { height: 240px; }
    .image-half { height: 200px; }
    .image-banner { height: 160px; }
}
