@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
    --bg: #faf9f7;
    --fg: #1a1a1a;
    --muted: #888;
    --accent: #c8a882;
    --border: #e8e4de;
    --nav-h: 70px;
}

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

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
}

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

/* ── NAV ─────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(250,249,247,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 100;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

    .nav-links a {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        transition: color .2s;
    }

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

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

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--fg);
    }

/* ── PAGE ────────────────────────────────────────────── */
.page {
    padding-top: var(--nav-h);
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
    height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #faf9f7 60%, #ede8df 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 32px;
    border: 3px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    background: var(--border);
}

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

    .hero-photo.hero-photo-empty {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: black; /*var(--muted);*/
    margin-bottom: 40px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 36px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--fg);
    transition: all .3s;
    cursor: pointer;
    background: transparent;
    font-family: 'Jost', sans-serif;
    color: var(--fg);
}

    .btn:hover {
        background: var(--fg);
        color: var(--bg);
    }

.btn-dark {
    background: var(--fg);
    color: var(--bg);
}

    .btn-dark:hover {
        background: transparent;
        color: var(--fg);
    }

/* ── PAGE HEADER ─────────────────────────────────────── */
.page-header {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

    .page-header h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 48px;
        font-weight: 300;
        letter-spacing: 4px;
        text-transform: uppercase;
    }

/* ── ABOUT ────────────────────────────────────────────── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 80px;
}

.about-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--border);
}

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

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.9;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
}

.contact-info {
    padding-top: 60px;
}

.contact-info-item {
    margin-bottom: 32px;
}

.contact-info-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /*color: var(--muted);*/
    color: black;
    font-weight: bold;
    margin-bottom: 6px;
}

.form-group {
    margin-bottom: 24px;
}

    .form-group label {
        display: block;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 8px;
    }

.form-control {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--fg);
    outline: none;
    transition: border-color .2s;
}

    .form-control:focus {
        border-bottom-color: var(--fg);
    }

textarea.form-control {
    resize: none;
    height: 100px;
}

/* ── ALERT ────────────────────────────────────────────── */
.alert-success {
    background: #f0faf0;
    border: 1px solid #c8e6c9;
    padding: 14px 20px;
    margin-bottom: 28px;
    font-size: 13px;
    color: #2e7d32;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 36px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
        display: none;
    }

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

        .nav-links a {
            display: block;
            padding: 16px 24px;
            border-bottom: 1px solid var(--border);
        }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        letter-spacing: 3px;
    }

    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-top: 0;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}
