.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-backdrop {
    position: relative;
    padding: 48px 0 72px;
}

.hero-backdrop::before,
.hero-backdrop::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0.52;
}

.hero-backdrop::before {
    right: clamp(20px, 10vw, 120px);
    bottom: 30px;
    width: min(340px, 34vw);
    aspect-ratio: 1 / 1.1;
    background: linear-gradient(180deg, rgba(253, 245, 232, 0.98), rgba(247, 231, 204, 0.84));
    border-radius: 10px;
    border: 1px solid rgba(67, 56, 41, 0.12);
    transform: rotate(-12deg);
    box-shadow: var(--shadow);
}

.hero-backdrop::after {
    left: 0;
    top: 64px;
    width: min(520px, 46vw);
    height: 220px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), transparent 70%);
}

.paper-stack {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
}

.paper-card {
    width: min(100%, 560px);
    padding: 34px 32px 28px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 18%),
        linear-gradient(180deg, rgba(252, 242, 223, 0.98), rgba(243, 226, 201, 0.98));
    border: 1px solid rgba(170, 132, 82, 0.24);
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative;
}

.paper-card--wide {
    width: min(100%, 1120px);
}

.paper-card__close {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--textPrimaryBase);
    font-size: 36px;
    line-height: 1;
}

.paper-title {
    margin: 0;
    text-align: center;
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 0.95;
    text-transform: uppercase;
}

.paper-title--compact {
    font-size: 28px;
    line-height: 1.1;
    text-transform: none;
}

.paper-subtitle {
    margin: 18px auto 0;
    max-width: 480px;
    text-align: center;
    font-size: 16px;
    line-height: 1.55;
    color: var(--page-textPrimary);
}

.page-title {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 36px;
}

.page-subtitle {
    margin: 0;
    color: var(--page-textPrimary);
}
