:root {
    --background: #f7f5ef;
    --surface: #ffffff;
    --ink: #1c1c18;
    --muted: #69675f;
    --line: #d8d3c6;
    --accent: #7b6f4f;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--background);
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--background);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    opacity: 1;
    transition: opacity 280ms ease, transform 280ms ease;
}

body.is-loading {
    opacity: 0;
    transform: translateY(8px);
}

body.is-leaving {
    opacity: 0;
    transform: translateY(-6px);
}

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

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 22px clamp(20px, 5vw, 64px);
    border-bottom: 1px solid rgba(28, 28, 24, 0.12);
    background: rgba(247, 245, 239, 0.88);
    backdrop-filter: blur(18px);
}

.brand {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    color: var(--muted);
    font-size: 14px;
}

nav a {
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

nav a:hover,
nav a[aria-current="page"] {
    color: var(--ink);
    border-bottom-color: currentColor;
}

.return-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 46px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.return-link span:first-child {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-size: 17px;
    line-height: 1;
    transition: transform 180ms ease, border-color 180ms ease;
}

.return-link:hover {
    color: var(--ink);
}

.return-link:hover span:first-child {
    border-color: var(--accent);
    transform: translateX(-3px);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: stretch;
    padding-top: 76px;
}

.hero-media {
    min-height: calc(100vh - 76px);
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 76px);
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 8vw, 112px) clamp(28px, 6vw, 88px);
}

.kicker {
    margin: 0 0 24px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 76px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
}

.hero-content > p:last-child {
    max-width: 520px;
    margin: 32px 0 0;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.25;
}

.page {
    padding: 150px clamp(22px, 6vw, 84px) 90px;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    align-items: center;
    gap: clamp(42px, 6vw, 96px);
    max-width: 1280px;
    margin-bottom: clamp(48px, 8vw, 92px);
}

.about-intro h1 {
    font-size: clamp(42px, 6vw, 86px);
}

.about-figure {
    margin: 0;
    border-left: 1px solid var(--line);
    padding-left: clamp(24px, 4vw, 44px);
}

.about-figure img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: contain;
}

.about-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    max-width: 860px;
    margin-left: auto;
    padding-top: 44px;
    border-top: 1px solid var(--line);
}

.about-copy p {
    margin: 0;
    color: #2d2c27;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.72;
}

.about-copy .location {
    margin-top: 18px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-page {
    min-height: 100vh;
}

.contact-intro {
    max-width: 980px;
    padding-top: clamp(54px, 9vw, 120px);
    border-top: 1px solid var(--line);
}

.contact-email {
    display: inline-block;
    margin-top: 34px;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.12;
    word-break: break-word;
}

.contact-email:hover {
    color: var(--ink);
}

@media (max-width: 860px) {
    .site-header {
        position: sticky;
        min-height: 68px;
        padding: 18px 20px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .hero-media,
    .hero-media img {
        min-height: 54vh;
    }

    .hero-content {
        min-height: 46vh;
        justify-content: flex-start;
        padding: 42px 22px 58px;
    }

    .page {
        padding: 84px 22px 64px;
    }

    .about-copy {
        margin-left: 0;
    }

    .about-intro {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .about-figure {
        max-width: 320px;
        border-top: 1px solid var(--line);
        border-left: 0;
        padding-top: 28px;
        padding-left: 0;
    }
}

@media (max-width: 520px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 36px;
    }

    .about-intro h1 {
        font-size: 40px;
    }

    .contact-email {
        font-size: 24px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}
