:root {
    --ink: #141414;
    --muted: #5d6562;
    --line: #d9dedb;
    --paper: #fbfaf7;
    --mist: #eef3f1;
    --teal: #6f9997;
    --teal-dark: #365d5b;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(15, 24, 24, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(251, 250, 247, 0.96), rgba(238, 243, 241, 0.9)),
        url("assets/megan-harris-logo.jpeg") center / cover fixed;
    font-family:
        "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
        sans-serif;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.35)),
        radial-gradient(circle at 80% 20%, rgba(111, 153, 151, 0.18), transparent 34%);
}

main {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 36px 18px;
}

.page {
    width: min(760px, 100%);
    display: grid;
    align-items: stretch;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(217, 222, 219, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.content {
    padding: clamp(34px, 6vw, 76px);
}

.brand-mark {
    display: block;
    width: min(460px, 100%);
    height: auto;
    margin-bottom: clamp(34px, 5vw, 58px);
}

.eyebrow {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 0 0 18px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--teal);
}

h1 {
    max-width: 780px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 7vw, 5.4rem);
    font-weight: 400;
    line-height: 0.98;
}

.accent {
    color: var(--teal-dark);
}

.intro {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.notice {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.notice p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.label {
    display: block;
    margin-bottom: 8px;
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.email {
    display: inline-block;
    color: var(--teal-dark);
    font-size: clamp(1.02rem, 2vw, 1.25rem);
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration-color: rgba(54, 93, 91, 0.55);
    text-underline-offset: 5px;
}

footer {
    margin-top: 52px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

@media (max-width: 820px) {
    body {
        background-attachment: scroll;
    }

    main {
        padding: 18px;
        place-items: stretch;
    }

    .page {
        min-height: calc(100vh - 36px);
    }

    .brand-mark {
        margin-bottom: 30px;
    }
}

@media (max-width: 520px) {
    .content {
        padding: 28px 22px;
    }
}