/* ============================================================
   MUJUN.ART - Crystalline Journal of Visual Contradiction
   Maximalist Editorial Design System
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    --foundation-cream: #F5EDE3;
    --charcoal-plum: #2E2433;
    --rose-quartz: #D4A0A0;
    --amethyst-haze: #B8A9C9;
    --honeyed-peach: #E8C8A0;
    --pale-lilac: #E4D8EC;
    --calcite: #FAF7F2;
    --aged-copper: #8A7260;

    --font-display: 'Roboto Slab', serif;
    --font-body: 'Source Serif 4', serif;
    --font-accent: 'Barlow Condensed', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal-plum);
    background-color: var(--foundation-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Chevron Pattern Background --- */
#chevron-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    background-image: repeating-linear-gradient(
        30deg,
        transparent,
        transparent 18px,
        var(--amethyst-haze) 18px,
        var(--amethyst-haze) 20px
    );
}

/* --- Crystalline Facet Overlay --- */
#facet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 800ms ease-out;
}

#facet-overlay.visible {
    opacity: 0.15;
}

/* --- Navigation --- */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    height: 72px;
    transition: height 400ms cubic-bezier(0.16, 1, 0.3, 1), background-color 400ms ease;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    background-color: rgba(245, 237, 227, 0.75);
}

#main-nav.scrolled {
    height: 48px;
}

#main-nav.scrolled .nav-links {
    opacity: 0;
    pointer-events: none;
}

#main-nav.scrolled:hover {
    height: 72px;
}

#main-nav.scrolled:hover .nav-links {
    opacity: 1;
    pointer-events: auto;
}

.nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--charcoal-plum);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    transition: opacity 300ms ease;
}

.nav-link {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal-plum);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--rose-quartz);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--rose-quartz);
}

/* --- Spreads (Sections) --- */
.spread {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.spread-cream {
    background-color: var(--foundation-cream);
}

.spread-lilac {
    background-color: var(--pale-lilac);
}

.spread-dark {
    background-color: var(--charcoal-plum);
}

/* --- Spread Grid System --- */
.spread-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 1px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    min-height: 100vh;
    align-content: center;
    position: relative;
}

/* Grid column lines (crystal facet edges) */
.spread-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 100%;
    background-image: repeating-linear-gradient(
        to right,
        transparent,
        transparent calc((100% - 11px) / 12),
        rgba(180, 160, 190, 0.25) calc((100% - 11px) / 12),
        rgba(180, 160, 190, 0.25) calc((100% - 11px) / 12 + 1px)
    );
    pointer-events: none;
    z-index: 0;
}

/* --- Photo Panels --- */
.photo-panel {
    position: relative;
    overflow: hidden;
    filter: saturate(0.8);
}

.photo-warm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 237, 227, 0.12);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 2;
}

.photo-refraction {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 200ms ease;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.photo-panel:hover .photo-refraction {
    opacity: 1;
}

/* Prismatic hover border effect */
.photo-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    opacity: 0;
    transition: opacity 400ms ease;
    z-index: 4;
    background: conic-gradient(
        from 0deg,
        var(--rose-quartz),
        var(--amethyst-haze),
        var(--honeyed-peach),
        var(--pale-lilac),
        var(--rose-quartz)
    ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.photo-panel:hover::after {
    opacity: 1;
}

/* --- HERO SPREAD --- */
.hero-grid {
    grid-template-rows: 1fr;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
}

.hero-title-block {
    grid-column: 1 / 7;
    position: relative;
    z-index: 10;
}

.crystal-shatter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 200%;
    z-index: 5;
    pointer-events: none;
}

.shard {
    position: absolute;
    background-color: var(--rose-quartz);
    transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 900ms ease;
}

.shard-1 {
    width: 40%;
    height: 35%;
    top: 5%;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 10% 90%);
}

.shard-2 {
    width: 45%;
    height: 30%;
    top: 0;
    right: 0;
    clip-path: polygon(15% 0, 100% 5%, 95% 95%, 0 100%);
}

.shard-3 {
    width: 35%;
    height: 40%;
    top: 30%;
    left: 5%;
    clip-path: polygon(5% 0, 90% 10%, 100% 100%, 0 85%);
}

.shard-4 {
    width: 40%;
    height: 35%;
    top: 35%;
    right: 5%;
    clip-path: polygon(10% 5%, 100% 0, 95% 90%, 5% 100%);
}

.shard-5 {
    width: 50%;
    height: 30%;
    bottom: 5%;
    left: 10%;
    clip-path: polygon(0 10%, 100% 0, 90% 100%, 15% 95%);
}

.shard-6 {
    width: 35%;
    height: 25%;
    bottom: 0;
    right: 10%;
    clip-path: polygon(10% 0, 95% 15%, 100% 100%, 0 90%);
}

.crystal-shatter.shattered .shard-1 {
    transform: translate(-80px, -60px) rotate(-15deg);
    opacity: 0;
}

.crystal-shatter.shattered .shard-2 {
    transform: translate(90px, -50px) rotate(12deg);
    opacity: 0;
}

.crystal-shatter.shattered .shard-3 {
    transform: translate(-100px, 20px) rotate(-8deg);
    opacity: 0;
}

.crystal-shatter.shattered .shard-4 {
    transform: translate(110px, 30px) rotate(18deg);
    opacity: 0;
}

.crystal-shatter.shattered .shard-5 {
    transform: translate(-60px, 80px) rotate(-20deg);
    opacity: 0;
}

.crystal-shatter.shattered .shard-6 {
    transform: translate(70px, 90px) rotate(10deg);
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--charcoal-plum);
    opacity: 0;
    transition: opacity 600ms ease 900ms;
    position: relative;
    z-index: 10;
}

.hero-title.revealed {
    opacity: 1;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: clamp(0.75rem, 1.4vw, 1rem);
    letter-spacing: 0.2em;
    color: var(--aged-copper);
    margin-top: 24px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 600ms ease 1300ms, transform 600ms ease 1300ms;
    text-transform: uppercase;
}

.hero-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-image-block {
    grid-column: 7 / 13;
    position: relative;
}

.hero-photo {
    width: 100%;
    height: 70vh;
    background: linear-gradient(135deg, var(--rose-quartz) 0%, var(--amethyst-haze) 50%, var(--honeyed-peach) 100%);
    clip-path: polygon(8% 0, 100% 0, 100% 92%, 95% 100%, 0 100%, 0 12%);
}

/* --- MANIFESTO SPREAD --- */
.manifesto-grid {
    grid-template-rows: auto;
    align-items: start;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.manifesto-image {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    height: 80vh;
    background: linear-gradient(160deg, var(--amethyst-haze) 0%, var(--rose-quartz) 40%, var(--honeyed-peach) 100%);
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 88%);
    transform: translateX(-5%);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.manifesto-image.in-view {
    transform: translateX(0);
    opacity: 1;
}

.manifesto-headline-overlap {
    grid-column: 5 / 12;
    grid-row: 1;
    align-self: start;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.spread-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--charcoal-plum);
}

.spread-headline-secondary {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    color: var(--charcoal-plum);
    margin-bottom: 32px;
}

.spread-headline-light {
    color: var(--calcite);
}

.manifesto-text {
    grid-column: 8 / 12;
    grid-row: 2;
    padding-top: 40px;
}

.manifesto-text p,
.gallery-text p,
.crystal-body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.65;
    max-width: 38ch;
    margin-bottom: 1.2em;
    color: var(--charcoal-plum);
}

.manifesto-text p + p,
.gallery-text p + p,
.crystal-body p + p {
    text-indent: 2em;
}

/* --- Faceted Drop Cap --- */
.drop-cap-block {
    text-indent: 0 !important;
}

.faceted-drop-cap {
    float: left;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 0.8;
    color: var(--charcoal-plum);
    background-color: var(--rose-quartz);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-right: 12px;
    margin-bottom: 4px;
    shape-outside: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* --- GALLERY SPREAD --- */
.gallery-grid {
    grid-template-rows: auto;
    align-items: start;
    padding-top: 120px;
    padding-bottom: 120px;
}

.gallery-text {
    grid-column: 1 / 6;
    grid-row: 1;
    padding-right: 40px;
}

.gallery-image {
    grid-column: 7 / 13;
    grid-row: 1;
    height: 65vh;
    background: linear-gradient(145deg, var(--honeyed-peach) 0%, var(--rose-quartz) 60%, var(--amethyst-haze) 100%);
    transform: translateX(5%);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.gallery-image.in-view {
    transform: translateX(0);
    opacity: 1;
}

.faceted-panel-1 {
    clip-path: polygon(5% 0, 100% 3%, 97% 100%, 0 95%);
}

.gallery-image-small {
    grid-column: 7 / 10;
    grid-row: 2;
    height: 30vh;
    margin-top: 24px;
    background: linear-gradient(170deg, var(--pale-lilac) 0%, var(--rose-quartz) 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 200ms, opacity 700ms ease 200ms;
}

.gallery-image-small.in-view {
    transform: translateY(0);
    opacity: 1;
}

.faceted-panel-2 {
    clip-path: polygon(0 0, 95% 5%, 100% 100%, 8% 92%);
}

/* --- CONTRADICTION SPREAD (Full-bleed dark) --- */
.spread-dark {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contradiction-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--charcoal-plum) 0%, #3d2f4a 40%, #4a3558 70%, var(--charcoal-plum) 100%);
    z-index: 0;
}

.contradiction-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 120px 60px;
    width: 100%;
}

.contradiction-text-panel {
    background-color: rgba(46, 36, 51, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 80px;
    max-width: 700px;
    clip-path: polygon(0 0, 100% 2%, 97% 100%, 3% 98%);
}

.body-light {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.65;
    max-width: 38ch;
    color: var(--calcite);
    margin-bottom: 1.2em;
}

.body-light + .body-light {
    text-indent: 2em;
}

/* --- EDITORIAL SPREAD (Dual image with centered quote) --- */
.editorial-grid {
    grid-template-rows: auto;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
    row-gap: 40px;
}

.editorial-image-left {
    grid-column: 1 / 5;
    grid-row: 1;
    height: 60vh;
    background: linear-gradient(120deg, var(--amethyst-haze) 0%, var(--rose-quartz) 100%);
    transform: translateX(-5%);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.editorial-image-left.in-view {
    transform: translateX(0);
    opacity: 1;
}

.faceted-panel-3 {
    clip-path: polygon(0 5%, 95% 0, 100% 90%, 8% 100%);
}

.editorial-caption {
    grid-column: 5 / 9;
    grid-row: 1;
    padding: 0 30px;
    text-align: center;
}

.pull-quote {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.3;
    color: var(--charcoal-plum);
    position: relative;
    padding: 30px 0;
    border-top: 2px solid var(--rose-quartz);
    border-bottom: 2px solid var(--rose-quartz);
}

.pull-quote-mark {
    color: var(--rose-quartz);
    font-size: 1.4em;
}

/* Pull quote ornament diamonds at line ends */
.pull-quote::before,
.pull-quote::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--rose-quartz);
    transform: rotate(45deg);
}

.pull-quote::before {
    top: -4px;
    left: 50%;
    margin-left: -3px;
}

.pull-quote::after {
    bottom: -4px;
    left: 50%;
    margin-left: -3px;
}

.caption-meta {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aged-copper);
    margin-top: 20px;
}

.editorial-image-right {
    grid-column: 9 / 13;
    grid-row: 1;
    height: 60vh;
    background: linear-gradient(200deg, var(--honeyed-peach) 0%, var(--rose-quartz) 70%, var(--amethyst-haze) 100%);
    transform: translateX(5%);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.editorial-image-right.in-view {
    transform: translateX(0);
    opacity: 1;
}

.faceted-panel-4 {
    clip-path: polygon(3% 0, 100% 8%, 92% 100%, 0 95%);
}

/* --- CRYSTAL SPREAD (Text-only with oversized quote) --- */
.crystal-grid {
    grid-template-rows: auto auto;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 140px;
    row-gap: 60px;
}

.crystal-quote-block {
    grid-column: 2 / 12;
    text-align: center;
}

.oversized-quote {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--charcoal-plum);
}

.quote-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.diamond {
    width: 8px;
    height: 8px;
    background-color: var(--rose-quartz);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.ornament-line {
    width: 80px;
    height: 2px;
    background-color: var(--rose-quartz);
}

.crystal-body {
    grid-column: 4 / 10;
    text-align: left;
}

/* --- Crystal Cluster Dividers --- */
.crystal-divider {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background-color: var(--foundation-cream);
    overflow: hidden;
}

.spread-lilac + .crystal-divider {
    background-color: var(--pale-lilac);
}

/* Alternate divider backgrounds based on adjacent spread colors */
.crystal-divider + .spread-lilac {
    /* handled by section backgrounds */
}

.crystal-piece {
    position: absolute;
    opacity: 0;
    transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), opacity 400ms ease;
}

.crystal-piece.in-view {
    opacity: 1;
    transform: rotate(0deg) !important;
}

.crystal-piece-1 {
    width: 28px;
    height: 28px;
    background-color: rgba(212, 160, 160, 0.4);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(-45deg);
    left: calc(50% - 50px);
}

.crystal-piece-2 {
    width: 20px;
    height: 20px;
    background-color: rgba(184, 169, 201, 0.35);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transform: rotate(30deg);
    left: calc(50% - 20px);
    top: calc(50% - 18px);
}

.crystal-piece-3 {
    width: 36px;
    height: 36px;
    background-color: rgba(232, 200, 160, 0.3);
    transform: rotate(45deg);
    left: calc(50% + 5px);
    top: calc(50% - 10px);
}

.crystal-piece-4 {
    width: 16px;
    height: 24px;
    background-color: rgba(212, 160, 160, 0.3);
    clip-path: polygon(50% 0%, 100% 35%, 80% 100%, 20% 100%, 0% 35%);
    transform: rotate(-20deg);
    left: calc(50% + 35px);
    top: calc(50% - 25px);
}

.crystal-piece-5 {
    width: 22px;
    height: 22px;
    background-color: rgba(228, 216, 236, 0.45);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transform: rotate(15deg);
    left: calc(50% - 40px);
    top: calc(50% + 5px);
}

/* --- Scroll Reveal Animations --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Text Links --- */
a:not(.nav-brand):not(.nav-link) {
    color: var(--charcoal-plum);
    text-decoration: none;
    background-image: linear-gradient(var(--rose-quartz), var(--rose-quartz));
    background-position: 0 100%;
    background-size: 100% 1px;
    background-repeat: no-repeat;
    transition: background-size 300ms ease;
}

a:not(.nav-brand):not(.nav-link):hover {
    background-size: 100% 100%;
}

/* --- Footer --- */
#footer {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--foundation-cream);
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--charcoal-plum);
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--aged-copper);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-copy {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--aged-copper);
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .spread-grid {
        padding: 60px 24px;
    }

    .nav-inner {
        padding: 0 24px;
    }

    /* Hero */
    .hero-title-block {
        grid-column: 1 / 13;
        text-align: center;
    }

    .hero-image-block {
        grid-column: 1 / 13;
        margin-top: 40px;
    }

    .hero-photo {
        height: 50vh;
    }

    /* Manifesto */
    .manifesto-image {
        grid-column: 1 / 13;
        grid-row: 1;
        height: 50vh;
    }

    .manifesto-headline-overlap {
        grid-column: 1 / 13;
        grid-row: 2;
        margin-top: 24px;
    }

    .manifesto-text {
        grid-column: 1 / 13;
        grid-row: 3;
        padding-top: 24px;
    }

    /* Gallery */
    .gallery-text {
        grid-column: 1 / 13;
        grid-row: 1;
        padding-right: 0;
        margin-bottom: 32px;
    }

    .gallery-image {
        grid-column: 1 / 13;
        grid-row: 2;
        height: 50vh;
    }

    .gallery-image-small {
        grid-column: 1 / 7;
        grid-row: 3;
        height: 25vh;
    }

    /* Editorial */
    .editorial-image-left {
        grid-column: 1 / 7;
        height: 40vh;
    }

    .editorial-caption {
        grid-column: 1 / 13;
        grid-row: 2;
        padding: 24px 0;
    }

    .editorial-image-right {
        grid-column: 7 / 13;
        grid-row: 1;
        height: 40vh;
    }

    /* Crystal */
    .crystal-quote-block {
        grid-column: 1 / 13;
    }

    .crystal-body {
        grid-column: 1 / 13;
    }

    /* Contradiction */
    .contradiction-text-panel {
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .spread-grid {
        padding: 40px 16px;
    }

    .nav-links {
        display: none;
    }

    #main-nav {
        height: 56px;
    }

    .hero-grid {
        padding-top: 80px;
    }

    .manifesto-grid,
    .gallery-grid,
    .editorial-grid,
    .crystal-grid {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .editorial-image-left {
        grid-column: 1 / 13;
        height: 35vh;
    }

    .editorial-image-right {
        grid-column: 1 / 13;
        grid-row: 3;
        height: 35vh;
    }

    .contradiction-content {
        padding: 80px 16px;
    }

    .contradiction-text-panel {
        padding: 32px 24px;
        clip-path: none;
    }

    .crystal-divider {
        height: 80px;
    }

    .faceted-drop-cap {
        font-size: 3.5rem;
        width: 56px;
        height: 56px;
    }
}

/* --- Utility: will-change for animated elements --- */
.scroll-reveal,
.manifesto-image,
.gallery-image,
.gallery-image-small,
.editorial-image-left,
.editorial-image-right,
.crystal-piece,
.shard {
    will-change: transform, opacity;
}
