:root {
    --parchment: #FDFBF7;
    --ink: #1C1C1C;
    --brass: #A68B67;
    --wax: #7D2619;
    --manila: #E8E2D2;
    --border: rgba(28, 28, 28, 0.1);
}

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

html,
body {
    background-color: var(--parchment);
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;

    margin: 0;
    padding: 0;

    font-family: 'Space Mono', monospace;
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    /* 16px to 18px */
    line-height: 1.6;
    font-weight: 400;
}

html,
body::webkit-scrollbar {
    display: none;

}


.micro-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brass);
    font-weight: 700;
}

.serif-display {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

        nav {
            padding: 1rem;
            background: var(--wax);
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--parchment);
            text-decoration: none;
            flex: 0 0 auto;
        }

        .nav-brand:hover {
            color: var(--parchment);
            text-decoration: none;
        }

        .nav-brand img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            display: block;
            flex: 0 0 auto;
        }

        .nav-brand span {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1;
            white-space: nowrap;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 40px;
            margin-left: auto;
        }

        nav a {
            text-decoration: none;
            color: var(--parchment);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--ink);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            margin-left: auto;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(253, 251, 247, 0.5);
            border-radius: 6px;
            background: transparent;
            color: var(--parchment);
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .nav-toggle:hover {
            background: rgba(253, 251, 247, 0.12);
        }

        .nav-toggle-bar {
            display: block;
            width: 18px;
            height: 2px;
            background: currentColor;
            border-radius: 1px;
        }

        .nav-toggle-bar + .nav-toggle-bar {
            margin-top: 4px;
        }

        .nav-toggle-label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--ink);
}

a:hover {
    text-decoration: underline;
    color: var(--wax);
}

section {
    min-height: 100vh;
    width: 100%;
}

.about-page {
    background: linear-gradient(135deg, var(--parchment) 0%, #f7efe2 100%);
    color: var(--ink);
    font-family: 'Space Mono', monospace;
    width: 100%;
    overflow-x: hidden;
}

.about-shell {
    padding: 3rem clamp(1rem, 3vw, 2rem) 5rem;
    width: min(100%, 1200px);
    margin: 0 auto;
    box-sizing: border-box;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem 0 3rem;
}

.about-hero-content h1 {
    margin: 0.5rem 0 1rem;
    line-height: 1.1;
}

.about-intro {
    font-size: 1.05rem;
    max-width: 670px;
}

.about-hero-panel {
    min-height: 320px;
    max-width: 420px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.45);
    padding: 1.2rem;
    display: flex;
    align-items: end;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transform: rotate(-3deg);
}

.about-hero-card {
    background: var(--manila);
    border: 1px solid var(--border);
    /* padding: 1rem; */
    /* transform: rotate(-2deg); */
    width: 100%;
    display: grid;
    gap: 1rem;
}

.about-hero-card img {
    width: 100%;
    height: clamp(180px, 22vw, 250px);
    display: block;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--border);
}

.about-hero-card p:last-child {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-top: 0.75rem;
}

.about-section {
    display: grid;
    gap: 1.5rem;
}

.story-card,
.family-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: grid;
    gap: 1rem;
}

.image-placeholder {
    border: 1px dashed var(--brass);
    background: linear-gradient(135deg, rgba(166, 139, 103, 0.16) 0%, rgba(125, 38, 25, 0.1) 100%);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wax);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
}

.image-placeholder-small {
    min-height: 140px;
}

.story-card h2,
.family-card h2 {
    margin: 0.4rem 0 1rem;
}

.story-card p,
.family-card p {
    margin-bottom: 1rem;
}

.about-photo {
    margin: 0;
    width: 100%;
    border: 1px solid var(--border);
    background: #f6f1e7;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-photo-story {
    height: clamp(220px, 42vw, 520px);
}

.about-photo-team {
    height: clamp(260px, 50vw, 620px);
    width: min(100%, 440px);
    justify-self: center;
}

@media (min-width: 900px) {
    .story-card,
    .family-card {
        grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
        align-items: start;
        column-gap: 2rem;
    }

    .story-card > figure {
        grid-column: 1;
        grid-row: 1 / span 4;
        height: 100%;
        min-height: 360px;
    }

    .story-card > :not(figure) {
        grid-column: 2;
    }

    .family-card > figure {
        grid-column: 2;
        grid-row: 1 / span 4;
        height: 100%;
        min-height: 360px;
        width: 100%;
    }

    .family-card > :not(figure) {
        grid-column: 1;
    }
}

@media (max-width: 800px) {
    .site-nav {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .site-nav .nav-toggle {
        display: inline-flex;
    }

    .site-nav .nav-links {
        display: none;
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        gap: 0;
        padding-bottom: 0.25rem;
    }

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

    .site-nav .nav-links li {
        width: 100%;
    }

    .site-nav .nav-links a {
        display: block;
        width: 100%;
        padding: 0.65rem 0;
        border-top: 1px solid rgba(253, 251, 247, 0.25);
    }

    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-shell {
        padding: 2rem 1rem 3rem;
    }

    .about-hero-panel {
        min-height: 260px;
    }

    .about-hero-card img {
        height: clamp(170px, 56vw, 230px);
    }

    .about-photo-story {
        height: clamp(200px, 52vw, 360px);
    }

    .about-photo-team {
        height: clamp(260px, 85vw, 480px);
        width: 100%;
    }
}

.hero {
    display: grid;
    width: 100vw;
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    gap: 4px;
    margin-top: 8vh;

}

.micro-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brass);
    font-weight: 700;
}

.brass-slot {
    width: 200px;
    height: 40px;
    border: 2px solid var(--brass);
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brass-slot::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 4px;
    background: var(--ink);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) inset;
}

footer.site-footer {
    background: #ae0000;
    color: #fff4ea;
    padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 50px) clamp(20px, 3vw, 28px);
    min-height: clamp(320px, 42vh, 460px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 42px;
    position: relative;
    overflow: hidden;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(260px, 1fr);
    gap: clamp(20px, 4vw, 52px);
    align-items: start;
}

.footer-brand-title {
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1;
    margin-bottom: 16px;
}

.footer-brand-copy {
    max-width: 26ch;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    grid-column: 1 / -1;
    grid-row: 1;
}

.site-footer-inner > :first-child {
    grid-column: 1;
    grid-row: 2;
}

.footer-links {
    grid-column: 2;
    grid-row: 2;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.14);
    color: #fff4ea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-circle:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
    text-decoration: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    gap: 14px 42px;
}

.footer-links a {
    color: #fff4ea;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffe0c0;
    text-decoration: underline;
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.site-footer-bottom a {
    color: #fff4ea;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .site-footer-inner {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .footer-social {
        justify-content: flex-start;
        order: 1;
    }

    .site-footer-inner > :first-child {
        order: 2;
    }

    .footer-links {
        order: 3;
    }

    .footer-links {
        gap: 12px 24px;
        max-width: 320px;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}