/* ═══════════════════════════════════════
   HERO SECTION SHELL
═══════════════════════════════════════ */
.hero-section {
    width: 100%;
    height: 100vh;
    min-height: 580px;
    padding: 9px;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    background: #e8e8e8;
    background: radial-gradient(ellipse at 55% 35%, #f5f5f5 0%, #dcdcdc 100%);
    position: relative;
    overflow: hidden;
}

/* atmospheric depth vignette */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.06) 100%);
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════
   MASTER GRID CONTAINER — INFORMAL GRID
   Cols: irregular [0.85fr : 2.1fr : 1.05fr]
   Rows: [nav 52px] [main 1fr] [bottom 148px]
═══════════════════════════════════════ */
.modular-hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;

    /* Black gap = thick border between cells */
    background: #0f0f0f;
    border-radius: 20px;
    padding: 3px;
    gap: 3px;

    display: grid;
    /* Deliberately unequal columns — informal proportions */
    grid-template-columns: 0.85fr 2.1fr 1.05fr;
    /* Deliberately unequal rows */
    grid-template-rows: 52px 1fr 148px;

    box-shadow:
        0 32px 96px rgba(0, 0, 0, 0.26),
        0 4px 18px rgba(0, 0, 0, 0.12);
}

/* ── Base panel — with inset inside border ── */
.modular-panel {
    background: #f0f0f0;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    display: flex;
    /* Inside border: 4px black frame drawn inward on every panel */
    box-shadow: inset 0 0 0 4px #0f0f0f;
}

/* ═══════════════════════════════════════
   ROW 1 — HEADER NAV (spans all 3 cols)
═══════════════════════════════════════ */
.panel-nav {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 24px;
    gap: 0;
    background: #f0f0f0;
    border-radius: 12px;
}

/* ── LEFT: BOLD EDIT. wordmark ── */
.nav-logo-container {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2.5px solid #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.nav-logo {
    width: 60%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}

/* ── CENTER: navigation links ── */
.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    color: #0f0f0f;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.4;
}

/* ── RIGHT: hamburger circle ── */
.nav-hamburger-btn {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2.5px solid #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease;
    color: #0f0f0f;
    padding: 0;
}

.nav-hamburger-btn:hover {
    background: #0f0f0f;
    color: #f0f0f0;
}

.nav-hamburger-btn svg {
    width: 15px;
    height: 15px;
}

/* ═══════════════════════════════════════
   ROW 2 LEFT — Typography Panel (Col 1)
═══════════════════════════════════════ */
.panel-left {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 20px;
    background: #9b1b1e;
    border-radius: 12px;
}

/* ── Hero logo — cinematic premium centerpiece ── */
.hero-logo-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    /* Subtle ambient red glow beneath the logo */
    filter: drop-shadow(0 0 40px rgba(107, 20, 33, 0.15));
}

.hero-logo-large {
    width: 100%;
    max-width: 500px;
    min-width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    /* Preserve PNG transparency + luxury drop shadow */
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.5)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
    transform: scale(1.45); /* Scaled up to counteract internal image padding */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.hero-logo-large:hover {
    transform: scale(1.5);
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 2px 8px rgba(107, 20, 33, 0.25));
}

/* Sub-label under logo */
.panel-left-sub {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(240, 240, 240, 0.8);
    margin-top: 10px;
}

/* ── Global Grid Intersection Wrappers ── */
.intersection-wrapper {
    position: relative;
    width: 0;
    height: 0;
    z-index: 30;
    justify-self: end;
    align-self: end;
}

.intersection-left {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.intersection-center {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}



.intersection-btn,
.edge-btn-left {
    position: absolute;
    background: #f0f0f0;
    border: 7px solid #0f0f0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease, color 0.25s ease;
    color: #0f0f0f;
}

.intersection-btn {
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    z-index: 30;
    padding: 12px;
}

/* ── Premium Burgundy Red variant for center plus button ── */
.intersection-btn.intersection-btn--red {
    background: #9b1b1e;
    border-color: #0f0f0f;
    color: #f8f6f1;
}

.intersection-btn.intersection-btn--red:hover {
    background: #7a1518;
    color: #fff;
}

.intersection-btn.intersection-btn--red svg {
    color: #f8f6f1;
    stroke: #f8f6f1;
}

/* Tooltip label that appears on hover */
.intersection-btn::after {
    content: 'VIEW PROJECTS';
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #0f0f0f;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 50;
}

.intersection-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.edge-btn-left {
    bottom: -41.5px;
    right: -41.5px;
    width: 76px;
    height: 76px;
    z-index: 30;
}

.intersection-btn svg {
    width: 44px;
    height: 44px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.edge-btn-left svg {
    width: 26px;
    height: 26px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.intersection-btn:hover,
.edge-btn-left:hover {
    background: #0f0f0f;
    color: #f0f0f0;
}

/* Override hover for red variant — keep red tones */
.intersection-btn.intersection-btn--red:hover {
    background: #7a1518;
    color: #f8f6f1;
}

.edge-btn-left:hover svg {
    transform: rotate(90deg);
}

/* VIEW ALL WORK — arrow hover animation */
.right-box-secondary {
    transition: background 0.22s ease;
}

.right-box-secondary .view-all-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.right-box-secondary:hover .view-all-arrow {
    transform: translateX(5px);
}

/* ═══════════════════════════════════════
   ROW 2 CENTER — Main Image Panel (Col 2)
═══════════════════════════════════════ */
.panel-center {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
    /* dark fallback while image loads */
    display: block;
    /* override .modular-panel flex to allow absolute img */
}

.center-product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
}

.panel-center:hover .center-product-img {
    transform: scale(1.04);
}

/* Text overlay — bottom right */
.center-large-text {
    position: absolute;
    bottom: 18px;
    right: 18px;
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.8rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-align: right;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    z-index: 2;
    margin: 0;
}

/* Dark gradient so text is legible */
.panel-center::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── Center intersection PLUS button ──
   Sits exactly at the corner where center meets right column,
   between rows 2 and 3 (bottom-right corner of the center panel).
   Uses absolute positioning anchored to center panel's bottom-right.
*/
.intersection-wrapper-center {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 30;
    pointer-events: none;
}



/* ═══════════════════════════════════════
   ROW 2–3 RIGHT — Stacked Panels (Col 3)
═══════════════════════════════════════ */
.panel-right {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
    /* spans row 2 AND row 3 */
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: transparent;
}

/* Upper right — main image box */
.right-box-main {
    flex: 1;
    background: #1c1c1c;
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    /* Inside border sits above image via z-index on pseudo */
    box-shadow: inset 0 0 0 4px #0f0f0f;
}

.right-product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform 0.45s ease;
}

.right-box-main:hover .right-product-img {
    transform: scale(1.04);
}

/* Subtle gradient so label sits on photo */
.right-box-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 55%);
    z-index: 1;
    pointer-events: none;
}

.right-brand-logo {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}



/* Lower right — CTA strip */
.right-box-secondary {
    flex: 0 0 80px;
    background: #e4e4e4;
    border-radius: 13px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.22s ease;
    overflow: hidden;
    box-shadow: inset 0 0 0 4px #0f0f0f;
}

.right-box-secondary:hover {
    background: #d4d4d4;
}

.secondary-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.secondary-box-content p {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.35;
    margin: 0;
    color: #0f0f0f;
    text-transform: uppercase;
}

.secondary-box-content svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #0f0f0f;
}

/* ═══════════════════════════════════════
   ROW 3 LEFT — Promo Block (Col 1)
═══════════════════════════════════════ */
.panel-bottom-left {
    grid-column: 1 / 2;
    grid-row: 3;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px 18px;
    background: #f0f0f0;
    border-radius: 12px;
}

.promo-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.promo-title {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    color: #0f0f0f;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.promo-sub {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.4;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.promo-action-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #0f0f0f;
    padding: 7px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.22s ease;
    flex-shrink: 0;
    align-self: flex-end;
}

.promo-action-box:hover {
    background: rgba(0, 0, 0, 0.07);
}

.shop-btn-text {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1.3;
    color: #0f0f0f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-btn-text strong {
    font-weight: 900;
}

.cart-icon {
    display: flex;
    align-items: center;
    color: #0f0f0f;
}

.cart-icon svg {
    width: 15px;
    height: 15px;
}

/* ═══════════════════════════════════════
   ROW 3 CENTER — Image Strip (Col 2)
═══════════════════════════════════════ */
.panel-bottom-center {
    grid-column: 2 / 3;
    grid-row: 3;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    background: #1a1a1a;
    box-shadow: inset 0 0 0 4px #0f0f0f;
}

.bottom-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.bottom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.0) 60%);
}

.bottom-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    color: #fff;
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    z-index: 2;
    margin: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-section {
        padding: 10px;
    }

    .modular-hero-container {
        grid-template-columns: 1fr 1.6fr;
        grid-template-rows: 52px minmax(260px, 1fr) minmax(260px, 1fr) 130px;
        max-height: none;
        height: auto;
        border-radius: 14px;
    }

    .panel-nav {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .panel-left {
        grid-column: 1 / 2;
        grid-row: 2;
    }

    .panel-center {
        grid-column: 2 / 3;
        grid-row: 2;
    }

    .panel-right {
        grid-column: 1 / -1;
        grid-row: 3;
        flex-direction: row;
        min-height: 200px;
    }

    .panel-bottom-left {
        grid-column: 1 / 2;
        grid-row: 4;
    }

    .panel-bottom-center {
        grid-column: 2 / 3;
        grid-row: 4;
    }

    .right-box-secondary {
        flex: 0 0 120px;
    }

    .intersection-btn,
    .edge-btn-left {
        display: none;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
═══════════════════════════════════════ */
@media (max-width: 640px) {
    .hero-section {
        padding: 7px;
        height: auto;
        min-height: 100vh;
    }

    .modular-hero-container {
        grid-template-columns: 1fr;
        /* Increased row 2 from 180px to 260px to give the square logo breathing room */
        grid-template-rows: 50px 260px minmax(240px, 1fr) 150px 110px;
        border-radius: 12px;
        gap: 6px;
        padding: 6px;
    }

    .panel-nav {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-end; /* Push hamburger to right */
    }

    .panel-left {
        grid-column: 1;
        grid-row: 2;
    }

    .hero-logo-large {
        width: 85%; /* Prevent horizontal max-out on small screens */
        transform: scale(1.2); /* Smoother scale for mobile boundaries */
    }

    .hero-logo-large:hover {
        transform: scale(1.25);
    }

    .panel-center {
        grid-column: 1;
        grid-row: 3;
    }

    .panel-right {
        grid-column: 1;
        grid-row: 4;
        flex-direction: row;
        height: 150px;
    }

    .panel-bottom-left {
        grid-column: 1;
        grid-row: 5;
    }

    .panel-bottom-center {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-brand-text {
        font-size: 0.85rem;
    }

    .nav-hamburger-btn {
        width: 32px;
        height: 32px;
    }

    .right-box-secondary {
        flex: 0 0 110px;
    }

    .intersection-btn,
    .edge-btn-left {
        display: none;
    }
}



/* ==========================================================================
   CENTER PANEL: LUXURY EDITORIAL ART DIRECTION
   ========================================================================== */

/* BASE CANVAS */
.editorial-canvas {
    background-color: #ebe8e0 !important;
    position: relative;
    overflow: hidden;
    display: block !important;
}

.editorial-canvas::after,
.editorial-canvas::before {
    display: none !important;
}

/* AMBIENT LIGHTING — soft cinematic gradient depth */
.ed-ambient-light {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(155, 27, 30, 0.04) 0%, transparent 50%);
}

/* GRAIN TEXTURE — analog paper feel */
.ed-grain {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* HANDWRITTEN SCRIPT OVERLAYS
   Playfair Display italic at extreme scale mimics expressive brush lettering */
.ed-script {
    position: absolute;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    color: #9b1b1e;
    pointer-events: none;
    user-select: none;
    white-space: normal;
    line-height: 0.82;
}

/* Script 1 — barely visible texture accent, top-left */
.ed-script-1 {
    font-size: clamp(4rem, 9vw, 12rem);
    top: -8%;
    left: -12%;
    transform: rotate(-10deg) skewY(-3deg);
    opacity: 0.06;
    z-index: 1;
    animation: edScriptDrift1 40s ease-in-out infinite alternate;
}

/* Script 2 — near-invisible editorial ghost, bottom-right */
.ed-script-2 {
    font-size: clamp(3rem, 6vw, 8rem);
    bottom: -3%;
    right: -8%;
    transform: rotate(-6deg);
    opacity: 0.05;
    z-index: 1;
    animation: edScriptDrift2 32s ease-in-out infinite alternate;
}

/* ATMOSPHERIC RED CIRCLES */
.ed-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Circle 1 — medium, soft glow, mid-left */
.ed-circle-1 {
    width: clamp(120px, 18vw, 240px);
    height: clamp(120px, 18vw, 240px);
    background: radial-gradient(circle, rgba(155, 27, 30, 0.25) 0%, rgba(155, 27, 30, 0.05) 70%, transparent 100%);
    top: 20%;
    left: 15%;
    z-index: 2;
    filter: blur(30px);
    animation: edCircleDrift1 32s ease-in-out infinite alternate;
}

/* Circle 2 — large, very faint, top-right */
.ed-circle-2 {
    width: clamp(180px, 25vw, 320px);
    height: clamp(180px, 25vw, 320px);
    background: radial-gradient(circle, rgba(155, 27, 30, 0.15) 0%, rgba(155, 27, 30, 0.02) 75%, transparent 100%);
    top: -5%;
    right: 10%;
    z-index: 2;
    filter: blur(45px);
    animation: edCircleDrift2 26s ease-in-out infinite alternate;
}

/* Circle 3 — small accent, bottom-center */
.ed-circle-3 {
    width: clamp(80px, 12vw, 150px);
    height: clamp(80px, 12vw, 150px);
    background: radial-gradient(circle, rgba(155, 27, 30, 0.3) 0%, rgba(155, 27, 30, 0.05) 60%, transparent 100%);
    bottom: 10%;
    left: 45%;
    z-index: 2;
    filter: blur(25px);
    animation: edCircleDrift3 20s ease-in-out infinite alternate;
}

/* Circle 4 — tiny, soft structural node, mid-right */
.ed-circle-4 {
    width: clamp(60px, 8vw, 100px);
    height: clamp(60px, 8vw, 100px);
    background: radial-gradient(circle, rgba(155, 27, 30, 0.2) 0%, rgba(155, 27, 30, 0.03) 80%, transparent 100%);
    top: 55%;
    right: 25%;
    z-index: 2;
    filter: blur(20px);
    animation: edCircleDrift4 24s ease-in-out infinite alternate;
}

/* GIANT WORDSTACK — monumental, controlled, breathing */
.ed-wordstack {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 6%;
    line-height: 0.88;
    animation: edReveal 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.ed-bold,
.ed-edit {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-weight: 900;
    font-size: clamp(5rem, 11vw, 14rem);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: block;
    line-height: 0.88;
}

/* BOLD — deep architectural black */
.ed-bold {
    color: #0f0f0f;
}

/* EDIT — slightly lighter, calm tonal shift */
.ed-edit {
    color: #1a1a1a;
    margin-left: 6%; /* gentle asymmetry, not extreme */
}

/* MICRO LABELS — barely-there editorial system markers */
.ed-micro {
    position: absolute;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.35rem, 0.5vw, 0.46rem);
    font-weight: 700;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.22);
    z-index: 7;
    pointer-events: none;
}

.ed-micro-1 { top: 8%;    left: 6%;  }
.ed-micro-2 { bottom: 8%; left: 6%;  }
.ed-micro-3 { bottom: 8%; right: 6%; text-align: right; }

/* SECONDARY INFO BLOCK — right edge, between the two circles */
.ed-info-block {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    text-align: right;
    width: clamp(85px, 15vw, 190px);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: edReveal 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.ed-info-label {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.42rem, 0.62vw, 0.55rem);
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #111;
    display: block;
}

.ed-info-text {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.4rem, 0.6vw, 0.52rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.52);
    line-height: 2.1;
    display: block;
}

/* CORNER METADATA */
.ed-corner {
    position: absolute;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.38rem, 0.6vw, 0.52rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #111;
    z-index: 8;
    opacity: 0.42;
}

.ed-top-left  { top: 1.4rem;    left: 1.4rem;  }
.ed-top-right { top: 1.4rem;    right: 1.4rem; text-align: right; }
.ed-bot-left  { bottom: 1.4rem; left: 1.4rem;  }
.ed-bot-right { bottom: 1.4rem; right: 1.4rem; text-align: right; }

/* KEYFRAME ANIMATIONS */
@keyframes edScriptDrift1 {
    0%   { transform: rotate(-10deg) skewY(-3deg) translate(0,    0); }
    100% { transform: rotate(-8deg)  skewY(-1deg) translate(12px, 18px); }
}

@keyframes edScriptDrift2 {
    0%   { transform: rotate(-6deg) translate(0,     0); }
    100% { transform: rotate(-4deg) translate(-10px, -12px); }
}

@keyframes edCircleDrift1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-12px, 20px) scale(1.04); }
}

@keyframes edCircleDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-15px, -18px) scale(1.03); }
}

@keyframes edCircleDrift3 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15px, -12px) scale(1.05); }
}

@keyframes edCircleDrift4 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-8px, 15px) scale(1.06); }
}

@keyframes edReveal {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hover — subtle letterform tension */
.editorial-canvas:hover .ed-bold,
.editorial-canvas:hover .ed-edit {
    letter-spacing: -0.045em;
    transition: letter-spacing 2s ease;
}

