@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    --tmay-bg: #09090b;
    --tmay-bg-2: #121015;
    --tmay-paper: #16090c;
    --tmay-paper-2: #2a1015;
    --tmay-ink: #f5efe1;
    --tmay-muted: #a89f91;
    --tmay-bone: #e7d7b8;
    --tmay-red: #db2f3d;
    --tmay-red-dark: #74151f;
    --tmay-blood: #9f1723;
    --tmay-blood-dark: #4b070d;
    --tmay-line: rgba(245, 239, 225, 0.16);
    --tmay-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.tmay-theme {
    margin: 0;
    min-width: 320px;
    color: var(--tmay-ink);
    background:
        radial-gradient(circle at 18% 12%, rgba(219, 47, 61, 0.24), transparent 28rem),
        radial-gradient(circle at 86% 10%, rgba(116, 21, 31, 0.28), transparent 22rem),
        linear-gradient(145deg, #060607 0%, #121015 46%, #070709 100%);
    font-family: "Chakra Petch", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.tmay20-lightbox-open {
    overflow: hidden;
}

body.tmay-theme::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.tmay-noise {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0.1;
    mix-blend-mode: screen;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 100% 4px, 9px 9px;
}

.tmay-container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.tmay-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(219, 47, 61, 0.24);
    background: rgba(9, 9, 11, 0.78);
    backdrop-filter: blur(18px);
}

.tmay-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 24px;
}

.tmay-brand,
.tmay-footer-brand {
    display: inline-flex;
    flex-direction: column;
    color: var(--tmay-ink);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 0.95;
}

.tmay-brand img {
    max-height: 54px;
    width: auto;
}

.tmay-brand span {
    color: var(--tmay-muted);
    font-size: 0.78rem;
}

.tmay-brand strong,
.tmay-footer-brand {
    color: var(--tmay-bone);
    font-size: 1.15rem;
    text-shadow: 0 0 18px rgba(219, 47, 61, 0.32);
}

.tmay-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tmay-menu a {
    padding: 10px 13px;
    color: rgba(245, 239, 225, 0.78);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid transparent;
}

.tmay-menu a:hover {
    color: var(--tmay-bone);
    border-color: rgba(219, 47, 61, 0.42);
    background: rgba(219, 47, 61, 0.08);
}

.tmay-menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid rgba(219, 47, 61, 0.42);
    color: var(--tmay-bone);
    background: rgba(219, 47, 61, 0.12);
}

.tmay-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.tmay-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 58px;
}

.tmay-hero::after {
    position: absolute;
    right: -8vw;
    bottom: -220px;
    width: 520px;
    height: 520px;
    content: "";
    background: radial-gradient(circle, rgba(219, 47, 61, 0.34), transparent 65%);
    filter: blur(6px);
}

.tmay-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 56px;
    align-items: center;
}

.tmay-kicker {
    margin: 0 0 14px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.tmay-hero h1,
.tmay-section h1,
.tmay-section h2,
.tmay-page-hero h1 {
    margin: 0;
    font-weight: 700;
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.tmay-hero h1 {
    max-width: 840px;
    font-size: clamp(4rem, 10vw, 8.7rem);
}

.tmay-page-hero h1 {
    max-width: 940px;
    font-size: clamp(3rem, 8vw, 6.8rem);
}

.tmay-section h2 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.tmay-lead {
    max-width: 700px;
    margin-top: 24px;
    color: rgba(245, 239, 225, 0.82);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.tmay-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid currentColor;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

.tmay-button-primary {
    color: var(--tmay-ink);
    border-color: rgba(219, 47, 61, 0.86);
    background:
        linear-gradient(180deg, rgba(219, 47, 61, 0.92), rgba(116, 21, 31, 0.98)),
        var(--tmay-blood);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.tmay-button-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 9px 9px 0 rgba(75, 7, 13, 0.95);
}

.tmay-button-ghost {
    color: var(--tmay-ink);
    background: rgba(245, 239, 225, 0.04);
}

.tmay-warning {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.tmay-warning span,
.tmay-pill {
    display: inline-flex;
    padding: 7px 10px;
    color: rgba(245, 239, 225, 0.75);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(245, 239, 225, 0.16);
    background: rgba(255, 255, 255, 0.035);
}

.tmay-cabinet {
    position: relative;
    padding: 26px 22px 34px;
    border: 2px solid rgba(245, 239, 225, 0.16);
    border-radius: 28px 28px 42px 42px;
    background:
        linear-gradient(140deg, rgba(219, 47, 61, 0.2), transparent 40%),
        linear-gradient(180deg, #22202a 0%, #0e0d11 100%);
    box-shadow: var(--tmay-shadow), inset 0 0 0 5px rgba(0, 0, 0, 0.22);
    transform: rotate(1.2deg);
}

.tmay-cabinet::before {
    display: block;
    margin-bottom: 18px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    content: "The Morning After You";
}

.tmay-cabinet-art,
.tmay-screen,
.tmay-detail-image img,
.tmay-media-card img,
.tmay-reference-image img {
    width: 100%;
    border: 1px solid rgba(231, 215, 184, 0.24);
    background: #050505;
}

.tmay-cabinet-art,
.tmay-screen {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: inset 0 0 42px rgba(219, 47, 61, 0.14);
}

.tmay-screen {
    display: grid;
    place-items: center;
    padding: 28px;
    text-align: center;
    background:
        linear-gradient(rgba(231, 215, 184, 0.055) 50%, rgba(0, 0, 0, 0.18) 50%),
        radial-gradient(circle at center, rgba(219, 47, 61, 0.2), #060607 70%);
    background-size: 100% 5px, auto;
}

.tmay-screen-label {
    position: absolute;
    top: 72px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.tmay-eye {
    width: 150px;
    height: 78px;
    border: 3px solid var(--tmay-red);
    border-radius: 70% 12%;
    box-shadow: 0 0 40px rgba(219, 47, 61, 0.45);
    transform: rotate(-11deg);
}

.tmay-eye::after {
    display: block;
    width: 44px;
    height: 44px;
    margin: 14px auto;
    content: "";
    border-radius: 50%;
    background: var(--tmay-blood);
    box-shadow: 0 0 28px rgba(219, 47, 61, 0.76);
}

.tmay-screen p {
    color: rgba(231, 215, 184, 0.84);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.tmay-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.tmay-controls span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--tmay-red);
    box-shadow: inset -4px -5px 0 rgba(0, 0, 0, 0.22);
}

.tmay-controls span:nth-child(2) { background: var(--tmay-blood-dark); }

.tmay-controls strong {
    padding: 8px 12px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.8rem;
    border: 1px solid rgba(231, 215, 184, 0.22);
    background: #12080a;
}

.tmay-strip {
    border-block: 1px solid rgba(219, 47, 61, 0.24);
    background: rgba(0, 0, 0, 0.28);
}

.tmay-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tmay-strip-grid div {
    padding: 22px;
    border-right: 1px solid rgba(219, 47, 61, 0.2);
}

.tmay-strip-grid div:last-child { border-right: 0; }

.tmay-strip-grid strong {
    display: block;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.tmay-strip-grid span {
    color: rgba(245, 239, 225, 0.82);
    font-size: 1.05rem;
}

.tmay-section,
.tmay-page-hero {
    padding: 92px 0;
}

.tmay-page-hero {
    overflow: hidden;
    border-bottom: 1px solid rgba(245, 239, 225, 0.12);
    background:
        linear-gradient(105deg, rgba(219, 47, 61, 0.14), transparent 60%),
        rgba(0, 0, 0, 0.14);
}

.tmay-split {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.tmay-prose,
.tmay-manuscript,
.tmay-page-content {
    color: rgba(245, 239, 225, 0.82);
    font-size: 1.08rem;
}

.tmay-prose p:first-child,
.tmay-page-content p:first-child { margin-top: 0; }

.tmay-prose a,
.tmay-page-content a,
.tmay-manuscript a { color: var(--tmay-bone); }

.tmay-section-paper {
    color: var(--tmay-ink);
    background:
        radial-gradient(circle at 14% 18%, rgba(219, 47, 61, 0.22), transparent 26rem),
        linear-gradient(135deg, #12080a 0%, #09090b 62%, #1a080c 100%);
    border-block: 1px solid rgba(219, 47, 61, 0.22);
}

.tmay-section-paper .tmay-kicker { color: var(--tmay-bone); }

.tmay-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
}

.tmay-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tmay-card {
    min-height: 280px;
    padding: 24px;
    border: 1px solid rgba(219, 47, 61, 0.26);
    background:
        linear-gradient(150deg, rgba(116, 21, 31, 0.42), rgba(255, 255, 255, 0.035)),
        rgba(5, 5, 6, 0.64);
    box-shadow: 8px 8px 0 rgba(116, 21, 31, 0.28);
}

.tmay-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    background: #09090b;
}

.tmay-card h3,
.tmay-media-card h3,
.tmay-reference-card h3,
.tmay-service-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.1;
}

.tmay-card p,
.tmay-media-card span,
.tmay-reference-card p,
.tmay-service-card p { color: rgba(245, 239, 225, 0.72); }

.tmay-card a,
.tmay-media-card a,
.tmay-reference-card a,
.tmay-service-card a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tmay-quote-panel {
    position: relative;
    padding: 46px;
    border: 1px solid rgba(231, 215, 184, 0.18);
    background:
        linear-gradient(135deg, rgba(219, 47, 61, 0.12), transparent 38%),
        rgba(255, 255, 255, 0.035);
    box-shadow: var(--tmay-shadow);
}

.tmay-quote-mark {
    color: var(--tmay-red);
    font-size: 6rem;
    line-height: 0.7;
}

.tmay-quote-panel blockquote {
    max-width: 940px;
    margin: 0;
    font-size: clamp(1.55rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.tmay-quote-panel p {
    max-width: 680px;
    color: var(--tmay-muted);
}

.tmay-media-grid,
.tmay-reference-grid,
.tmay-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tmay-media-card,
.tmay-reference-card,
.tmay-service-card {
    overflow: hidden;
    border: 1px solid rgba(219, 47, 61, 0.26);
    background:
        linear-gradient(150deg, rgba(116, 21, 31, 0.4), rgba(255, 255, 255, 0.035)),
        rgba(5, 5, 6, 0.66);
    box-shadow: 8px 8px 0 rgba(116, 21, 31, 0.24);
}

.tmay-media-card img,
.tmay-reference-card img,
.tmay-service-card img,
.tmay-reference-image img,
.tmay-detail-image img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}

.tmay-media-card div,
.tmay-reference-card div,
.tmay-service-card div { padding: 22px; }

.tmay-media-card p,
.tmay-reference-card small {
    margin: 0 0 8px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tmay-manuscript {
    position: relative;
    padding: 42px;
    color: rgba(245, 239, 225, 0.84);
    background:
        linear-gradient(120deg, rgba(116, 21, 31, 0.52), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        #0d080a;
    border: 1px solid rgba(231, 215, 184, 0.18);
    box-shadow: 12px 12px 0 rgba(116, 21, 31, 0.34);
    transform: rotate(-0.4deg);
}

.tmay-manuscript h2 {
    margin-bottom: 20px;
    color: var(--tmay-ink);
}

.tmay-contact-section {
    border-top: 1px solid rgba(219, 47, 61, 0.22);
    background: rgba(0, 0, 0, 0.22);
}

.tmay-contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    gap: 44px;
}

.tmay-contact-mail {
    display: inline-flex;
    margin-top: 18px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
}

.tmay-form {
    padding: 28px;
    border: 1px solid rgba(245, 239, 225, 0.14);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--tmay-shadow);
}

.tmay-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tmay-form label {
    display: grid;
    gap: 7px;
    color: var(--tmay-muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tmay-form label.full { grid-column: 1 / -1; }

.tmay-form input,
.tmay-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--tmay-ink);
    font: inherit;
    border: 1px solid rgba(245, 239, 225, 0.16);
    background: rgba(0, 0, 0, 0.28);
}

.tmay-form textarea {
    min-height: 150px;
    resize: vertical;
}

.tmay-form button { margin-top: 18px; }

.tmay-form-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.85rem;
}

.tmay-form-alert-success {
    color: var(--tmay-ink);
    border: 1px solid rgba(219, 47, 61, 0.5);
    background:
        linear-gradient(135deg, rgba(159, 23, 35, 0.94), rgba(75, 7, 13, 0.96)),
        var(--tmay-blood-dark);
}

.tmay-form-alert-error {
    color: var(--tmay-ink);
    background: var(--tmay-red-dark);
}

.tmay-honeypot {
    position: absolute;
    left: -10000px;
}

.tmay-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 44px;
    align-items: start;
}

.tmay-page-panel {
    padding: 24px;
    border: 1px solid rgba(231, 215, 184, 0.18);
    background: rgba(255, 255, 255, 0.045);
}

.tmay-page-panel h2 {
    font-size: 1.3rem;
    letter-spacing: 0;
}

.tmay-detail-image { margin-bottom: 26px; }

.tmay-empty {
    padding: 32px;
    color: rgba(245, 239, 225, 0.74);
    border: 1px solid rgba(245, 239, 225, 0.13);
    background: rgba(255, 255, 255, 0.04);
}

.tmay-footer {
    padding: 58px 0 26px;
    border-top: 1px solid rgba(245, 239, 225, 0.12);
    background: #050506;
}

.tmay-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.7fr;
    gap: 42px;
}

.tmay-footer p {
    max-width: 520px;
    color: var(--tmay-muted);
}

.tmay-footer h4 {
    margin: 0 0 12px;
    color: var(--tmay-bone);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.tmay-footer a,
.tmay-footer span {
    display: block;
    margin: 7px 0;
    color: rgba(245, 239, 225, 0.72);
    text-decoration: none;
}

.tmay-footer a:hover { color: var(--tmay-bone); }

.tmay-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 20px;
    color: rgba(245, 239, 225, 0.52);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    border-top: 1px solid rgba(245, 239, 225, 0.1);
}

@media (max-width: 980px) {
    .tmay-menu-toggle { display: block; }

    .tmay-menu {
        position: absolute;
        top: 82px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid rgba(219, 47, 61, 0.28);
        background: rgba(9, 9, 11, 0.96);
        box-shadow: var(--tmay-shadow);
    }

    .tmay-menu.is-open { display: flex; }

    .tmay-hero-grid,
    .tmay-split,
    .tmay-contact-grid,
    .tmay-page-grid { grid-template-columns: 1fr; }

    .tmay-card-grid,
    .tmay-media-grid,
    .tmay-reference-grid,
    .tmay-service-grid { grid-template-columns: repeat(2, 1fr); }

    .tmay-strip-grid { grid-template-columns: repeat(2, 1fr); }

    .tmay-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    body.tmay-theme { font-size: 15px; }

    .tmay-container { width: min(100% - 28px, 1160px); }

    .tmay-hero,
    .tmay-section,
    .tmay-page-hero { padding: 58px 0; }

    .tmay-hero h1,
    .tmay-page-hero h1 { font-size: clamp(3rem, 18vw, 4.8rem); }

    .tmay-card-grid,
    .tmay-media-grid,
    .tmay-reference-grid,
    .tmay-service-grid,
    .tmay-form-grid,
    .tmay-strip-grid { grid-template-columns: 1fr; }

    .tmay-strip-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(219, 47, 61, 0.2);
    }

    .tmay-manuscript,
    .tmay-quote-panel,
    .tmay-form { padding: 24px; }

    .tmay-footer-bottom { flex-direction: column; }
}
.page-contact-section {
    padding: 72px 0;
    color: var(--tmay-bone);
    background: #050405;
}

.page-contact-card {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.page-contact-kicker {
    color: var(--tmay-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.page-contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(178, 34, 34, .45);
    border-radius: 24px;
    background: rgba(12, 10, 10, .92);
}

.page-contact-form label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.page-contact-form input,
.page-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(231, 215, 184, .22);
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--tmay-bone);
    background: rgba(255, 255, 255, .05);
    font: inherit;
}

.page-contact-form textarea {
    min-height: 150px;
}

.page-contact-full,
.page-contact-button,
.page-contact-alert {
    grid-column: 1 / -1;
}

.page-contact-button {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--tmay-red);
    font-weight: 900;
}

.page-contact-alert {
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
}

.page-contact-alert-success {
    color: #d1fae5;
    background: rgba(6, 95, 70, .45);
}

.page-contact-alert-error {
    color: #fee2e2;
    background: rgba(127, 29, 29, .45);
}

.page-contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 760px) {
    .page-contact-card,
    .page-contact-form {
        grid-template-columns: 1fr;
    }
}

body.tmay20-theme {
    --tmay-bg: #060504;
    --tmay-bg-2: #0f0d0b;
    --tmay-paper: #11100d;
    --tmay-paper-2: #1b1712;
    --tmay-ink: #dcd0c5;
    --tmay-muted: #9d8a78;
    --tmay-bone: #dcd0c5;
    --tmay-red: #9d8a78;
    --tmay-red-dark: #5e5046;
    --tmay-blood: #9d8a78;
    --tmay-blood-dark: #2c2115;
    --tmay-line: rgba(220, 208, 197, 0.14);
    --tmay-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    color: var(--tmay-ink);
    background:
        radial-gradient(circle at 74% 18%, rgba(245, 216, 161, 0.08), transparent 18rem),
        linear-gradient(180deg, #070707 0%, #040404 100%);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    line-height: 1.6;
}

body.tmay20-theme::before {
    content: none;
}

body.tmay20-theme .tmay-noise {
    opacity: 0.035;
    mix-blend-mode: soft-light;
}

body.tmay20-theme.tmay20-page {
    padding-top: 102px;
}

body.tmay20-theme.tmay20-gallery-only-page {
    background:
        radial-gradient(circle at 50% 14%, rgba(220, 208, 197, 0.06), transparent 26rem),
        linear-gradient(180deg, rgba(7, 6, 5, 0.46), rgba(4, 4, 4, 0.72)),
        url('/themes/TheMorningAfterYou20/media/gallery-texture-bg.png') center top / cover no-repeat,
        #050403;
}

body.tmay20-theme.tmay20-gallery-only-page .tmay20-sub-shell {
    width: min(980px, calc(100% - clamp(28px, 8vw, 140px)));
}

body.tmay20-theme .tmay-kicker,
body.tmay20-theme .tmay-button,
body.tmay20-theme .tmay-strip strong,
body.tmay20-theme .tmay-card span,
body.tmay20-theme .tmay-pill {
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
}

body.tmay20-theme .tmay-kicker {
    color: rgba(157, 138, 120, 0.9);
    letter-spacing: 0.18em;
}

body.tmay20-theme .tmay-strip,
body.tmay20-theme .tmay-section-paper,
body.tmay20-theme .tmay-manuscript,
body.tmay20-theme .tmay-quote-panel,
body.tmay20-theme .tmay-form,
body.tmay20-theme .tmay-card,
body.tmay20-theme .tmay-service-card,
body.tmay20-theme .tmay-media-card {
    border-color: rgba(234, 219, 189, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

body.tmay20-theme .tmay-strip,
body.tmay20-theme .tmay-contact-section,
body.tmay20-theme .tmay-page-hero {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(7, 7, 7, 0.96)),
        #070707;
}

body.tmay20-theme .tmay-section-paper,
body.tmay20-theme .tmay-manuscript,
body.tmay20-theme .tmay-quote-panel,
body.tmay20-theme .tmay-form,
body.tmay20-theme .tmay-card,
body.tmay20-theme .tmay-service-card,
body.tmay20-theme .tmay-media-card {
    background:
        linear-gradient(180deg, rgba(25, 22, 18, 0.96), rgba(15, 13, 11, 0.98)),
        #120f0c;
}

body.tmay20-theme .tmay-button {
    color: var(--tmay-bone);
    letter-spacing: 0.06em;
    box-shadow: none;
}

body.tmay20-theme .tmay-button-primary {
    color: #15110b;
    border-color: rgba(220, 208, 197, 0.72);
    background:
        linear-gradient(180deg, rgba(220, 208, 197, 0.98), rgba(157, 138, 120, 0.98)),
        var(--tmay-blood);
    text-shadow: none;
}

body.tmay20-theme .tmay-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

body.tmay20-theme .tmay-button-ghost {
    border-color: rgba(234, 219, 189, 0.28);
    background: rgba(15, 12, 10, 0.65);
}

.tmay20-container,
.tmay20-footer-grid,
.tmay20-footer-bottom {
    width: min(1640px, calc(100% - 72px));
    margin: 0 auto;
}

.tmay20-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tmay20-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    background: rgba(7, 7, 7, 0.92);
    border-bottom: 1px solid rgba(234, 219, 189, 0.08);
    backdrop-filter: blur(14px);
}

.tmay20-nav {
    position: relative;
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: clamp(48px, 7vw, 118px);
    width: min(980px, calc(100% - 140px));
    margin: 0 auto;
    min-height: 102px;
    z-index: 1;
}

.tmay20-header::after {
    position: absolute;
    right: 34px;
    bottom: 24px;
    left: 34px;
    z-index: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(157, 138, 120, 0.74), rgba(220, 208, 197, 0.4), rgba(157, 138, 120, 0.74));
    opacity: 0.58;
    pointer-events: none;
}

.tmay20-brand,
.tmay20-menu,
.tmay20-menu-toggle {
    position: relative;
    z-index: 1;
}

.tmay20-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    text-decoration: none;
}

.tmay20-brand::after {
    position: absolute;
    right: -24px;
    bottom: -1px;
    left: -24px;
    z-index: -1;
    height: 18px;
    content: "";
    background: rgba(6, 6, 6, 0.9);
    pointer-events: none;
}

.tmay20-brand img {
    width: min(250px, 100%);
    min-width: 0;
    height: auto;
    opacity: 0.92;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.38));
}

.tmay20-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-right: 0;
}

.tmay20-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 14px;
    color: rgba(220, 208, 197, 0.82);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 160ms ease, text-shadow 160ms ease;
}

.tmay20-menu a::after {
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: min(calc(100% - 4px), 84px);
    height: 5.5px;
    content: "";
    background: url('/themes/TheMorningAfterYou20/media/menu-underline.png') center / 100% 100% no-repeat;
    opacity: 0;
    transform: translateX(-50%) scaleX(0.72);
    transform-origin: center;
    transition: opacity 160ms ease, transform 160ms ease;
}

.tmay20-menu a:hover {
    color: #f1e6d3;
    text-shadow: 0 0 18px rgba(234, 219, 189, 0.16);
}

.tmay20-menu a.is-active::after,
.tmay20-menu a[aria-current="page"]::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.tmay20-menu a.is-active,
.tmay20-menu a[aria-current="page"] {
    color: #f1e6d3;
}

.tmay20-menu-toggle {
    display: none;
    justify-self: end;
    width: 46px;
    height: 42px;
    border: 1px solid rgba(234, 219, 189, 0.18);
    color: var(--tmay-bone);
    background: rgba(8, 8, 8, 0.84);
}

.tmay20-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.tmay20-hero {
    --tmay20-hero-shell-width: min(980px, calc(100% - 140px));
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #020202;
}

.tmay20-hero-compact {
    min-height: auto;
}

.tmay20-hero-media,
.tmay20-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    transform: none;
}

.tmay20-hero-media {
    background:
        var(--tmay20-hero-image, url('/themes/TheMorningAfterYou20/media/hero-bg.jpg')) 74% 48% / cover no-repeat,
        #050505;
    filter: brightness(1.18) contrast(1.05) saturate(1.03);
}

.tmay20-hero-shade {
    background:
        radial-gradient(circle at 74% 30%, rgba(220, 208, 197, 0.18), transparent 18rem),
        linear-gradient(90deg, rgba(4, 4, 4, 0.94) 0%, rgba(4, 4, 4, 0.88) 30%, rgba(4, 4, 4, 0.68) 42%, rgba(4, 4, 4, 0.28) 54%, rgba(4, 4, 4, 0.06) 64%, rgba(4, 4, 4, 0.16) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.04) 24%, rgba(0, 0, 0, 0.46) 100%);
}

body.tmay20-theme.tmay20-home-page .tmay20-hero {
    min-height: calc(100vh - 102px);
}

body.tmay20-theme.tmay20-home-page .tmay20-hero-media,
body.tmay20-theme.tmay20-home-page .tmay20-hero-shade {
    left: 0;
    width: 100%;
    transform: none;
}

body.tmay20-theme.tmay20-home-page .tmay20-hero-media {
    background-position: center top;
    background-size: auto 132%;
    filter: brightness(1.18) contrast(1.04) saturate(1.03);
}

body.tmay20-theme.tmay20-home-page .tmay20-hero-shade {
    background:
        radial-gradient(circle at 68% 26%, rgba(220, 208, 197, 0.16), transparent 20rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.68) 24%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.04) 68%, rgba(0, 0, 0, 0.24) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.5) 100%);
}

@media (min-width: 1001px) {
    body.tmay20-theme:not(.tmay20-home-page) .tmay20-hero-shade {
        display: none;
    }
}

.tmay20-hero-inner {
    position: relative;
    z-index: 1;
    width: var(--tmay20-hero-shell-width);
    margin: 0 auto;
    padding-top: 18px;
    padding-bottom: 90px;
}

.tmay20-hero-inner-compact {
    padding-top: 14px;
    padding-bottom: 30px;
}

body.tmay20-theme.tmay20-page-with-sections .tmay20-hero {
    min-height: auto;
}

body.tmay20-theme.tmay20-hero-only-page:not(.tmay20-home-page) .tmay20-hero {
    min-height: auto;
}

body.tmay20-theme.tmay20-page-with-sections .tmay20-hero-inner {
    padding-bottom: 26px;
}

body.tmay20-theme.tmay20-hero-only-page .tmay20-hero-inner {
    padding-bottom: 26px;
}

body.tmay20-theme.tmay20-page-with-sections .tmay20-hero-inner-compact {
    padding-bottom: 18px;
}

body.tmay20-theme.tmay20-hero-only-page .tmay20-hero-inner-compact {
    padding-bottom: 18px;
}

.tmay20-hero-copy {
    width: min(45%, 440px);
    min-width: 0;
    margin-left: 0;
}

.tmay20-hero-copy-main {
    display: block;
    width: 100%;
    padding-right: 0;
}

.tmay20-hero-page {
    min-height: 760px;
    border-bottom: 1px solid rgba(234, 219, 189, 0.08);
}

.tmay20-hero-copy-page {
    width: min(560px, 42vw);
    min-width: 420px;
}

.tmay20-hero-title {
    margin: 0;
}

.tmay20-hero-title img {
    width: min(560px, 100%);
    height: auto;
    filter: drop-shadow(0 0 28px rgba(220, 208, 197, 0.08));
}

.tmay20-hero-text-title {
    margin: 0;
    color: var(--tmay-bone);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tmay20-hero-tagline {
    margin: 8px 0 14px;
    color: #9d8a78;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: clamp(1.18rem, 1.2vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.tmay20-hero-story {
    color: #dcd0c5;
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    max-width: 100%;
    font-size: clamp(1.12rem, 1.14vw, 1.34rem);
    line-height: 1.46;
}

.tmay20-hero-story p {
    margin: 0 0 0.52rem;
}

.tmay20-hero-actions {
    display: flex;
    align-items: flex-end;
    gap: clamp(6px, 0.5vw, 9px);
    width: max-content;
    max-width: calc(100vw - 140px);
    margin-top: 40px;
}

.tmay20-hero-buttons {
    position: relative;
    flex: 0 0 clamp(420px, 31vw, 492px);
    width: clamp(420px, 31vw, 492px);
    max-width: 100%;
    aspect-ratio: 835 / 105;
    background: url('/themes/TheMorningAfterYou20/media/buttons-sprite.png') center / 100% 100% no-repeat;
}

.tmay20-hero-socials {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: clamp(6px, 0.5vw, 9px);
}

.tmay20-hero-social-link {
    display: block;
    width: clamp(48px, 3.9vw, 62px);
    aspect-ratio: 1;
    border-radius: 2px;
    transition: filter 160ms ease, transform 160ms ease;
}

.tmay20-hero-social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tmay20-hero-social-link:hover {
    filter: brightness(1.18);
    transform: translateY(-2px);
}

.tmay20-hero-social-link:focus-visible {
    outline: 2px solid rgba(220, 208, 197, 0.88);
    outline-offset: 3px;
}

.tmay20-hero-button {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    border-radius: 2px;
}

.tmay20-hero-button:focus-visible {
    outline: 2px solid rgba(220, 208, 197, 0.88);
    outline-offset: 3px;
}

.tmay20-hero-button:hover {
    background: rgba(255, 255, 255, 0.03);
}

.tmay20-hero-button-begin {
    left: 0.24%;
    width: 28.14%;
}

.tmay20-hero-button-wishlist {
    left: 29.94%;
    width: 33.77%;
}

.tmay20-hero-button-trailer {
    left: 65.27%;
    width: 34.49%;
}

.tmay20-hero-button.is-disabled {
    cursor: default;
}

.tmay20-subpage-main {
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.98), rgba(4, 4, 4, 1)),
        #040404;
}

.tmay20-page-sections-overlap {
    position: relative;
    z-index: 2;
    margin-top: clamp(-610px, -50vh, -440px);
}

body.tmay20-theme.tmay20-page-with-sections .tmay20-page-sections-overlap {
    margin-top: 0;
}

body.tmay20-theme.tmay20-author-lead-page .tmay20-page-sections-overlap {
    margin-top: clamp(-120px, -10vh, -64px);
}

body.tmay20-theme.tmay20-page-with-sections.tmay20-author-lead-page .tmay20-page-sections-overlap {
    margin-top: 0;
}

.tmay20-page-sections-overlap .tmay20-sub-shell {
    width: min(980px, calc(100% - 140px));
}

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

.tmay20-sub-hero {
    position: relative;
    padding: 150px 0 34px;
    overflow: hidden;
    border-bottom: 1px solid rgba(234, 219, 189, 0.08);
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.96), rgba(4, 4, 4, 0.98)),
        #050505;
}

.tmay20-sub-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 72% 32%, rgba(220, 208, 197, 0.08), transparent 18rem),
        linear-gradient(90deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.88) 24%, rgba(3, 3, 3, 0.58) 48%, rgba(3, 3, 3, 0.18) 66%, rgba(3, 3, 3, 0.62) 100%);
    pointer-events: none;
}

.tmay20-sub-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
    gap: 52px;
    align-items: center;
}

.tmay20-sub-copy {
    max-width: 470px;
}

.tmay20-sub-title,
.tmay20-paper-copy h2 {
    margin: 0;
    color: var(--tmay-bone);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-weight: 500;
    line-height: 0.96;
    text-transform: uppercase;
}

.tmay20-sub-title {
    font-size: clamp(3rem, 5.8vw, 4.9rem);
    letter-spacing: 0.03em;
}

.tmay20-sub-intro {
    margin-top: 22px;
    color: rgba(220, 208, 197, 0.94);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.2rem, 1.5vw, 1.72rem);
    line-height: 1.34;
}

.tmay20-sub-intro p {
    margin: 0 0 1.05rem;
}

.tmay20-sub-lead {
    color: rgba(220, 208, 197, 0.9);
}

.tmay20-sub-buttons {
    margin-top: 30px;
}

.tmay20-sub-media {
    position: relative;
    min-height: 392px;
    border: 1px solid rgba(234, 219, 189, 0.1);
    background: #040404;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.tmay20-sub-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.24)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.22));
    pointer-events: none;
}

.tmay20-sub-media img,
.tmay20-polaroid img,
.tmay20-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 50%;
}

.tmay20-paper-band {
    position: relative;
    padding: 34px 0 30px;
    color: #19120b;
    border-top: 1px solid rgba(32, 20, 12, 0.4);
    border-bottom: 1px solid rgba(32, 20, 12, 0.45);
    background:
        radial-gradient(circle at 12% 18%, rgba(73, 47, 28, 0.16), transparent 14rem),
        radial-gradient(circle at 86% 28%, rgba(73, 47, 28, 0.12), transparent 12rem),
        linear-gradient(180deg, rgba(228, 215, 195, 0.98), rgba(207, 190, 166, 0.98)),
        #d6c4ab;
}

.tmay20-paper-band::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.28;
    background:
        radial-gradient(circle at 10% 60%, rgba(62, 41, 24, 0.46) 0 6px, transparent 7px),
        radial-gradient(circle at 84% 22%, rgba(62, 41, 24, 0.34) 0 5px, transparent 6px),
        radial-gradient(circle at 92% 78%, rgba(62, 41, 24, 0.28) 0 48px, transparent 52px);
    pointer-events: none;
}

.tmay20-story-band {
    position: relative;
    color: #19120b;
    border-top: 1px solid rgba(32, 20, 12, 0.45);
    border-bottom: 1px solid rgba(32, 20, 12, 0.45);
    background:
        linear-gradient(180deg, rgba(16, 10, 6, 0.12), rgba(16, 10, 6, 0.08)),
        url('/themes/TheMorningAfterYou20/media/story-paper-bg.jpg') center / cover no-repeat,
        #d6c4ab;
}

.tmay20-story-band::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(62, 41, 24, 0.18), transparent 12%, transparent 88%, rgba(62, 41, 24, 0.16)),
        radial-gradient(circle at 14% 54%, rgba(62, 41, 24, 0.18) 0 7px, transparent 8px),
        radial-gradient(circle at 84% 22%, rgba(62, 41, 24, 0.16) 0 6px, transparent 7px),
        radial-gradient(circle at 92% 74%, rgba(62, 41, 24, 0.16) 0 58px, transparent 62px);
    opacity: 0.9;
    pointer-events: none;
}

.tmay20-story-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(430px, 528px) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    min-height: 262px;
    padding: 18px 0 22px;
}

.tmay20-story-visual {
    width: min(100%, 528px);
    margin-inline: auto;
    transform: translateY(16px) rotate(-1.5deg);
}

.tmay20-story-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(38, 20, 8, 0.24));
}

.tmay20-story-copy {
    max-width: 600px;
    padding: 26px 0;
}

.tmay20-story-prose {
    color: rgba(28, 20, 12, 0.92);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.18rem, 1.42vw, 1.6rem);
    line-height: 1.18;
}

.tmay20-story-prose p {
    margin: 0 0 1.15rem;
}

.tmay20-story-link {
    margin-top: 6px;
}

.tmay20-story-band .tmay20-paper-kicker {
    color: #000;
    font-weight: 700;
}

.tmay20-story-band .tmay20-story-copy h2 {
    color: #000;
    font-weight: 700;
}

.tmay20-story-band .tmay20-story-prose {
    color: #000;
    font-weight: 600;
}

.tmay20-story-band .tmay20-story-link,
.tmay20-story-band .tmay20-paper-link {
    color: #000;
    font-weight: 700;
}

.tmay20-story-band-author .tmay20-story-grid {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 62px;
    min-height: 0;
    padding: 24px 0;
}

.tmay20-story-band-author .tmay20-story-visual {
    width: min(100%, 328px);
    padding: 18px 0;
    transform: none;
}

.tmay20-story-band-author .tmay20-story-visual img {
    max-height: 456px;
}

.tmay20-story-band-author .tmay20-story-copy {
    padding: 18px 0;
}

.tmay20-story-band-author .tmay20-paper-kicker {
    color: #000;
    font-weight: 700;
}

.tmay20-story-band-author .tmay20-story-copy h2 {
    color: #000;
    font-weight: 700;
}

.tmay20-story-band-author .tmay20-story-prose {
    color: #000;
    font-weight: 600;
}

.tmay20-story-band-author .tmay20-story-link,
.tmay20-story-band-author .tmay20-paper-link {
    color: #000;
    font-weight: 700;
}

.tmay20-paper-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.tmay20-polaroid {
    width: min(100%, 312px);
    padding: 16px 16px 28px;
    margin-inline: auto;
    background:
        linear-gradient(180deg, rgba(173, 141, 107, 0.9), rgba(215, 196, 169, 0.96)),
        #d1b893;
    border: 1px solid rgba(89, 63, 37, 0.36);
    box-shadow:
        0 14px 28px rgba(55, 35, 20, 0.24),
        inset 0 0 0 1px rgba(255, 248, 236, 0.28);
    transform: rotate(-2deg);
}

.tmay20-polaroid img {
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(60, 40, 22, 0.46);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.tmay20-paper-copy {
    max-width: 560px;
}

.tmay20-paper-kicker {
    margin: 0 0 10px;
    color: #2f2012;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 0.98rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.tmay20-paper-copy h2 {
    color: #1c140c;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: 0.04em;
}

.tmay20-paper-lead,
.tmay20-paper-prose {
    color: rgba(28, 20, 12, 0.92);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.12rem, 1.35vw, 1.5rem);
    line-height: 1.32;
}

.tmay20-paper-lead {
    margin: 12px 0 1rem;
}

.tmay20-paper-prose p {
    margin: 0 0 1rem;
}

.tmay20-paper-prose h2,
.tmay20-paper-prose h3,
.tmay20-paper-prose h4 {
    display: none;
}

.tmay20-paper-link {
    display: inline-flex;
    margin-top: 4px;
    color: #1f160d;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.tmay20-feature-section {
    padding: 26px 0 42px;
    border-top: 1px solid rgba(234, 219, 189, 0.08);
    background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.98), rgba(2, 2, 2, 1)),
        #040404;
}

.tmay20-feature-section-gallery-surface {
    background:
        radial-gradient(circle at 50% 18%, rgba(220, 208, 197, 0.07), transparent 24rem),
        linear-gradient(180deg, rgba(6, 5, 4, 0.22), rgba(4, 4, 4, 0.3)),
        url('/themes/TheMorningAfterYou20/media/gallery-texture-bg.png') center top / cover no-repeat,
        #050403;
}

.tmay20-feature-section-posters,
.tmay20-feature-icon-section-posters {
    padding-top: 26px;
    padding-bottom: 54px;
}

.tmay20-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.tmay20-feature-grid-posters {
    gap: 28px 24px;
}

.tmay20-feature-card {
    text-align: center;
}

.tmay20-feature-card-link,
.tmay20-feature-icon-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, opacity 180ms ease;
}

.tmay20-feature-card-link:hover,
.tmay20-feature-card-link:focus-visible,
.tmay20-feature-icon-card-link:hover,
.tmay20-feature-icon-card-link:focus-visible {
    color: inherit;
    text-decoration: none;
    transform: translateY(-4px);
}

.tmay20-feature-card-link:focus-visible,
.tmay20-feature-icon-card-link:focus-visible {
    outline: 1px solid rgba(220, 208, 197, 0.42);
    outline-offset: 8px;
}

.tmay20-feature-card-poster .tmay20-feature-thumb {
    width: min(100%, 188px);
    margin: 0 auto;
    padding: 7px;
}

.tmay20-feature-card-poster .tmay20-feature-thumb img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center top;
    filter: brightness(1.06) saturate(0.96);
}

.tmay20-feature-card-poster .tmay20-feature-item-title {
    max-width: 220px;
    margin: 12px auto 0;
    color: rgba(220, 208, 197, 0.92);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 1.08rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tmay20-feature-card-poster p:not(.tmay20-feature-item-title) {
    max-width: 220px;
    margin-top: 8px;
    font-size: 1.04rem;
}

.tmay20-feature-card h3 {
    margin: 0 0 14px;
    color: rgba(220, 208, 197, 0.74);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 1.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tmay20-feature-thumb {
    padding: 8px;
    border: 1px solid rgba(173, 141, 107, 0.48);
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98)),
        #080808;
    box-shadow: inset 0 0 0 1px rgba(220, 208, 197, 0.08);
}

.tmay20-feature-thumb img {
    aspect-ratio: 16 / 10;
    filter: brightness(1.14) saturate(0.92);
}

.tmay20-feature-card:nth-child(2) .tmay20-feature-thumb img {
    object-position: 72% 38%;
}

.tmay20-feature-card:nth-child(3) .tmay20-feature-thumb img {
    object-position: 58% 54%;
}

.tmay20-feature-card:nth-child(4) .tmay20-feature-thumb img {
    object-position: 80% 48%;
}

.tmay20-feature-card p {
    max-width: 250px;
    margin: 12px auto 0;
    color: rgba(220, 208, 197, 0.82);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.2;
}

.tmay20-feature-card-link-text {
    display: inline-flex;
    margin-top: 12px;
    color: #b8a18a;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tmay20-devlog-section {
    padding: 44px 0 76px;
    border-top: 1px solid rgba(234, 219, 189, 0.1);
    border-bottom: 1px solid rgba(234, 219, 189, 0.08);
    background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.98), rgba(2, 2, 2, 1)),
        #040404;
}

.tmay20-devlog-section.tmay20-feature-section-gallery-surface {
    background:
        radial-gradient(circle at 50% 18%, rgba(220, 208, 197, 0.07), transparent 24rem),
        linear-gradient(180deg, rgba(6, 5, 4, 0.22), rgba(4, 4, 4, 0.3)),
        url('/themes/TheMorningAfterYou20/media/gallery-texture-bg.png') center top / cover no-repeat,
        #050403;
}

.tmay20-devlog-section .tmay20-sub-shell {
    width: min(980px, calc(100% - 140px));
}

.tmay20-devlog-head {
    margin-bottom: 30px;
}

.tmay20-devlog-head .tmay20-cards-kicker {
    color: #dcd0c5;
    font-size: clamp(1rem, 1.18vw, 1.18rem);
    line-height: 1.45;
}

.tmay20-devlog-intro {
    max-width: 880px;
    margin: 18px auto 0;
    color: #dcd0c5;
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.08rem, 1.25vw, 1.34rem);
    line-height: 1.45;
}

.tmay20-devlog-intro p {
    margin: 0 0 0.85rem;
}

.tmay20-devlog-intro p:last-child {
    margin-bottom: 0;
}

.tmay20-devlog-intro h1,
.tmay20-devlog-intro h2,
.tmay20-devlog-intro h3,
.tmay20-devlog-intro h4 {
    margin: 1.15em 0 0.55em;
    color: #dcd0c5;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tmay20-devlog-intro a {
    color: #eee2d5;
    text-decoration-color: rgba(238, 226, 213, 0.58);
    text-underline-offset: 0.16em;
}

.tmay20-devlog-intro strong {
    color: #f2e8dc;
}

.tmay20-devlog-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
}

.tmay20-devlog-card {
    flex: 0 1 calc(33.333% - 16px);
    width: calc(33.333% - 16px);
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(157, 138, 120, 0.62);
    color: #dcd0c5;
    background:
        linear-gradient(180deg, rgba(13, 12, 10, 0.98), rgba(4, 4, 4, 0.99)),
        #050505;
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(220, 208, 197, 0.035);
}

.tmay20-devlog-card-link {
    display: flex;
    height: 100%;
    color: inherit;
    text-decoration: none;
    flex-direction: column;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tmay20-devlog-card-link:hover,
.tmay20-devlog-card-link:focus-visible {
    color: inherit;
    text-decoration: none;
    transform: translateY(-4px);
}

.tmay20-devlog-card:has(.tmay20-devlog-card-link:hover),
.tmay20-devlog-card:has(.tmay20-devlog-card-link:focus-visible) {
    border-color: rgba(220, 208, 197, 0.78);
    box-shadow:
        0 22px 42px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(220, 208, 197, 0.09);
}

.tmay20-devlog-card-link:focus-visible {
    outline: 2px solid rgba(220, 208, 197, 0.88);
    outline-offset: -3px;
}

.tmay20-devlog-media {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(157, 138, 120, 0.46);
    background: #070707;
}

.tmay20-devlog-media::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.tmay20-devlog-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: brightness(0.88) contrast(1.06) saturate(0.82);
    transition: filter 220ms ease, transform 260ms ease;
}

.tmay20-devlog-card-link:hover .tmay20-devlog-media img,
.tmay20-devlog-card-link:focus-visible .tmay20-devlog-media img {
    filter: brightness(1.02) contrast(1.04) saturate(0.9);
    transform: scale(1.025);
}

.tmay20-devlog-date {
    position: absolute;
    right: 16px;
    bottom: 10px;
    left: 16px;
    z-index: 1;
    color: #9d8a78;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tmay20-devlog-content {
    display: flex;
    flex: 1 1 auto;
    padding: 18px 18px 20px;
    flex-direction: column;
}

.tmay20-devlog-date-inline {
    position: static;
    display: block;
    margin-bottom: 10px;
}

.tmay20-devlog-content h3 {
    margin: 0;
    color: #dcd0c5;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.tmay20-devlog-content p {
    margin: 14px 0 0;
    color: rgba(220, 208, 197, 0.78);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.28;
}

.tmay20-devlog-read-more {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 22px;
    color: #b8a18a;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .tmay20-devlog-section .tmay20-sub-shell {
        width: min(100% - 36px, 900px);
    }

    .tmay20-devlog-grid {
        gap: 22px;
    }

    .tmay20-devlog-card {
        flex-basis: calc(50% - 11px);
        width: calc(50% - 11px);
    }
}

@media (max-width: 640px) {
    .tmay20-devlog-section {
        padding: 34px 0 52px;
    }

    .tmay20-devlog-section .tmay20-sub-shell {
        width: min(100% - 28px, 560px);
    }

    .tmay20-devlog-grid {
        gap: 20px;
    }

    .tmay20-devlog-card {
        flex-basis: 100%;
        width: 100%;
    }

    .tmay20-devlog-content h3 {
        font-size: 1.2rem;
    }

    .tmay20-devlog-content p {
        font-size: 1.14rem;
    }
}

.tmay20-feature-icon-section {
    padding: 18px 0 64px;
    border-top: 1px solid rgba(234, 219, 189, 0.08);
    background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.99), rgba(2, 2, 2, 1)),
        #030303;
}

.tmay20-feature-icon-section-title {
    margin: 0;
    color: #9d8a78;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tmay20-feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px 28px;
    align-items: start;
}

.tmay20-feature-icon-card {
    text-align: center;
}

.tmay20-feature-icon-media {
    width: min(100%, 190px);
    min-height: 170px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
}

.tmay20-feature-icon-media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 182px;
    object-fit: contain;
    filter: brightness(1.04) contrast(1.04) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.26));
}

.tmay20-feature-icon-kicker,
.tmay20-feature-icon-title,
.tmay20-feature-icon-link {
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    text-transform: uppercase;
}

.tmay20-feature-icon-kicker,
.tmay20-feature-icon-title {
    color: var(--tmay-bone);
}

.tmay20-feature-icon-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
}

.tmay20-feature-icon-title {
    margin: 0 0 0.4rem;
    font-size: 0.94rem;
    letter-spacing: 0.06em;
}

.tmay20-feature-icon-underline {
    display: block;
    width: min(84px, 52%);
    height: 5.5px;
    margin: 2px auto 14px;
    background: url('/themes/TheMorningAfterYou20/media/menu-underline.png') center / 100% 100% no-repeat;
    opacity: 0.96;
}

.tmay20-feature-icon-body {
    max-width: 255px;
    margin: 0 auto;
    color: rgba(220, 208, 197, 0.84);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.14rem, 1.18vw, 1.36rem);
    line-height: 1.18;
}

.tmay20-feature-icon-link {
    display: inline-flex;
    margin-top: 10px;
    color: #b8a18a;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.tmay20-feature-icon-link-label {
    justify-content: center;
}

.tmay20-paper-grid.is-reversed {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.tmay20-paper-grid.is-reversed .tmay20-polaroid {
    order: 2;
}

.tmay20-richtext-section {
    padding: 42px 0 52px;
    border-top: 1px solid rgba(234, 219, 189, 0.08);
    background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.98), rgba(6, 6, 6, 1)),
        #040404;
}

.tmay20-richtext-shell {
    max-width: 840px;
}

.tmay20-richtext-title,
.tmay20-cards-title {
    margin: 0;
    color: var(--tmay-bone);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tmay20-richtext-kicker,
.tmay20-cards-kicker {
    margin: 10px 0 0;
    color: #9d8a78;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tmay20-richtext-copy {
    margin-top: 22px;
    color: #dcd0c5;
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.08rem, 1.25vw, 1.4rem);
    line-height: 1.45;
}

.tmay20-richtext-copy p {
    margin: 0 0 1rem;
}

.tmay20-richtext-section.tmay20-richtext-gallery-surface {
    background:
        radial-gradient(circle at 50% 18%, rgba(220, 208, 197, 0.07), transparent 24rem),
        linear-gradient(180deg, rgba(6, 5, 4, 0.22), rgba(4, 4, 4, 0.3)),
        url('/themes/TheMorningAfterYou20/media/gallery-texture-bg.png') center top / cover no-repeat,
        #050403;
}

.tmay20-devlog-article {
    padding: 48px 0 82px;
}

.tmay20-devlog-article .tmay20-devlog-article-shell {
    width: min(980px, calc(100% - 140px));
    max-width: none;
}

.tmay20-devlog-article .tmay20-richtext-title {
    margin-bottom: 24px;
    color: #9d8a78;
    font-size: clamp(1.7rem, 2.4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: 0.055em;
}

.tmay20-devlog-article .tmay20-richtext-kicker {
    margin: 0 0 28px;
    color: #9d8a78;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
}

.tmay20-devlog-article .tmay20-richtext-copy {
    margin-top: 0;
    color: #dcd0c5;
    font-size: clamp(1.14rem, 1.34vw, 1.4rem);
    line-height: 1.32;
}

.tmay20-devlog-article .tmay20-richtext-copy h1,
.tmay20-devlog-article .tmay20-richtext-copy h2,
.tmay20-devlog-article .tmay20-richtext-copy h3,
.tmay20-devlog-article .tmay20-richtext-copy h4 {
    margin: 1.3em 0 0.58em;
    color: #9d8a78;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.tmay20-devlog-article .tmay20-richtext-copy h1:first-child,
.tmay20-devlog-article .tmay20-richtext-copy h2:first-child,
.tmay20-devlog-article .tmay20-richtext-copy h3:first-child,
.tmay20-devlog-article .tmay20-richtext-copy h4:first-child {
    margin-top: 0;
}

.tmay20-devlog-article .tmay20-richtext-copy h1,
.tmay20-devlog-article .tmay20-richtext-copy h2 {
    font-size: clamp(1.55rem, 2.15vw, 2.15rem);
}

.tmay20-devlog-article .tmay20-richtext-copy h3 {
    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.tmay20-devlog-article .tmay20-richtext-copy h4 {
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
}

.tmay20-devlog-article .tmay20-richtext-copy p {
    margin: 0 0 1.05rem;
}

.tmay20-devlog-article .tmay20-richtext-copy a {
    color: #c1a98e;
    text-decoration-color: rgba(193, 169, 142, 0.56);
    text-underline-offset: 0.16em;
}

.tmay20-devlog-article .tmay20-richtext-copy strong {
    color: #eee2d5;
    font-weight: 600;
}

.tmay20-devlog-article .tmay20-richtext-copy blockquote {
    margin: 1.5rem 0;
    padding: 0.2rem 0 0.2rem 1.25rem;
    color: rgba(220, 208, 197, 0.88);
    border-left: 2px solid rgba(157, 138, 120, 0.72);
}

.tmay20-devlog-article .tmay20-richtext-copy ul,
.tmay20-devlog-article .tmay20-richtext-copy ol {
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.tmay20-devlog-article .tmay20-richtext-copy img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
    border: 1px solid rgba(157, 138, 120, 0.5);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

@media (max-width: 980px) {
    .tmay20-devlog-article .tmay20-devlog-article-shell {
        width: min(100% - 36px, 900px);
    }
}

@media (max-width: 640px) {
    .tmay20-devlog-article {
        padding: 34px 0 56px;
    }

    .tmay20-devlog-article .tmay20-devlog-article-shell {
        width: min(100% - 28px, 560px);
    }

    .tmay20-devlog-article .tmay20-richtext-copy {
        font-size: 1.16rem;
        line-height: 1.38;
    }
}

.tmay20-cards-head {
    margin-bottom: 24px;
    text-align: center;
}

.tmay20-feature-item-title {
    color: var(--tmay-bone);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tmay20-gallery-section {
    padding: 34px 0 48px;
    border-top: 1px solid rgba(234, 219, 189, 0.08);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(2, 2, 2, 1)),
        #040404;
}

.tmay20-gallery-section-collage {
    padding: 152px 0 64px;
    border-top: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(220, 208, 197, 0.05), transparent 22rem),
        radial-gradient(circle at 18% 76%, rgba(87, 65, 44, 0.12), transparent 18rem),
        linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(2, 2, 2, 1)),
        #040404;
}

body.tmay20-theme.tmay20-gallery-lead-page .tmay20-gallery-section-collage {
    padding-top: 72px;
    padding-bottom: 56px;
    background:
        radial-gradient(circle at 50% 18%, rgba(220, 208, 197, 0.07), transparent 24rem),
        linear-gradient(180deg, rgba(6, 5, 4, 0.22), rgba(4, 4, 4, 0.3)),
        url('/themes/TheMorningAfterYou20/media/gallery-texture-bg.png') center top / cover no-repeat,
        #050403;
}

body.tmay20-theme.tmay20-gallery-lead-page .tmay20-gallery-collage-head {
    display: none;
}

body.tmay20-theme.tmay20-gallery-lead-page .tmay20-gallery-collage-stage,
body.tmay20-theme.tmay20-gallery-lead-page .tmay20-gallery-grid-extended {
    width: min(100%, 920px);
    margin-inline: auto;
    padding-inline: 26px;
}

body.tmay20-theme.tmay20-gallery-lead-page .tmay20-gallery-collage-stage {
    gap: 26px 24px;
}

.tmay20-gallery-collage-head {
    max-width: 580px;
    margin: 0 auto 34px;
    text-align: center;
}

.tmay20-gallery-collage-title {
    margin: 0;
    color: var(--tmay-bone);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tmay20-gallery-collage-kicker {
    margin: 6px 0 0;
    color: #d9cfbf;
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    line-height: 1.2;
}

.tmay20-gallery-collage-copy {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(220, 208, 197, 0.84);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.08rem, 1.2vw, 1.32rem);
    line-height: 1.4;
}

.tmay20-gallery-collage-copy p {
    margin: 0 0 0.9rem;
}

.tmay20-gallery-collage-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 28px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    align-items: start;
}

.tmay20-gallery-collage-card,
.tmay20-gallery-grid-card {
    margin: 0;
}

.tmay20-gallery-lightbox-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.tmay20-gallery-lightbox-trigger img {
    display: block;
}

.tmay20-gallery-lightbox-trigger:focus-visible {
    outline: 2px solid rgba(234, 219, 189, 0.92);
    outline-offset: 6px;
}

.tmay20-gallery-collage-card {
    position: relative;
    width: 100%;
}

.tmay20-gallery-collage-card img,
.tmay20-gallery-grid-card img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
}

.tmay20-gallery-collage-card-1 {
    top: auto;
    left: auto;
    width: auto;
    transform: rotate(-8deg);
}

.tmay20-gallery-collage-card-2 {
    top: auto;
    left: auto;
    width: auto;
    z-index: auto;
    transform: rotate(1deg);
}

.tmay20-gallery-collage-card-3 {
    top: auto;
    right: auto;
    width: auto;
    transform: rotate(8deg);
}

.tmay20-gallery-collage-card-4 {
    top: auto;
    left: auto;
    width: auto;
    transform: rotate(-6deg);
}

.tmay20-gallery-collage-card-5 {
    top: auto;
    right: auto;
    width: auto;
    transform: rotate(7deg);
}

.tmay20-gallery-collage-card-6 {
    top: auto;
    left: auto;
    width: auto;
    z-index: auto;
    transform: rotate(-2deg);
}

.tmay20-gallery-grid-extended {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 30px;
    margin-top: 28px;
}

.tmay20-gallery-grid-extended .tmay20-gallery-grid-card {
    position: relative;
    transform-origin: center center;
}

.tmay20-gallery-grid-extended .tmay20-gallery-grid-card-angle-1 { transform: rotate(-6deg); }
.tmay20-gallery-grid-extended .tmay20-gallery-grid-card-angle-2 { transform: rotate(4deg); }
.tmay20-gallery-grid-extended .tmay20-gallery-grid-card-angle-3 { transform: rotate(-2deg); }
.tmay20-gallery-grid-extended .tmay20-gallery-grid-card-angle-4 { transform: rotate(7deg); }
.tmay20-gallery-grid-extended .tmay20-gallery-grid-card-angle-5 { transform: rotate(-5deg); }
.tmay20-gallery-grid-extended .tmay20-gallery-grid-card-angle-6 { transform: rotate(3deg); }
.tmay20-gallery-grid-extended .tmay20-gallery-grid-card-angle-7 { transform: rotate(-7deg); }
.tmay20-gallery-grid-extended .tmay20-gallery-grid-card-angle-8 { transform: rotate(2deg); }

.tmay20-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.tmay20-gallery-card {
    margin: 0;
    padding: 10px 10px 14px;
    background:
        linear-gradient(180deg, rgba(164, 135, 104, 0.92), rgba(214, 194, 166, 0.96)),
        #d1b893;
    border: 1px solid rgba(89, 63, 37, 0.36);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.22),
        inset 0 0 0 1px rgba(255, 248, 236, 0.24);
}

.tmay20-gallery-card:nth-child(1) { transform: rotate(-5deg); }
.tmay20-gallery-card:nth-child(2) { transform: rotate(2deg); }
.tmay20-gallery-card:nth-child(3) { transform: rotate(6deg); }
.tmay20-gallery-card:nth-child(4) { transform: rotate(-3deg); }
.tmay20-gallery-card:nth-child(5) { transform: rotate(4deg); }
.tmay20-gallery-card:nth-child(6) { transform: rotate(-6deg); }

.tmay20-gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid rgba(60, 40, 22, 0.46);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.tmay20-gallery-card figcaption {
    margin-top: 10px;
    text-align: center;
    display: none;
}

.tmay20-gallery-card strong,
.tmay20-gallery-card span {
    display: block;
    color: #1c140c;
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    text-transform: uppercase;
}

.tmay20-gallery-card strong {
    font-size: 0.96rem;
    letter-spacing: 0.05em;
}

.tmay20-gallery-card span {
    margin-top: 4px;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
}

.tmay20-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
}

.tmay20-lightbox[hidden] {
    display: none;
}

.tmay20-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
}

.tmay20-lightbox-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    width: min(100% - 48px, 1400px);
    height: 100%;
    margin: 0 auto;
    padding: 84px 0 38px;
    gap: 18px;
}

.tmay20-lightbox-figure {
    position: relative;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    justify-self: center;
    text-align: center;
}

.tmay20-lightbox-figure img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 170px);
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.4));
}

.tmay20-lightbox-caption {
    max-width: 760px;
    margin: 16px auto 0;
    color: rgba(220, 208, 197, 0.9);
    font-family: "Adobe Garamond Pro", "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.1rem;
    line-height: 1.35;
}

.tmay20-lightbox-close,
.tmay20-lightbox-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(234, 219, 189, 0.24);
    color: var(--tmay-bone);
    background: rgba(8, 8, 8, 0.86);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.tmay20-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.tmay20-lightbox-close-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.tmay20-lightbox-close-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
}

.tmay20-lightbox-nav {
    width: 58px;
    height: 78px;
    font-size: 2.4rem;
    cursor: pointer;
}

.tmay20-lightbox-close:hover,
.tmay20-lightbox-nav:hover {
    color: #f1e6d3;
    border-color: rgba(234, 219, 189, 0.44);
}

.tmay20-lightbox-close:focus-visible,
.tmay20-lightbox-nav:focus-visible,
.tmay20-lightbox-backdrop:focus-visible {
    outline: 2px solid rgba(234, 219, 189, 0.92);
    outline-offset: 3px;
}

.tmay20-lightbox-nav[disabled] {
    opacity: 0.34;
    cursor: default;
}

.tmay20-footer {
    padding: 58px 0 28px;
    color: rgba(220, 208, 197, 0.74);
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.86), rgba(6, 6, 6, 0.98)),
        #050505;
    border-top: 1px solid rgba(234, 219, 189, 0.08);
}

.tmay20-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.55fr));
    gap: 38px;
}

.tmay20-footer-grid h4 {
    margin: 0 0 14px;
    color: var(--tmay-bone);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tmay20-footer-grid a,
.tmay20-footer-grid span {
    display: block;
    margin-bottom: 8px;
    color: rgba(220, 208, 197, 0.76);
    text-decoration: none;
}

.tmay20-footer-grid a:hover {
    color: #f1e6d3;
}

.tmay20-footer-title {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--tmay-bone);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: clamp(1.35rem, 2vw, 1.72rem);
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.tmay20-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 18px;
    color: rgba(220, 208, 197, 0.48);
    font-family: "Trajan Pro 3", "Trajan Pro", "Cinzel", serif;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-top: 1px solid rgba(234, 219, 189, 0.08);
}

@media (max-width: 980px) {
    .tmay20-container,
    .tmay20-footer-grid,
    .tmay20-footer-bottom {
        width: min(100% - 36px, 1640px);
    }

    .tmay20-menu-toggle {
        display: block;
    }

    .tmay20-nav {
        grid-template-columns: 1fr auto;
        gap: 18px;
        width: min(100% - 36px, 980px);
    }

    .tmay20-brand {
        transform: none;
    }

    .tmay20-header::after {
        right: 18px;
        left: 18px;
    }

    .tmay20-menu {
        position: absolute;
        top: 78px;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 20px;
        padding: 18px 20px;
        border: 1px solid rgba(234, 219, 189, 0.12);
        background: rgba(10, 10, 10, 0.96);
        box-shadow: var(--tmay-shadow);
        transform: none;
    }

    .tmay20-menu.is-open {
        display: flex;
    }

    .tmay20-hero {
        --tmay20-hero-shell-width: min(100% - 36px, 980px);
    }

    .tmay20-hero-inner {
        width: var(--tmay20-hero-shell-width);
        padding-top: 18px;
    }

    .tmay20-hero-inner-compact {
        padding-top: 14px;
        padding-bottom: 24px;
    }

    .tmay20-hero-copy {
        width: min(45%, 440px);
        min-width: 0;
        margin-left: 0;
    }

    .tmay20-hero-copy-page {
        width: min(100%, 540px);
        min-width: 0;
    }

    .tmay20-footer-grid {
        grid-template-columns: 1fr;
    }

    .tmay20-footer-bottom {
        flex-direction: column;
    }

    .tmay20-sub-shell {
        width: min(100% - 36px, 1180px);
    }

    .tmay20-page-sections-overlap {
        margin-top: clamp(-470px, -37vh, -310px);
    }

    body.tmay20-theme.tmay20-page-with-sections .tmay20-hero-inner {
        padding-bottom: 24px;
    }

    body.tmay20-theme.tmay20-hero-only-page .tmay20-hero-inner {
        padding-bottom: 24px;
    }

    body.tmay20-theme.tmay20-page-with-sections .tmay20-hero-inner-compact {
        padding-bottom: 16px;
    }

    body.tmay20-theme.tmay20-hero-only-page .tmay20-hero-inner-compact {
        padding-bottom: 16px;
    }

    body.tmay20-theme.tmay20-page-with-sections .tmay20-page-sections-overlap {
        margin-top: 0;
    }

    .tmay20-page-sections-overlap .tmay20-sub-shell {
        width: min(100% - 36px, 980px);
    }

    .tmay20-sub-hero {
        padding-top: 136px;
    }

    .tmay20-sub-hero-grid,
    .tmay20-paper-grid,
    .tmay20-story-grid,
    .tmay20-feature-grid,
    .tmay20-gallery-grid {
        grid-template-columns: 1fr;
    }

    .tmay20-gallery-section-collage {
        padding-top: 138px;
        padding-bottom: 48px;
    }

    body.tmay20-theme.tmay20-gallery-lead-page .tmay20-gallery-section-collage {
        padding-top: 56px;
        padding-bottom: 44px;
    }

    .tmay20-gallery-collage-stage {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        height: auto;
        max-width: 760px;
    }

    .tmay20-gallery-collage-card {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: auto;
    }

    .tmay20-gallery-collage-card-1 { transform: rotate(-5deg); }
    .tmay20-gallery-collage-card-2 { transform: rotate(3deg); }
    .tmay20-gallery-collage-card-3 { transform: rotate(6deg); }
    .tmay20-gallery-collage-card-4 { transform: rotate(-4deg); }
    .tmay20-gallery-collage-card-5 { transform: rotate(5deg); }
    .tmay20-gallery-collage-card-6 { transform: rotate(-2deg); }

    .tmay20-gallery-grid-extended {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tmay20-lightbox-dialog {
        width: min(100% - 36px, 1120px);
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        padding-top: 86px;
    }

    .tmay20-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .tmay20-lightbox-nav-prev {
        left: 0;
    }

    .tmay20-lightbox-nav-next {
        right: 0;
    }

    .tmay20-feature-icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tmay20-sub-copy,
    .tmay20-paper-copy {
        max-width: none;
    }

    .tmay20-story-copy {
        max-width: none;
        padding-top: 0;
    }

    .tmay20-story-band-author .tmay20-story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 22px 0;
        justify-items: center;
    }

    .tmay20-story-band-author .tmay20-story-visual {
        width: min(100%, 300px);
        padding: 0;
    }

    .tmay20-story-band-author .tmay20-story-copy {
        width: min(100%, 620px);
        margin: 0 auto;
        padding: 0;
    }

    body.tmay20-theme.tmay20-author-lead-page .tmay20-page-sections-overlap {
        margin-top: 0;
    }

    .tmay20-sub-media {
        min-height: 320px;
    }

    .tmay20-feature-card p {
        max-width: none;
    }

    .tmay20-feature-grid-posters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1500px) {
    body.tmay20-theme:not(.tmay20-home-page) .tmay20-hero-media {
        background-position: 74% 48%;
        background-size: cover;
    }

    body.tmay20-theme.tmay20-home-page .tmay20-hero-media {
        background-position: center top;
        background-size: auto 138%;
    }
}

@media (min-width: 2100px) {
    body.tmay20-theme:not(.tmay20-home-page) .tmay20-hero-media {
        background-position: 74% 70%;
    }
}

@media (min-width: 641px) and (max-width: 1499px) {
    body.tmay20-theme.tmay20-home-page .tmay20-hero-media {
        background-position: center top;
        background-size: auto 136%;
    }
}

.tmay20-hero-story p {
    white-space: normal;
    overflow-wrap: break-word;
}

@media (max-height: 980px) and (min-width: 981px) {
    .tmay20-page-sections-overlap {
        margin-top: clamp(-180px, -15vh, -96px);
    }
}

@media (max-height: 980px) and (min-width: 981px) {
    body.tmay20-theme.tmay20-page-with-sections .tmay20-page-sections-overlap {
        margin-top: 0;
    }
}

@media (max-height: 980px) and (min-width: 981px) {
    body.tmay20-theme.tmay20-author-lead-page .tmay20-page-sections-overlap {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    body.tmay20-theme.tmay20-page {
        padding-top: 88px;
    }

    .tmay20-hero {
        --tmay20-hero-shell-width: min(100% - 28px, 980px);
    }

    .tmay20-brand img {
        min-width: 180px;
    }

    .tmay20-header::after {
        bottom: 18px;
    }

    .tmay20-hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    body.tmay20-theme.tmay20-home-page .tmay20-hero {
        min-height: auto;
    }

    .tmay20-hero-inner,
    .tmay20-hero-copy {
        display: contents;
    }

    .tmay20-hero-copy-main {
        order: 1;
        position: relative;
        z-index: 1;
        width: min(100% - 28px, 980px);
        margin: 0 auto;
        padding-top: 16px;
        background: #020202;
    }

    .tmay20-hero-inner {
        padding-top: 16px;
        padding-bottom: 64px;
    }

    .tmay20-hero-media,
    .tmay20-hero-shade {
        width: var(--tmay20-hero-shell-width);
    }

    .tmay20-hero-media {
        order: 2;
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        min-height: clamp(220px, 52vw, 340px);
        margin: 18px auto 0;
        transform: none;
        background:
            var(--tmay20-hero-mobile-image, var(--tmay20-hero-image, url('/themes/TheMorningAfterYou20/media/hero-bg.jpg'))) right center / contain no-repeat,
            #050505;
    }

    body.tmay20-theme.tmay20-home-page .tmay20-hero-media {
        background-position: right center;
        background-size: contain;
    }

    .tmay20-hero-shade {
        display: none;
    }

    .tmay20-hero-inner-compact {
        padding-top: 12px;
        padding-bottom: 20px;
    }

    .tmay20-hero-story {
        font-size: 1.14rem;
    }

    .tmay20-hero-actions {
        order: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: min(100% - 28px, 492px);
        max-width: none;
        margin: 18px auto 36px;
        gap: 10px;
    }

    .tmay20-hero-buttons {
        flex: 0 0 100%;
        width: 100%;
        max-width: calc(100% - 28px);
        margin: 0 auto;
    }

    .tmay20-hero-socials {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .tmay20-hero-social-link {
        width: 52px;
    }

    .tmay20-sub-shell {
        width: min(100% - 28px, 1180px);
    }

    .tmay20-page-sections-overlap .tmay20-sub-shell {
        width: min(100% - 28px, 980px);
    }

    .tmay20-gallery-section-collage {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    body.tmay20-theme.tmay20-gallery-lead-page .tmay20-gallery-section-collage {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .tmay20-gallery-collage-stage,
    .tmay20-gallery-grid-extended {
        grid-template-columns: 1fr;
    }

    .tmay20-lightbox-dialog {
        width: min(100% - 20px, 960px);
        padding-top: 82px;
        padding-bottom: 22px;
    }

    .tmay20-lightbox-close {
        top: 16px;
        right: 4px;
        width: 46px;
        height: 46px;
    }

    .tmay20-lightbox-nav {
        width: 48px;
        height: 64px;
        font-size: 2rem;
    }

    .tmay20-lightbox-nav-prev {
        left: 2px;
    }

    .tmay20-lightbox-nav-next {
        right: 2px;
    }

    .tmay20-page-sections-overlap {
        margin-top: 0;
    }

    body.tmay20-theme.tmay20-page-with-sections .tmay20-hero-inner {
        padding-bottom: 18px;
    }

    body.tmay20-theme.tmay20-hero-only-page .tmay20-hero-inner {
        padding-bottom: 18px;
    }

    body.tmay20-theme.tmay20-page-with-sections .tmay20-hero-inner-compact {
        padding-bottom: 14px;
    }

    body.tmay20-theme.tmay20-hero-only-page .tmay20-hero-inner-compact {
        padding-bottom: 14px;
    }

    .tmay20-sub-hero {
        padding-top: 118px;
        padding-bottom: 28px;
    }

    .tmay20-sub-title {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .tmay20-hero-text-title {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
    }

    .tmay20-sub-intro {
        font-size: 1.12rem;
    }

    .tmay20-sub-buttons {
        width: min(100%, 492px);
    }

    .tmay20-sub-media {
        min-height: 260px;
    }

    .tmay20-paper-band {
        padding: 24px 0;
    }

    .tmay20-story-grid,
    .tmay20-feature-icon-grid {
        grid-template-columns: 1fr;
    }

    .tmay20-story-grid {
        gap: 22px;
        padding: 18px 0 24px;
    }

    .tmay20-story-band-author .tmay20-story-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 18px 0;
        justify-items: center;
    }

    .tmay20-story-visual {
        width: min(100%, 432px);
        transform: none;
    }

    .tmay20-story-band-author .tmay20-story-visual {
        width: min(100%, 272px);
    }

    .tmay20-story-band:not(.tmay20-story-band-author) .tmay20-story-visual {
        width: min(100%, 405px);
    }

    .tmay20-story-band-author .tmay20-story-copy {
        width: 100%;
        padding: 0;
    }

    .tmay20-story-band-author .tmay20-paper-kicker {
        font-size: 1.02rem;
    }

    .tmay20-story-band-author .tmay20-story-copy h2 {
        font-size: 2.16rem;
    }

    .tmay20-story-band-author .tmay20-story-prose {
        font-size: 1.2rem;
        line-height: 1.28;
    }

    .tmay20-story-band-author .tmay20-story-link,
    .tmay20-story-band-author .tmay20-paper-link {
        font-size: 1.02rem;
    }

    .tmay20-paper-copy h2 {
        font-size: 2rem;
    }

    .tmay20-paper-lead,
    .tmay20-paper-prose,
    .tmay20-feature-card p,
    .tmay20-feature-icon-body,
    .tmay20-story-prose {
        font-size: 1.05rem;
    }

    .tmay20-feature-card h3 {
        font-size: 1.36rem;
    }

    .tmay20-feature-grid-posters {
        grid-template-columns: 1fr;
    }
}
