:root {
    color-scheme: light;
    --ink: #243041;
    --muted: #687386;
    --cream: #fbf8f2;
    --paper: #ffffff;
    --sage: #537966;
    --sage-dark: #365747;
    --gold: #ba8c45;
    --line: #e7e0d5;
    --shadow: 0 18px 55px rgba(51, 57, 68, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, #f0eadf 0, transparent 34rem),
        var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--sage);
    color: white;
    font-family: Georgia, serif;
    font-size: 24px;
}

.header-note {
    color: var(--muted);
    font-size: 14px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 56px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px 92px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.lead {
    max-width: 690px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(19px, 2.2vw, 24px);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid var(--sage);
    border-radius: 14px;
    background: var(--sage);
    color: white;
    font-weight: 800;
    text-decoration: none;
}

.button.secondary {
    background: transparent;
    color: var(--sage-dark);
}

.memory-card {
    position: relative;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    transform: rotate(1.4deg);
}

.photo-placeholder {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(83, 121, 102, 0.18), rgba(186, 140, 69, 0.18)),
        #e9e4da;
    color: var(--sage-dark);
    font-family: Georgia, serif;
    font-size: 28px;
    text-align: center;
}

.memory-date {
    margin: 20px 0 4px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.memory-card h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 30px;
}

.memory-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.feature-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1180px;
    margin: 0 auto;
}

.feature {
    padding: 34px 28px;
}

.feature + .feature {
    border-left: 1px solid var(--line);
}

.feature strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.feature span {
    color: var(--muted);
}

.workspace {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 96px);
    padding: 40px 24px;
}

.workspace-card {
    width: min(760px, 100%);
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.workspace-card h1 {
    font-size: clamp(42px, 7vw, 66px);
}

.status-pill {
    display: inline-flex;
    margin-top: 28px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(83, 121, 102, 0.12);
    color: var(--sage-dark);
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 820px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .memory-card {
        transform: none;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .feature + .feature {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .header-note {
        display: none;
    }
}
