/* ══════════════════════════════════════════════
   LUXE FASHION — style.css
   Colors: Crimson Red #DC143C | White | Dark #0a0a0a
══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
    --red: #DC143C;
    --white: #FFFFFF;
    --dark: #0a0a0a;
    --darker: #050505;
    --radius-card: 28px;
    --gold:        #c9a84c;
    --gold-lt:     #f0d68a;
    --gold-dk:     #a07c2e;
    --beige:       #e8dcc8;
    --champagne:   #f5e6ca;
    --radius-btn: 60px;
    --radius-input: 16px;
    --radius-badge: 60px;
    --radius-icon: 50%;
    --radius-img: 28px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background: #fff;
    color: #111;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 70px;
    background: transparent;
}

/* ── IMAGE LOGO ── */
.logo-img-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    /* makes any dark logo white */
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.logo-img:hover {
    opacity: 0.85;
    transform: scale(1.04);
}

/* Fallback text logo (kept for any edge-case) */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 5px;
}

.logo span {
    color: var(--red);
}

.nav-link-custom {
    color: white !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.35s ease;
}

.nav-link-custom:hover {
    color: var(--red) !important;
}

.nav-link-custom:hover::after {
    width: 100%;
}

/* Mobile offcanvas */
.offcanvas.offcanvas-end {
    background: #080808;
    border-left: 3px solid var(--red);
    border-radius: 24px 0 0 24px;
}

/* ══════════════════════════════════════════════
   VIDEO BANNER — full height, transparent
══════════════════════════════════════════════ */
.video-banner {
    position: relative;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.video-bg-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-poster-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    display: none;
}

.video-poster-img.visible {
    display: block;
}

/* ── HEADER BLACK GRADIENT OVERLAY ── */
/* Sits above the video, behind the header content */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    z-index: 5;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.65) 15%,
            rgba(0, 0, 0, 0.48) 30%,
            rgba(0, 0, 0, 0.30) 50%,
            rgba(0, 0, 0, 0.12) 72%,
            transparent 100%);
    pointer-events: none;
}

/* ══════════════════════════════════════════════
   WAVE SECTION DIVIDERS
   Each section gets a gentle curved top clip
══════════════════════════════════════════════ */
.wave-top {
    position: relative;
    clip-path: ellipse(100% 94% at 50% 6%);
    margin-top: -55px;
    padding-top: 0px !important;
}

.wave-both {
    position: relative;
    clip-path: ellipse(105% 92% at 50% 50%);
    margin-top: -55px;
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

.skew-section {
    clip-path: polygon(0 55px, 100% 0, 100% calc(100% - 55px), 0 100%);
    margin-top: -55px;
    padding-top: 145px !important;
    padding-bottom: 145px !important;
}

/* ══════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════ */
.ticker-wrap {
    background: var(--red);
    padding: 14px 0;
    overflow: hidden;
}

.ticker-inner {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ══════════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════════ */
.section-tag {
    color: var(--red);
    letter-spacing: 5px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-l {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-r {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* ── SECTION ENTRANCE ANIMATION ── */
.sec-anim {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-anim.sec-in {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════════
   BUTTONS — pill shape
══════════════════════════════════════════════ */
.btn-luxe {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
    padding: 16px 48px;
    border-radius: var(--radius-btn);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
    /* box-shadow: 0 8px 32px rgba(220, 20, 60, 0.25); */
}

.btn-luxe:hover {
     background: var(--red);
    color: white;
    transform: translateY(-2px);
    /* box-shadow: 0 12px 40px rgba(220, 20, 60, 0.4); */
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 16px 48px;
    border-radius: var(--radius-btn);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-outline:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   COLLECTION CARDS — rounded
══════════════════════════════════════════════ */
.coll-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.coll-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(220, 20, 60, 0.22);
}

.coll-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s ease;
}

.coll-card:hover img {
    transform: scale(1.1);
}

.coll-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--red);
    z-index: 2;
    padding: 6px 18px;
    border-radius: var(--radius-badge);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(220, 20, 60, 0.5);
}

.coll-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 38px 30px 30px;
    background: linear-gradient(to top, rgba(220, 20, 60, 0.93), transparent);
    transform: translateY(100%);
    transition: transform 0.45s ease;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.coll-card:hover .coll-overlay {
    transform: translateY(0);
}

.coll-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.coll-overlay p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 7px 0 0;
}

/* ══════════════════════════════════════════════
   STAT NUMBERS
══════════════════════════════════════════════ */
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

/* About stat card — rounded glass */
.stat-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(10, 10, 10, 0.88);
    padding: 28px 36px;
    border-radius: 20px;
    border: 1px solid rgba(220, 20, 60, 0.35);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* About image wrapper */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Decorative circle accent */
.about-circle-deco {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--red) 0%, rgba(220, 20, 60, 0.3) 70%, transparent 100%);
    z-index: -1;
    filter: blur(2px);
}

/* Decorative ring */
.about-ring-deco {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed rgba(220, 20, 60, 0.4);
    z-index: -1;
    animation: spinSlow 14s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

/* ══════════════════════════════════════════════
   MODEL CARDS — rounded with elliptical top
══════════════════════════════════════════════ */
.model-card {
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(220, 20, 60, 0.18);
}

.model-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.model-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.83) saturate(1.25);
}

/* ══════════════════════════════════════════════
   PARALLAX QUOTE
══════════════════════════════════════════════ */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ══════════════════════════════════════════════
   GALLERY GRID — rounded items
══════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-grid .span2 {
    grid-column: span 2;
    grid-row: span 2;
}

.gal-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
}

.gal-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.gal-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.75) saturate(1.4);
}

/* ══════════════════════════════════════════════
   CONTACT — icon circles, rounded inputs
══════════════════════════════════════════════ */
.contact-icon {
    width: 54px;
    height: 54px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 36px rgba(220, 20, 60, 0.5);
}

.form-control.cfield {
    background: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-input);
    color: #111;
    padding: 16px 22px;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.form-control.cfield::placeholder {
    color: rgba(0, 0, 0, 0.32);
}

.form-control.cfield:focus {
    background: #fff;
    border-color: var(--red);
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
    color: #111;
}

/* Contact invitation headline */
.contact-invite-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 45px);
    font-weight: 900;
    color: #111;
    line-height: 1.18;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.contact-invite-title span {
    color: var(--red);
    display: inline;
}

.contact-invite-sub {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(0,0,0,0.52);
    margin-bottom: 32px;
    font-family: 'Courier New', Courier, monospace;
}

/* Social handles row */
.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    font-size: 13px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.contact-social-item i {
    width: 36px;
    height: 36px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.contact-social-item:hover { color: var(--red); }
.contact-social-item:hover i { background: var(--red); }

/* Contact section — big logo decoration */
.contact-logo-big {
    text-align: right;
    margin-top: 36px;
    display: flex;
    justify-content: end;
}

.contact-logo-big img {
    width: 560px;
    /* opacity: 0.12; */
    filter: brightness(0);
}

/* ══════════════════════════════════════════════
   FOOTER — minimal white bar
══════════════════════════════════════════════ */
.footer-minimal {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
}

.footer-copy {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.38);
    margin: 0;
    letter-spacing: 0.02em;
    font-family: 'Courier New', Courier, monospace;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.38);
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red);
}

@media (max-width: 640px) {
    .footer-minimal {
        padding: 16px 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

/* ══════════════════════════════════════════════
   ABOUT — REIMAGINED (sticky headings, white bg)
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.abt-section {
    background: #0e0e0e;
    border-top: 4px solid var(--red);
}

/* ── Intro Panel ── */
.abt-intro {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 80px;
}

.abt-intro-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.abt-intro-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    transform: scale(1.06);
    transition: transform 12s ease;
}

.abt-intro:hover .abt-intro-bg img {
    transform: scale(1.0);
}

.abt-intro-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        110deg,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.72) 50%,
        rgba(220,20,60,0.1) 100%
    );
}

.abt-intro-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
}

.abt-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 32px;
}

.abt-hero-title {
    margin: 0 0 28px;
}

.abt-ht-1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(48px, 7.5vw, 110px);
    color: rgba(255,255,255,0.88);
    display: block;
    line-height: 1.05;
}

.abt-ht-2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(56px, 9vw, 128px);
    color: var(--red);
    display: block;
    line-height: 1;
    padding-left: 52px;
}

.abt-ht-3 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(80px, 13vw, 190px);
    color: #fff;
    display: block;
    line-height: 0.85;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.abt-hero-sub {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    font-weight: 500;
    margin: 0;
    border-left: 3px solid var(--red);
    padding-left: 16px;
}

.abt-scroll-hint {
    position: absolute;
    bottom: 44px;
    right: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.abt-scroll-hint span {
    font-size: 8px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    font-weight: 700;
    writing-mode: vertical-rl;
}

.abt-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: abtScrollPulse 2.2s ease-in-out infinite;
}

@keyframes abtScrollPulse {
    0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
    50%       { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* ── Stats Strip ── */
.abt-stats {
    background: var(--red);
    padding: 48px 80px;
    display: flex;
    align-items: center;
}

.abt-stat {
    flex: 1;
    text-align: center;
}

.abt-stat-div {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.22);
    flex-shrink: 0;
}

.abt-stat-n {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.abt-stat-l {
    display: block;
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    font-weight: 600;
}

/* ── Content Panels ── */
.abt-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.abt-panel-img {
    position: relative;
    overflow: hidden;
}

.abt-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-panel:hover .abt-panel-img img {
    transform: scale(1.05);
}

.abt-panel-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220,20,60,0.25) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.abt-panel:hover .abt-panel-img-ov {
    opacity: 1;
}

.abt-panel-content {
    background: #141414;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--red);
}

.abt-ch-num {
    position: absolute;
    top: 10px;
    right: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 240px;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
    user-select: none;
}

.abt-ch-label {
    font-size: 9px;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 18px;
    display: block;
}

.abt-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.8vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin: 0 0 32px;
}

.abt-panel-title em {
    color: var(--red);
    font-style: italic;
}

.abt-panel-text p {
    font-size: 14px;
    line-height: 1.95;
    color: rgba(255,255,255,0.48);
    margin-bottom: 18px;
    font-weight: 300;
}

.abt-panel-text p:last-child {
    margin-bottom: 0;
}

.abt-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 9px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-weight: 700;
    margin-top: 36px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    width: fit-content;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.abt-cta span {
    color: var(--red);
    font-size: 1.4em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.abt-cta:hover {
    color: #fff;
    border-color: var(--red);
    text-decoration: none;
}

.abt-cta:hover span {
    transform: translateX(7px);
}

/* ── Marquee ── */
.abt-marquee {
    background: #0a0a0a;
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.abt-mq-track {
    display: inline-block;
    white-space: nowrap;
    animation: abtMarquee 28s linear infinite;
}

.abt-mq-track span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(22px, 2.5vw, 38px);
    color: rgba(255,255,255,0.13);
    margin: 0 28px;
}

.abt-dot {
    color: var(--red) !important;
    font-style: normal !important;
    font-size: 11px !important;
    margin: 0 6px !important;
    opacity: 0.65;
}

@keyframes abtMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Panel Reverse (GFI) ── */
.abt-panel-rev .abt-panel-img {
    order: 2;
}

.abt-panel-rev .abt-panel-content {
    order: 1;
    border-left: none;
    border-right: 4px solid var(--red);
    background: #111;
}

/* ── Timeline ── */
.abt-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.abt-tl-item {
    padding: 0 14px;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.abt-tl-item::before {
    content: '';
    position: absolute;
    top: -28px;
    left: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px rgba(220,20,60,0.7);
}

.abt-tl-item:first-child { padding-left: 0; }
.abt-tl-item:first-child::before { left: 0; }
.abt-tl-item:last-child { border-right: none; }

.abt-tl-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.abt-tl-evt {
    display: block;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .abt-intro { padding: 0 48px; }
    .abt-scroll-hint { right: 40px; }
    .abt-stats { padding: 40px 48px; }
    .abt-panel { grid-template-columns: 1fr; min-height: auto; }
    .abt-panel-img { height: 65vw; min-height: 340px; }
    .abt-panel-content {
        padding: 72px 60px;
        border-left: none;
        border-top: 4px solid var(--red) !important;
        border-right: none !important;
    }
    .abt-ch-num { font-size: 180px; }
    .abt-panel-rev .abt-panel-img,
    .abt-panel-rev .abt-panel-content { order: unset; }
}

@media (max-width: 767px) {
    .abt-intro { padding: 0 28px; }
    .abt-ht-2 { padding-left: 20px; }
    .abt-scroll-hint { right: 20px; bottom: 28px; }
    .abt-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 32px 24px;
        gap: 1px;
        background: #b01030;
    }
    .abt-stat { background: var(--red); padding: 24px 16px; }
    .abt-stat-div { display: none; }
    .abt-panel-content { padding: 52px 28px; }
    .abt-timeline { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .abt-tl-item { border-right: none; padding-left: 0; }
    .abt-tl-item::before { display: none; }
    .abt-ch-num { font-size: 100px; right: -10px; }
}

/* ══════════════════════════════════════════════
   ABOUT — STICKY HEADING BLOCKS
══════════════════════════════════════════════ */
.about-reimagined {
    background: #fff;
    border-top: 5px solid var(--red);
    padding: 0 !important;
    clip-path: none !important;
    margin-top: 0 !important;
}

.abr-block {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    align-items: start;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.abr-block-b2 { border-bottom: none; }

.abr-left {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px 60px 70px;
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
}

.abr-right {
    padding: 110px 70px 110px 60px;
    align-self: start;
}

.abr-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.abr-hrow {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(36px, 4.6vw, 72px);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #0a0a0a;
    line-height: 1.08;
    white-space: nowrap;
    display: block;
}

.abr-hrow-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.abr-hrow-sub {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(9px, 0.85vw, 13px);
    letter-spacing: 9px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
    display: block;
    white-space: nowrap;
    margin-bottom: 24px;
}

.abr-accent { color: var(--red); }

.abr-typer::after {
    content: '|';
    display: inline;
    color: var(--red);
    font-weight: 300;
    margin-left: 3px;
    animation: abrCursorBlink 0.65s step-end infinite;
}

.abr-typer.abr-done::after { display: none; }

@keyframes abrCursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.abr-content p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    line-height: 1.6;
    /* letter-spacing: 0.8px; */
    text-transform: uppercase;
    color: rgba(0,0,0,0.72);
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.abr-content p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.abr-content.abr-vis p:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.abr-content.abr-vis p:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.abr-content.abr-vis p:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.4s; }

.abr-block-reverse { grid-template-columns: 50% 50%; }
.abr-block-reverse .abr-right { order: 1; }
.abr-block-reverse .abr-left  { order: 2; border-right: none; border-left: 1px solid rgba(0,0,0,0.07); }

.abr-img-fade {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.abr-img-fade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.09;
    filter: grayscale(100%) contrast(0.85);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.abr-block:hover .abr-img-fade img { transform: scale(1.0); }

@media (max-width: 991px) {
    .abr-block,
    .abr-block-reverse { grid-template-columns: 1fr; min-height: auto; }
    .abr-block-reverse .abr-left,
    .abr-block-reverse .abr-right { order: unset; }
    .abr-block-reverse .abr-left  { border-left: none; }
    .abr-left {
        position: relative; height: auto; top: auto;
        padding: 70px 28px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .abr-right { padding: 50px 28px 80px; }
    .abr-hrow  { font-size: clamp(28px, 7vw, 52px); white-space: normal; }
    .abr-hrow-sub { white-space: normal; }
}

@media (max-width: 575px) {
    .abr-hrow     { font-size: clamp(24px, 8.5vw, 40px); letter-spacing: 3px; }
    .abr-left     { padding: 60px 22px 36px; }
    .abr-right    { padding: 40px 22px 70px; }
    .abr-hrow-sub { letter-spacing: 5px; }
}

/* ══════════════════════════════════════════════
   FEATURES — scroll typing section
══════════════════════════════════════════════ */
.feat-section {
    background: #0a0a0a;
    padding-bottom: 0 !important;
}

.feat-header {
    padding: 80px 70px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── FEATURE ITEM ── */
.feat-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: stretch;
}

.feat-item:last-child {
    border-bottom: none;
}

/* Reverse layout — text left, image right */
.feat-item-rev {
    direction: rtl;
}

.feat-item-rev>* {
    direction: ltr;
}

/* ── IMAGE COLUMN ── */
.feat-img-col {
    overflow: hidden;
    position: relative;
}

.feat-img-wrap {
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    position: relative;
}

.feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.06);
    filter: brightness(0.72) saturate(1.15);
    transition: transform 1s ease, filter 1s ease;
    display: block;
}

.feat-item:hover .feat-img-wrap img {
    transform: scale(1.0);
    filter: brightness(0.88) saturate(1.35);
}

/* Red line accent on image edge */
.feat-img-col::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--red);
    right: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feat-item-rev .feat-img-col::after {
    right: auto;
    left: 0;
}

.feat-item:hover .feat-img-col::after {
    opacity: 1;
}

/* ── TEXT COLUMN ── */
.feat-text-col {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Ghost number */
.feat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(90px, 14vw, 180px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.035);
    position: absolute;
    top: 30px;
    right: 40px;
    line-height: 1;
    letter-spacing: -6px;
    pointer-events: none;
    user-select: none;
}

/* Heading */
.feat-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(30px, 3.8vw, 60px);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 36px;
}

.feat-accent {
    color: var(--red);
}

/* Typing cursor — reuse abrCursorBlink keyframe already defined */
.feat-typer::after {
    content: '|';
    display: inline;
    color: var(--red);
    font-weight: 300;
    margin-left: 3px;
    animation: abrCursorBlink 0.65s step-end infinite;
}

.feat-typer.feat-done::after {
    display: none;
}

/* Paragraphs — hidden until item is visible */
.feat-para {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12.5px;
    line-height: 2.5;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feat-para:last-child {
    margin-bottom: 0;
}

/* Stagger reveal when feat-vis is added */
.feat-item.feat-vis .feat-para:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.55s;
}

.feat-item.feat-vis .feat-para:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.80s;
}

/* ══════════════════════════════════════════════
   PRESS SECTION
══════════════════════════════════════════════ */
.press-section {
    background: #fff;
    padding: 0;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

/* ── Header ── */
.press-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    padding: 0 80px 80px;
    max-width: 1500px;
    margin: 0 auto;
}

.press-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 28px;
}

.press-title {
    font-size: clamp(64px, 9vw, 130px);
    font-weight: 900;
    line-height: 0.88;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0;
}

.press-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--red);
    font-weight: 700;
}

.press-title-alt {
    display: block;
    font-size: 0.32em;
    letter-spacing: 0.18em;
    color: rgba(0,0,0,0.35);
    font-weight: 500;
    margin-top: 14px;
    font-style: normal;
    font-family: 'Playfair Display', serif;
}

.press-hd-right {
    padding-bottom: 8px;
}

.press-hd-desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(0,0,0,0.52);
    max-width: 460px;
    margin: 0 0 40px;
}

.press-hd-stat {
    display: flex;
    align-items: baseline;
    gap: 16px;
    border-top: 2px solid #111;
    padding-top: 22px;
    max-width: 320px;
}

.press-hd-num {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    color: var(--red);
    letter-spacing: -0.03em;
}

.press-hd-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
    line-height: 1.6;
    max-width: 130px;
}

/* ── Magazine Ticker ── */
.press-ticker {
    background: #111;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.press-ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: pressTicker 40s linear infinite;
}

.press-ticker-track:hover {
    animation-play-state: paused;
}

.press-ticker-track span {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    margin: 0 18px;
}

.press-ticker-track .pt-sep {
    color: var(--red);
    font-size: 7px;
    margin: 0 2px;
    letter-spacing: 0;
}

@keyframes pressTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Article Collage ── */
.press-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 310px;
    gap: 3px;
    background: #111;
}

/* Grid placement — 4 cols × 4 rows */
.pc-a { grid-column: 1 / 3; grid-row: 1 / 3; }  /* hero: 2×2 */
.pc-b { grid-column: 3 / 4; grid-row: 1 / 2; }  /* pullquote: 1×1 */
.pc-c { grid-column: 4 / 5; grid-row: 1 / 2; }  /* mini img: 1×1 */
.pc-d { grid-column: 3 / 5; grid-row: 2 / 3; }  /* wide: 2×1 */
.pc-e { grid-column: 1 / 2; grid-row: 3 / 4; }  /* stat: 1×1 */
.pc-f { grid-column: 2 / 3; grid-row: 3 / 4; }  /* snippet: 1×1 */
.pc-g { grid-column: 3 / 5; grid-row: 3 / 5; }  /* tall: 2×2 */
.pc-h { grid-column: 1 / 3; grid-row: 4 / 5; }  /* award: 2×1 */

/* ── Card base ── */
.pc {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: filter 0.35s ease;
}

/* ── A: Hero dark image ── */
.pc-a {
    background: #0d0d0d;
    justify-content: flex-end;
}

.pc-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    transition: opacity 0.5s ease, transform 0.7s ease;
}

.pc-a:hover .pc-img-bg {
    opacity: 0.62;
    transform: scale(1.04);
}

.pc-a-body {
    position: relative;
    z-index: 1;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

/* ── B: Pullquote red ── */
.pc-b {
    background: var(--red);
    padding: 38px 34px;
    justify-content: space-between;
}

.pc-bq {
    font-family: 'Playfair Display', serif;
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.45;
    color: #fff;
    border: none;
    padding: 0;
    margin: 0;
    font-style: italic;
}

/* ── C: Mini image + text ── */
.pc-c {
    background: #fff;
    flex-direction: column;
}

.pc-c-img {
    flex: 1;
    overflow: hidden;
}

.pc-c-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.pc-c:hover .pc-c-img img {
    transform: scale(1.05);
}

.pc-c-body {
    padding: 18px 22px 22px;
    border-top: 1px solid rgba(0,0,0,0.07);
}

/* ── D: Wide gray editorial ── */
.pc-d {
    background: #e5e5e5;
    flex-direction: row;
    align-items: stretch;
}

.pc-d-img {
    flex: 0 0 44%;
    overflow: hidden;
}

.pc-d-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.55s ease, opacity 0.4s ease;
}

.pc-d:hover .pc-d-img img {
    transform: scale(1.04);
    opacity: 1;
}

.pc-d-body {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc-d .pc-hl-md   { color: #111; }
.pc-d .pc-ex-sm   { color: rgba(0,0,0,0.52); }
.pc-d .pc-date    { color: rgba(0,0,0,0.35); }

/* ── E: Stat card — red ── */
.pc-e {
    background: var(--red);
    padding: 34px 32px;
    justify-content: flex-end;
}

.pc-stat-n {
    font-size: 88px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.04em;
    margin: 8px 0 6px;
}

.pc-stat-lb {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ── F: Text snippet white ── */
.pc-f {
    background: #fff;
    padding: 34px 30px;
    justify-content: space-between;
}

/* ── G: Tall portrait gray ── */
.pc-g {
    background: #e5e5e5;
    flex-direction: column;
}

.pc-g-img {
    flex: 0 0 58%;
    overflow: hidden;
}

.pc-g-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pc-g:hover .pc-g-img img {
    transform: scale(1.04);
}

.pc-g-body {
    flex: 1;
    padding: 22px 26px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 2px solid rgba(0,0,0,0.08);
}

/* ── H: Award card — red ── */
.pc-h {
    background: var(--red);
    padding: 44px 52px;
    flex-direction: row;
    align-items: center;
    gap: 36px;
}

.pc-award-star {
    font-size: 68px;
    line-height: 1;
    color: rgba(255,255,255,0.85);
    flex-shrink: 0;
}

.pc-h-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pc-award-org {
    font-size: 9px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
}

.pc-award-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.pc-award-q {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    font-style: italic;
    margin: 0;
}

/* ── Shared typographic helpers ── */
.pc-pub {
    display: block;
    font-size: 9px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    font-weight: 700;
}

.pc-pub-red   { color: var(--red); }
.pc-pub-fade  { color: rgba(255,255,255,0.52); }
.pc-pub-muted { color: rgba(255,255,255,0.28); }

.pc-date {
    display: block;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
}

.pc-date-light { color: rgba(255,255,255,0.38); }
.pc-date-dim   { color: rgba(255,255,255,0.28); }
.pc-date-muted { color: rgba(0,0,0,0.3); }

/* Headlines */
.pc-hl {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 12px 0 14px;
}

.pc-hl-sm {
    font-family: 'Playfair Display', serif;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin: 9px 0 12px;
}

.pc-hl-md {
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin: 12px 0 10px;
}

.pc-hl-dk { color: #111 !important; }

/* Excerpts */
.pc-ex {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin: 0 0 18px;
}

.pc-ex-sm {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.48);
    margin: 0 0 16px;
}

.pc-ex-dk { color: rgba(0,0,0,0.5) !important; }

/* Links */
.pc-link {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    transition: letter-spacing 0.3s ease;
}

.pc-link:hover {
    letter-spacing: 0.55em;
    color: var(--red);
}

.pc-link-dk {
    color: #111 !important;
}

.pc-link-dk:hover {
    color: var(--red) !important;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .press-header {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 48px 64px;
    }

    .press-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 290px;
    }

    .pc-a { grid-column: 1 / 3; grid-row: 1 / 3; }
    .pc-b { grid-column: 1 / 2; grid-row: 3 / 4; }
    .pc-c { grid-column: 2 / 3; grid-row: 3 / 4; }
    .pc-d { grid-column: 1 / 3; grid-row: 4 / 5; }
    .pc-e { grid-column: 1 / 2; grid-row: 5 / 6; }
    .pc-f { grid-column: 2 / 3; grid-row: 5 / 6; }
    .pc-g { grid-column: 1 / 3; grid-row: 6 / 8; }
    .pc-h { grid-column: 1 / 3; grid-row: 8 / 9; }
}

@media (max-width: 600px) {
    .press-header { padding: 0 24px 48px; }
    .press-title  { font-size: 56px; }

    .press-collage {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .pc-a, .pc-b, .pc-c, .pc-d,
    .pc-e, .pc-f, .pc-g, .pc-h {
        grid-column: auto;
        grid-row: auto;
    }

    .pc   { min-height: 280px; }
    .pc-a { min-height: 440px; }
    .pc-g { min-height: 520px; }
    .pc-d { flex-direction: column; }
    .pc-d-img { flex: 0 0 200px; }
    .pc-h { flex-direction: column; align-items: flex-start; padding: 36px 28px; gap: 16px; }
    .pc-award-star { font-size: 44px; }
}

/* ── Bold Header ── */
.press-hd-bold {
    display: grid;
    grid-template-columns: 20px 1fr 0px;
    align-items: stretch;
    background: #fff;
    min-height: 210px;
}

.press-hd-bar {
    background: var(--red);
}

.press-hd-bar-r {
    background: var(--red);
}

.press-hd-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 44px 60px;
    gap: 6px;
}

.press-hd-eye {
    display: block;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.42);
    font-weight: 600;
    margin-bottom: 4px;
}

.press-hd-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    line-height: 1;
}

.press-hd-t1 {
    display: block;
    font-size: clamp(28px, 4.5vw, 70px);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

.press-hd-t2 {
    display: block;
    font-size: clamp(28px, 4.5vw, 70px);
    font-weight: 900;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.press-hd-rule {
    width: 100%;
    height: 4px;
    background: #111;
    margin-top: 14px;
}

/* ── Featured Article ── */
.press-featured {
    display: grid;
    grid-template-columns: 430px 1fr;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.07);
    max-width: 1400px;
    margin: 0 auto;
}

.press-feat-logo {
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
    overflow: hidden;
}

.press-feat-logo-top {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 36px 36px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    min-height: 170px;
}

.press-feat-logo-btm {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.press-feat-logo-btm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s ease;
}

.press-featured:hover .press-feat-logo-btm img {
    transform: scale(1.04);
}

.press-feat-photo-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: rgba(0,0,0,0.72);
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
    letter-spacing: 0.02em;
    margin: 0;
}

.press-feat-photo-cap em {
    font-style: normal;
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 8px;
}

.press-feat-logo-name {
    display: block;
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1;
}

.press-feat-logo-tag {
    display: block;
    font-size: 9px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    margin-top: 10px;
}

.press-feat-body {
    padding: 52px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 5px solid var(--red);
}

.press-feat-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.press-feat-pub {
    font-size: 9px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--red);
}

.press-feat-sep {
    color: rgba(0,0,0,0.25);
    font-size: 11px;
}

.press-feat-date {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    font-weight: 600;
}

.press-feat-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin: 0 0 14px;
}

.press-feat-byline {
    font-size: 12px;
    color: rgba(0,0,0,0.45);
    margin: 0 0 22px;
    letter-spacing: 0.05em;
}

.press-feat-excerpt {
    font-size: 18px;
    line-height: 1.60;
    color: rgba(0,0,0,92);
    margin: 0 0 12px;
    max-width: 100%;
        font-family: "Courier New", Courier, monospace;
}

.press-feat-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid var(--red);
    padding-bottom: 3px;
    transition: letter-spacing 0.3s ease, color 0.25s ease;
}

.press-feat-link:hover {
    letter-spacing: 0.5em;
    color: #111;
    border-color: #111;
}

/* ── Designer Cards Collage ── */
.press-collage-new {
    background: #fff;
    padding: 0;
}

.press-cn-hd {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.press-cn-hd span {
    font-size: 9px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.42);
    font-weight: 700;
    white-space: nowrap;
}

.press-cn-rule {
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.15);
}

.press-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

/* ── Individual cards ── */
.pdc {
    background: #fff;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: none;
    opacity: 0;
    will-change: opacity, transform;
}

.press-cards-grid.cards-in .pdc {
    animation: pdcFlyIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.press-cards-grid.cards-in .pdc:nth-child(1) { animation-delay: 0.05s; }
.press-cards-grid.cards-in .pdc:nth-child(2) { animation-delay: 0.22s; }
.press-cards-grid.cards-in .pdc:nth-child(3) { animation-delay: 0.38s; }
.press-cards-grid.cards-in .pdc:nth-child(4) { animation-delay: 0.54s; }
.press-cards-grid.cards-in .pdc:nth-child(5) { animation-delay: 0.70s; }

.press-cards-grid.cards-in .pdc:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 72px rgba(0,0,0,0.18);
}

@keyframes pdcFlyIn {
    0%   { opacity: 0; transform: translateY(56px) scale(0.95); filter: blur(6px); }
    55%  { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Card stagger positions */
.pdc-1 { margin-top: 0; }
.pdc-2 { margin-top: 0; }
.pdc-3 { margin-top: 0; }
.pdc-4 { background: #111; margin-top: 0; z-index: 1; position: relative; }
.pdc-4 .pdc-img { aspect-ratio: 4 / 1.2; }
.pdc-5 {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: 280px 1fr;
    margin-top: 0;
}

.pdc-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.pdc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.42) 100%);
    opacity: 0.85;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pdc:hover .pdc-img::after { opacity: 0.3; }

.pdc-num {
    position: absolute;
    bottom: 12px;
    left: 16px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    transition: color 0.4s ease;
}

.pdc:hover .pdc-num { color: rgba(255,255,255,0.28); }

.pdc-4 .pdc-num { color: rgba(255,255,255,0.10); }

.pdc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.06) saturate(1.08);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.pdc:hover .pdc-img img {
    transform: scale(1.09);
    filter: contrast(1.1) saturate(1.15);
}

.pdc-img-wide {
    aspect-ratio: unset;
    height: 100%;
    min-height: 140px;
}

.pdc-body {
    padding: 16px 18px 20px;
}

.pdc-cat {
    display: inline-block;
    font-size: 8px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}

.pdc-4 .pdc-cat {
    color: rgba(255,255,255,0.55);
}

.pdc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin: 0 0 8px;
}

.pdc-4 .pdc-title {
    color: #fff;
}

.pdc-quote {
    font-style: italic;
    font-size: 11px;
    line-height: 1.55;
    color: var(--red);
    border-left: 2px solid var(--red);
    padding-left: 10px;
    margin: 0 0 8px;
    font-family: 'Playfair Display', serif;
}

.pdc-4 .pdc-quote {
    color: rgba(255,255,255,0.75);
    border-left-color: rgba(255,255,255,0.3);
}

.pdc-text {
    font-size: 11px;
    line-height: 1.55;
    color: rgb(0 0 0 / 85%);
    margin: 0;
    font-family: "Courier New", Courier, monospace;
}

.pdc-4 .pdc-text {
    color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════
   DESIGNER ARTICLE COLLAGE — Editorial Redesign
═══════════════════════════════════════════════════ */


/* ── Collage grid ── */
.dac-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 460px 300px 260px;
    gap: 3px;
    background: #e8e8e8;
}

.dac-c1 { grid-column: 1; grid-row: 1 / 3; }
.dac-c2 { grid-column: 2; grid-row: 1; }
.dac-c3 { grid-column: 3; grid-row: 1; }
.dac-c4 { grid-column: 2 / 4; grid-row: 2; }
.dac-c5 { grid-column: 1 / 4; grid-row: 3; }

/* ── Individual cards ── */
.dac-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.dac-fig {
    position: absolute;
    inset: 0;
    margin: 0;
}

.dac-fig::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.10) 70%,
        transparent 100%
    );
    transition: opacity 0.5s ease;
}

.dac-card:hover .dac-fig::after {
    opacity: 0.88;
}

.dac-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.08);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.dac-card:hover .dac-fig img {
    transform: scale(1.07);
    filter: saturate(1.05) contrast(1.12);
}

/* ── Card body (always at bottom) ── */
.dac-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 26px;
    color: #fff;
    z-index: 1;
}

.dac-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 9px;
}

.dac-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.28);
    font-family: 'Playfair Display', serif;
}

.dac-cat {
    font-size: 8px;
    letter-spacing: 0.44em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--red);
}

.dac-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 1.4vw, 21px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 5px;
    letter-spacing: -0.01em;
}

.dac-name {
    display: block;
    font-size: 9px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0;
}

/* ── Hover reveal ── */
.dac-reveal {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease,
                margin-top 0.4s ease;
    margin-top: 0;
}

.dac-card:hover .dac-reveal {
    max-height: 220px;
    opacity: 1;
    margin-top: 16px;
}

.dac-quote {
    font-style: italic;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.80);
    border-left: 2px solid var(--red);
    padding-left: 12px;
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
}

.dac-text {
    font-size: 11px;
    line-height: 1.65;
    color: rgba(255,255,255,0.48);
    margin: 0 0 14px;
}

.dac-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    padding-bottom: 3px;
    transition: color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.dac-btn:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.dac-btn em {
    font-style: normal;
    display: inline-block;
    transition: transform 0.25s ease;
}

.dac-btn:hover em {
    transform: translateX(5px);
}

/* ── Entrance animation ── */
.dac-grid .dac-card {
    opacity: 0;
    transform: translateY(48px) scale(0.97);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.dac-grid.dac-in .dac-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dac-grid.dac-in .dac-c1 { transition-delay: 0.05s; }
.dac-grid.dac-in .dac-c2 { transition-delay: 0.22s; }
.dac-grid.dac-in .dac-c3 { transition-delay: 0.35s; }
.dac-grid.dac-in .dac-c4 { transition-delay: 0.48s; }
.dac-grid.dac-in .dac-c5 { transition-delay: 0.60s; }

/* ── DAC Responsive ── */
@media (max-width: 1100px) {
    .dac-header { padding: 52px 44px 40px; }
    .dac-hd-content { gap: 36px; }
    .dac-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 380px 380px 280px 260px;
    }
    .dac-c1 { grid-column: 1 / 3; grid-row: 1; }
    .dac-c2 { grid-column: 1; grid-row: 2; }
    .dac-c3 { grid-column: 2; grid-row: 2; }
    .dac-c4 { grid-column: 1 / 3; grid-row: 3; }
    .dac-c5 { grid-column: 1 / 3; grid-row: 4; }
}

@media (max-width: 680px) {
    .dac-header { padding: 40px 24px 32px; }
    .dac-hd-content { flex-direction: column; align-items: flex-start; gap: 20px; }
    .dac-hd-count { writing-mode: horizontal-tb; }
    .dac-hd-sub { max-width: none; }
    .dac-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 320px);
    }
    .dac-c1, .dac-c2, .dac-c3, .dac-c4, .dac-c5 {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    .dac-body { padding: 22px 20px 20px; }
    .dac-title { font-size: 16px; }
}

/* ── Press section responsive ── */
@media (max-width: 1100px) {
    .press-hd-bold { grid-template-columns: 140px 1fr 60px; }
    .press-hd-main { padding: 36px 44px; }
    .press-featured { grid-template-columns: 1fr; }
    .press-feat-logo { flex-direction: row; min-height: 260px; }
    .press-feat-logo-top { flex: 0 0 200px; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.08); min-height: auto; }
    .press-feat-logo-btm { min-height: 260px; }
    .press-feat-body { padding: 40px 44px; border-left: none; border-top: 5px solid var(--red); }
    .press-collage-new { padding: 0; }
    .press-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .pdc-5 { grid-column: 1 / 3; grid-template-columns: 1fr; }
    .pdc-5 .pdc-img-wide { height: 150px; }
}

@media (max-width: 680px) {
    .press-hd-bold { grid-template-columns: 60px 1fr 30px; min-height: 160px; }
    .press-hd-main { padding: 28px 24px; }
    .press-feat-logo { flex-direction: column; }
    .press-feat-logo-top { flex: 0 0 auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); min-height: 130px; }
    .press-feat-logo-btm { min-height: 200px; }
    .press-collage-new { padding: 0; }
    .press-cards-grid { grid-template-columns: 1fr; gap: 0; }
    .pdc-2, .pdc-3, .pdc-4 { margin-top: 0; }
    .pdc-4 { position: static; }
    .pdc-5 { grid-column: auto; display: block; }
    .pdc-5 .pdc-img-wide { height: 150px; }
    .press-feat-body { padding: 32px 24px; }
}

/* ══════════════════════════════════════════════
   PRESS COLLAGE WALL
══════════════════════════════════════════════ */

.press-wall {
    background: #f5f3ef;
    padding: 0px 50px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    position: relative;
    overflow: visible;
}

/* subtle grain on cream pinboard */
.press-wall::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.022;
    pointer-events: none;
    z-index: 0;
}

/* ── Cell base ── */
.pw-cell {
    position: relative;
    background: #fff;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.07),
        0 5px 18px rgba(0,0,0,0.13),
        0 14px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
    opacity: 0;
    transform: rotate(var(--rot, 0deg)) translateY(55px) scale(0.97);
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    will-change: transform, opacity;
}

.pw-cell.pw-visible {
    opacity: 1;
    transform: rotate(var(--rot, 0deg)) translateY(0) scale(1);
}

.pw-cell:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.025) !important;
    box-shadow:
        0 3px 10px rgba(0,0,0,0.11),
        0 16px 48px rgba(0,0,0,0.2),
        0 32px 80px rgba(0,0,0,0.10) !important;
    border-color: transparent !important;
    z-index: 20;
}

/* Grid placement + individual rotations */
.pw-forbes     { --rot: -1.5deg; grid-column: 1; grid-row: 1 / 3; display: flex; flex-direction: column; }
.pw-quote      { --rot:  2.2deg; grid-column: 2; grid-row: 1;     background: var(--red); display: flex; align-items: center; justify-content: center; }
.pw-bazaar     { --rot: -1.8deg; grid-column: 3; grid-row: 1;     display: flex; flex-direction: column; }
.pw-stat       { --rot:  3deg;   grid-column: 2; grid-row: 2;     background: #111; display: flex; flex-direction: column; justify-content: center; padding: 40px 36px; }
.pw-elle       { --rot:  0.8deg; grid-column: 3; grid-row: 2;     display: flex; flex-direction: column; }
.pw-fn         { --rot:  1.5deg; grid-column: 1; grid-row: 3 / 5; display: flex; flex-direction: column; }
.pw-impression { --rot: -2deg;   grid-column: 2; grid-row: 3 / 5; background: #0d0d0d; position: relative; overflow: hidden; }
.pw-marie      { --rot:  2deg;   grid-column: 3; grid-row: 3;     display: flex; flex-direction: column; }
.pw-madame     { --rot: -1.2deg; grid-column: 3; grid-row: 4;     display: flex; }

/* ── Tape decoration ── */
.pw-tape {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
    width: 64px;
    height: 26px;
    background: rgba(220, 215, 175, 0.78);
    z-index: 10;
    pointer-events: none;
    border-radius: 1px;
}
.pw-tape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(0,0,0,0.04) 0, rgba(0,0,0,0.04) 2px,
        transparent 2px, transparent 6px
    );
}
.pw-tape-corner {
    top: -8px;
    left: auto;
    right: 28px;
    transform: rotate(9deg);
}
.pw-tape-v {
    left: 50%;
    top: -18px;
    width: 26px;
    height: 54px;
    transform: translateX(-50%) rotate(0deg);
}

/* ── Pin decoration ── */
.pw-pin {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 38% 35%, #ff7070, #8b0000);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.55), inset 0 1px 2px rgba(255,255,255,0.4);
    z-index: 10;
    pointer-events: none;
}
.pw-pin::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 5px;
    background: linear-gradient(to bottom, #aaa, #666);
}
.pw-pin-tl { top: 12px; left: 16px;   transform: none; }
.pw-pin-tr { top: 12px; right: 16px;  left: auto; transform: none; }

/* ── Shared image transitions ── */
.pw-img-wrap img,
.pw-fn-img img,
.pw-elle-img img,
.pw-mag-img img,
.pw-imp-img img,
.pw-marie-img img,
.pw-madame-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
    filter: contrast(1.04) saturate(1.06);
}
.pw-cell:hover .pw-img-wrap img,
.pw-cell:hover .pw-fn-img img,
.pw-cell:hover .pw-elle-img img,
.pw-cell:hover .pw-mag-img img,
.pw-cell:hover .pw-imp-img img,
.pw-cell:hover .pw-marie-img img,
.pw-cell:hover .pw-madame-img img {
    transform: scale(1.07);
    filter: contrast(1.08) saturate(1.12);
}

/* ── Shared text helpers ── */
.pw-img-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 60%);
    pointer-events: none;
}
.pw-source-stamp {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: #111;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
}
.pw-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.pw-meta-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pw-date-tag {
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
    font-weight: 600;
}
.pw-dot { color: rgba(0,0,0,0.22); font-size: 10px; }
.pw-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 1.5vw, 21px);
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin: 0;
}
.pw-excerpt {
    font-size: 16.5px;
    line-height: 1.72;
    color: rgba(0,0,0,0.58);
    margin: 0;
    font-family: 'Courier New', monospace;
}
.pw-cta {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px solid var(--red);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: letter-spacing 0.3s ease, color 0.25s ease, border-color 0.25s ease;
}
.pw-cta:hover { letter-spacing: 0.52em; }
.pw-cta-dark { color: #111; border-color: rgba(0,0,0,0.4); }
.pw-cta-dark:hover { color: var(--red); border-color: var(--red); }
.pw-cta-sm { font-size: 8px; }

/* ── Forbes ── */
.pw-forbes .pw-img-wrap {
    position: relative;
    overflow: hidden;
    flex: 0 0 300px;
}

/* ── Quote ── */
.pw-quote-inner { padding: 38px 34px; text-align: center; }
.pw-qt-mark {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    color: rgba(255,255,255,0.22);
    line-height: 0.55;
    display: block;
    margin-bottom: 14px;
}
.pw-bq {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 1.6vw, 22px);
    font-style: italic;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 18px;
    border: none;
    padding: 0;
}
.pw-cite {
    display: block;
    font-size: 8.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-style: normal;
}

/* ── Bazaar ── */
.pw-mag-hd {
    padding: 26px 28px 20px;
    border-bottom: 3px solid #111;
    flex: 0 0 auto;
}
.pw-mag-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #111;
    line-height: 0.9;
    text-transform: uppercase;
}
.pw-mag-sub {
    display: block;
    font-size: 7px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    font-weight: 600;
    margin-top: 10px;
}
.pw-mag-img { flex: 1; overflow: hidden; min-height: 160px; position: relative; }
.pw-mag-footer {
    padding: 11px 20px;
    border-top: 1px solid rgba(0,0,0,0.07);
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
}
.pw-mag-issue {
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
    font-weight: 600;
}
.pw-mag-rbar {
    width: 28px;
    height: 3px;
    background: var(--red);
}

/* ── Stat ── */
.pw-stat-eyebrow {
    display: block;
    font-size: 8px;
    letter-spacing: 0.44em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    font-weight: 700;
    margin-bottom: 8px;
}
.pw-big-num {
    display: block;
    font-size: clamp(64px, 7.5vw, 100px);
    font-weight: 900;
    line-height: 1;
    color: var(--red);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}
.pw-big-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.68);
    font-weight: 600;
    line-height: 1.5;
}
.pw-stat-sub {
    display: block;
    font-size: 8px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.28);
    margin-top: 14px;
    line-height: 1.7;
}

/* ── ELLE ── */
.pw-elle-header {
    background: #111;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
}
.pw-elle-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}
.pw-elle-tag {
    font-size: 7px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    text-align: right;
}
.pw-elle-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}
.pw-elle-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 16px;
    background: rgba(0,0,0,0.6);
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    font-weight: 600;
}

/* ── Fashion Network ── */
.pw-fn-row { display: flex; flex: 1; overflow: hidden; min-height: 400px; }
.pw-fn-img { flex: 0 0 42%; overflow: hidden; position: relative; }
.pw-fn-body {
    flex: 1;
    padding: 30px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}
.pw-fn-source {
    display: block;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}
.pw-fn-divider { height: 2px; background: var(--red); width: 36px; flex-shrink: 0; }
.pw-fn-text {
    font-size: 13.5px;
    line-height: 1.72;
    color: rgb(0 0 0 / 77%);
    font-family: 'Courier New', monospace;
    margin: 0;
}
.pw-fn-text-sm { font-size: 13.5px; color: rgba(0,0,0,82%); }

/* ── The Impression ── */
.pw-imp-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.pw-imp-img img { width: 100%; height: 100%; object-fit: cover; }
.pw-imp-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
.pw-imp-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 26px;
    z-index: 2;
}
.pw-imp-source {
    display: block;
    font-size: 8px;
    letter-spacing: 0.46em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.52);
    font-weight: 700;
    margin-bottom: 6px;
}
.pw-imp-sub {
    display: block;
    font-size: 7px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 10px;
}
.pw-imp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(19px, 2vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}

/* ── Marie Claire ── */
.pw-marie-hd {
    background: #6b1a2b;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 0 0 auto;
}
.pw-marie-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.pw-marie-logo em { font-style: italic; font-weight: 400; font-size: 1.12em; }
.pw-marie-tag {
    font-size: 7px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}
.pw-marie-img { flex: 1; overflow: hidden; min-height: 160px; position: relative; }

/* ── Madame ── */
.pw-madame-inner { display: flex; width: 100%; }
.pw-madame-img { flex: 0 0 44%; overflow: hidden; position: relative; }
.pw-madame-body {
    flex: 1;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    justify-content: center;
}
.pw-madame-logo {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 900;
    color: #111;
    letter-spacing: -0.02em;
    font-style: italic;
}
.pw-madame-ex {
    font-size: 11px;
    line-height: 1.62;
    color: rgba(0,0,0,0.52);
    font-style: italic;
    margin: 0;
}

/* ── Collage header ── */
.press-collage-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 56px 60px 36px;
    background: rgb(248, 248, 248);
}
.pch-rule { flex: 1; height: 1px; background: rgba(0,0,0,0.13); }
.pch-label {
    font-size: 8px;
    letter-spacing: 0.44em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    font-weight: 700;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .press-wall {
        grid-template-columns: 1fr 1fr;
        padding: 50px 36px 60px;
        gap: 20px;
    }
    .pw-forbes     { grid-column: 1; grid-row: 1 / 3; }
    .pw-quote      { grid-column: 2; grid-row: 1; }
    .pw-stat       { grid-column: 2; grid-row: 2; }
    .pw-bazaar     { grid-column: 1 / 3; grid-row: 3; flex-direction: row; }
    .pw-bazaar .pw-mag-hd { flex: 0 0 220px; border-bottom: none; border-right: 3px solid #111; }
    .pw-elle       { grid-column: 1 / 3; grid-row: 4; flex-direction: row-reverse; }
    .pw-elle .pw-elle-header { flex: 0 0 180px; flex-direction: column; justify-content: center; }
    .pw-fn         { grid-column: 1; grid-row: 5 / 7; }
    .pw-impression { grid-column: 2; grid-row: 5 / 7; }
    .pw-marie      { grid-column: 1; grid-row: 7; }
    .pw-madame     { grid-column: 2; grid-row: 7; }
    .press-collage-header { padding: 48px 44px 32px; }
}

@media (max-width: 680px) {
    .press-wall {
        grid-template-columns: 1fr;
        padding: 30px 18px 40px;
        gap: 16px;
    }
    .pw-cell { --rot: 0deg !important; }
    .pw-forbes, .pw-quote, .pw-bazaar, .pw-stat,
    .pw-elle, .pw-fn, .pw-impression, .pw-marie, .pw-madame {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    .pw-bazaar { flex-direction: column; }
    .pw-bazaar .pw-mag-hd { border-right: none; border-bottom: 3px solid #111; }
    .pw-elle { flex-direction: column; }
    .pw-elle .pw-elle-header { flex-direction: row; }
    .pw-fn-row { flex-direction: column; min-height: auto; }
    .pw-fn-img { flex: 0 0 220px; }
    .pw-imp-img { position: relative; min-height: 300px; }
    .pw-imp-body { position: absolute; }
    .press-collage-header { padding: 40px 24px 28px; }
}

/* ══════════════════════════════════════════════
   PRESS — VOGUE ITALIA
══════════════════════════════════════════════ */
.press-vogue {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fce8e8;
    min-height: 620px;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.press-vogue-left {
    display: flex;
    background: #fff;
}

.pvl-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    text-align: center;
}

.pvb-wordmark {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #111;
    line-height: 1;
    text-transform: uppercase;
}

.pvb-country {
    display: block;
    font-size: 9px;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: #111;
    margin-top: 5px;
    font-weight: 700;
}

.pvb-rule {
    width: 36px;
    height: 1px;
    background: #111;
    margin: 18px auto;
}

.pvb-nav {
    font-size: 7px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    line-height: 2.2;
}

.pvl-red-stripe {
    flex: 0 0 14px;
    background: var(--red);
}

.press-vogue-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px 16px 16px 8px;
    background: #fce8e8;
}

.pvr-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pvr-img {
    position: relative;
    overflow: hidden;
    flex: 1;
    background: #111;
    min-height: 140px;
}

.pvr-img-tall { flex: 2; }

.pvr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
    filter: contrast(1.04) saturate(1.06);
}

.pvr-img:hover img { transform: scale(1.05); }

.pvr-cap {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: 7px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    pointer-events: none;
}

.pvr-red-block {
    flex: 0 0 70px;
    background: var(--red);
}

/* ══════════════════════════════════════════════
   PRESS — BAZAAR + ELLE
══════════════════════════════════════════════ */
.press-pubs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 340px;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.press-pub-bazaar {
    display: flex;
    overflow: hidden;
}

.ppb-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #fff;
    padding: 40px 44px 0;
    overflow: hidden;
}

.ppb-logo {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #111;
    line-height: 0.9;
    text-transform: uppercase;
}

.ppb-tag {
    display: block;
    font-size: 8px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 24px;
}

.ppb-photo {
    overflow: hidden;
    flex: 1;
    min-height: 160px;
}

.ppb-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.press-pub-bazaar:hover .ppb-photo img { transform: scale(1.04); }

.ppb-red-col {
    flex: 0 0 16px;
    background: var(--red);
}

.press-pub-elle {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ppe-dark {
    flex: 0 0 130px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

.ppe-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.ppe-photo {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #fce8e8;
}

.ppe-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.press-pub-elle:hover .ppe-photo img { transform: scale(1.04); }

.ppe-photo-ov {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: rgba(0,0,0,0.55);
}

.ppe-ov-tag {
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
}

/* ── Marie Claire ── */
.press-pub-marie {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-left: 1px solid rgba(0,0,0,0.06);
}

.ppm-header {
    flex: 0 0 130px;
    background: #6b1a2b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    gap: 8px;
}

.ppm-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-align: center;
    text-transform: none;
}

.ppm-logo em {
    font-style: italic;
    font-weight: 400;
    font-size: 1.15em;
}

.ppm-tag {
    font-size: 7px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.ppm-photo {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f5e8ec;
}

.ppm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.press-pub-marie:hover .ppm-photo img { transform: scale(1.04); }

.ppm-photo-ov {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: rgba(107,26,43,0.65);
}

.ppm-ov-tag {
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

/* ── THE IMPRESSION + MADAME row ── */
.press-pubs-row-b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* THE IMPRESSION */
.press-pub-impression {
    display: flex;
    overflow: hidden;
    background: #0a0a0a;
}

.ppi-sidebar {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 28px;
    gap: 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.ppi-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
}

.ppi-tag {
    font-size: 7px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    line-height: 1.8;
}

.ppi-photo {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.ppi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
    filter: grayscale(30%);
}

.press-pub-impression:hover .ppi-photo img { transform: scale(1.04); filter: grayscale(0%); }

.ppi-photo-ov {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ppi-ov-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.ppi-ov-sub {
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

/* MADAME */
.press-pub-madame {
    display: flex;
    overflow: hidden;
    border-left: 1px solid rgba(0,0,0,0.06);
}

.ppm2-photo {
    flex: 0 0 48%;
    overflow: hidden;
}

.ppm2-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.press-pub-madame:hover .ppm2-photo img { transform: scale(1.04); }

.ppm2-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 36px;
    background: #fdf6f0;
    gap: 12px;
}

.ppm2-logo {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
    color: #b8864e;
    line-height: 1;
}

.ppm2-tag {
    display: block;
    font-size: 8px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    font-weight: 600;
}

.ppm2-excerpt {
    font-family: 'Playfair Display', serif;
    font-size: clamp(13px, 1.3vw, 15px);
    color: #444;
    line-height: 1.65;
    font-style: italic;
    margin-top: 4px;
}

.ppm2-link {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b8864e;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    transition: opacity 0.25s;
}

.ppm2-link:hover { opacity: 0.65; }

/* ══════════════════════════════════════════════
   PRESS — FASHION NETWORK
══════════════════════════════════════════════ */
.press-fn {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff;
    min-height: 480px;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.press-fn-sidebar {
    display: flex;
    border-right: 1px solid rgba(0,0,0,0.07);
}

.pfn-red-bar {
    flex: 0 0 12px;
    background: var(--red);
}

.pfn-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 28px;
}

.pfn-logo {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    border-bottom: 2px solid #111;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.pfn-nav {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.747);
    line-height: 2.2;
}

.press-fn-article {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.pfn-img {
    overflow: hidden;
    background: #111;
}

.pfn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: contrast(1.04) saturate(1.06);
    transition: transform 0.65s ease;
}

.press-fn:hover .pfn-img img { transform: scale(1.04); }

.pfn-text {
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.pfn-text p {
        font-size: 18px;
    line-height: 1.60;
    color: rgba(0, 0, 0, 92);
    margin: 0 0 12px;
    max-width: 100%;
    font-family: "Courier New", Courier, monospace;
}

.pfn-read-more {
    display: inline-block;
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid var(--red);
    padding-bottom: 3px;
    transition: letter-spacing 0.3s ease;
}

.pfn-read-more:hover { letter-spacing: 0.5em; }

/* ── New press sections responsive ── */
@media (max-width: 1100px) {
    .press-vogue { grid-template-columns: 1fr; }
    .press-vogue-left { flex-direction: row; min-height: 160px; }
    .pvl-brand { flex-direction: row; gap: 32px; align-items: center; padding: 28px 32px; text-align: left; }
    .pvb-rule { margin: 0 16px; height: 32px; width: 1px; }
    .pvl-red-stripe { flex: 0 0 10px; }
    .press-vogue-right { grid-template-columns: repeat(3, 1fr); padding: 12px; gap: 6px; }
    .pvr-col { flex-direction: row; }
    .pvr-red-block { flex: 0 0 50px; min-width: 50px; }
    .press-fn { grid-template-columns: 1fr; }
    .press-fn-sidebar { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); min-height: 160px; }
    .pfn-brand { flex-direction: row; align-items: center; gap: 24px; }
    .pfn-logo { border-bottom: none; border-right: 2px solid #111; padding-bottom: 0; padding-right: 18px; margin-bottom: 0; margin-right: 0; }
    .press-fn-article { grid-template-columns: 220px 1fr; }
    .pfn-text { padding: 36px 36px; }
}

@media (max-width: 680px) {
    .press-vogue { min-height: auto; }
    .press-vogue-right { grid-template-columns: 1fr 1fr; }
    .press-pubs-row { grid-template-columns: 1fr; }
    .press-pub-marie { border-left: none; border-top: 1px solid rgba(0,0,0,0.06); }
    .ppb-content { padding: 28px 28px 0; }
    .press-pubs-row-b { grid-template-columns: 1fr; }
    .press-pub-impression { min-height: 260px; }
    .press-pub-madame { flex-direction: column; border-left: none; border-top: 1px solid rgba(0,0,0,0.06); }
    .ppm2-photo { flex: 0 0 220px; }
    .ppm2-content { padding: 28px 24px; }
    .ppe-dark { flex: 0 0 100px; }
    .press-fn-article { grid-template-columns: 1fr; }
    .pfn-img { min-height: 240px; }
    .pfn-text { padding: 28px 24px; }
}

/* ══════════════════════════════════════════════
   SECTION 1 — GRADUATE RUNWAY PARIS 2026
══════════════════════════════════════════════ */
.grp-section {
    position: relative;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.grp-glow-1 {
    position: absolute;
    top: -20%; right: -10%;
    width: 55%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(220,20,60,0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: grpGlow 9s ease-in-out infinite alternate;
}

.grp-glow-2 {
    position: absolute;
    bottom: -20%; left: -5%;
    width: 45%; height: 60%;
    background: radial-gradient(ellipse at center, rgba(220,20,60,0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: grpGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes grpGlow {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(3%,4%) scale(1.1); }
}

.grp-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0.045;
    pointer-events: none;
    z-index: 1;
}

.grp-side-label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-size: 8px;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.18);
    white-space: nowrap;
    z-index: 3;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.grp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* LEFT */
.grp-left {
    padding: 100px 72px 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
}

.grp-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.grp-heading { display: flex; flex-direction: column; gap: 2px; }

.grp-h1 {
    font-size: clamp(42px, 4vw, 70px);
    font-weight: 900;
    color: #111;
    line-height: 0.88;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.grp-gold-rule {
    width: 58px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), rgba(220,20,60,0.4), var(--red));
    margin: 14px 0;
}

.grp-h2 {
    font-size: clamp(66px, 9.5vw, 148px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(220, 20, 60, 0.938);
    line-height: 0.82;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.grp-date {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    font-weight: 600;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
}

.grp-glass {
    /* background: rgba(0,0,0,0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.07);
    border-top: 2px solid var(--red); */
    /* padding: 36px 40px; */
    max-width: 100%;
    /* position: relative; */
}

/* .grp-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(to bottom, var(--red), transparent);
    opacity: 0.55;
} */

.grp-glass p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    line-height: 1.6;
    /* letter-spacing: 0.8px; */
    /* text-transform: uppercase; */
    color: rgba(0, 0, 0, 0.897);
    margin: 0 0 14px;
}

.grp-glass p:last-child { margin-bottom: 0; }

.grp-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(220,20,60,0.35);
    padding: 17px 36px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease, letter-spacing 0.35s ease;
}

.grp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.grp-cta:hover::before { transform: translateX(0); }
.grp-cta:hover { color: #fff; letter-spacing: 0.54em; }
.grp-cta span, .grp-cta i { position: relative; z-index: 1; }

/* RIGHT */
.grp-right {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: rgba(248, 248, 248, 0.25);
}

.grp-right::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(220,20,60,0.2), transparent);
    z-index: 5;
}

.grp-img-stack { position: absolute; inset: 0; }

.grp-img {
    position: absolute;
    overflow: hidden;
}

.grp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.04) saturate(0.88) brightness(0.82);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.grp-img:hover img { transform: scale(1.06); }

.grp-img-1 {
    top: 5%; right: 5%;
    width: 72%; height: 54%;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.05);
}

.grp-img-2 {
    bottom: 5%; left: 5%;
    width: 58%; height: 45%;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.05);
}

.grp-img-3 {
    top: 28%; right: 3%;
    width: 40%; height: 36%;
    z-index: 3;
    border: 1px solid rgba(220,20,60,0.28);
}

.grp-float-tag {
    position: absolute;
    bottom: 7%; right: 6%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220,20,60,0.22);
    border-left: 3px solid var(--red);
    padding: 18px 26px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.grp-ft-city {
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 0.14em;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.grp-ft-date {
    font-size: 8px;
    letter-spacing: 0.42em;
    color: rgba(0,0,0,0.42);
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .grp-inner { grid-template-columns: 1fr; }
    .grp-right { min-height: 500px; }
    .grp-left { padding: 80px 48px; }
}

@media (max-width: 600px) {
    .grp-left { padding: 64px 24px; gap: 28px; }
    .grp-right { min-height: 380px; }
    .grp-side-label { display: none; }
    .grp-glass { padding: 26px 22px; }
    .grp-h2 { -webkit-text-stroke: 1px rgba(220,20,60,0.1); }
}


/* ── ORGANISED BY STRIP (inside About section) ── */
.grp-org {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 0 40px;
    align-items: start;
    /* border-top: 1px solid #e8e8e8; */
    padding: 28px 60px 48px;
        background: rgb(248 248 248 / 25%);
}

.grp-org-tag {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #292929;
    margin-bottom: 6px;
}

.grp-org-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: rgb(220 20 60);
    display: block;
}

.grp-org-para {
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    color: #515050;
    margin: 0;
}

@media (max-width: 900px) {
    .grp-org {
        grid-template-columns: 1fr;
        padding: 28px 30px 40px;
        gap: 16px;
    }
}


/* ══════════════════════════════════════════════
   SECTION 2 — KEY HIGHLIGHTS
══════════════════════════════════════════════ */
.kh-section {
    background: #fff;
    padding: 0;
    position: relative;
    overflow: clip;
}

/* Header */
.kh-header {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 60px 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

/* ── Key Highlights Grid ─────────────────────────────── */
.kh-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 0 60px 70px;
    max-width: 1500px;
    margin: 0 auto;
}

/* Image rotation: 15 s cycle — slow 3D pan top-left → bottom-right + crossfade */
@keyframes khImgCycle {
    0% {
        opacity: 1;
        transform: perspective(700px) scale(1.08) translate(-3%, -3%)
                   rotateX(1.2deg) rotateY(-1.2deg);
    }
    28% {
        opacity: 1;
        transform: perspective(700px) scale(1.18) translate(2%, 2%)
                   rotateX(-0.4deg) rotateY(0.4deg);
    }
    34% {
        opacity: 0;
        transform: perspective(700px) scale(1.2) translate(3%, 3%)
                   rotateX(-1deg) rotateY(1deg);
    }
    93% {
        opacity: 0;
        transform: perspective(700px) scale(1.08) translate(-3%, -3%)
                   rotateX(1.2deg) rotateY(-1.2deg);
    }
    100% {
        opacity: 1;
        transform: perspective(700px) scale(1.08) translate(-3%, -3%)
                   rotateX(1.2deg) rotateY(-1.2deg);
    }
}

.kh-card {
    position: relative;
    height: 188px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    background: #111;
}

.kh-card-imgs {
    position: absolute;
    inset: 0;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.kh-card:hover .kh-card-imgs {
    transform: scale(1.06);
}

.kh-card-imgs img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: khImgCycle 15s infinite;
    filter: brightness(0.82) contrast(1.05);
    transition: filter 0.5s ease;
}

.kh-card:hover .kh-card-imgs img {
    filter: brightness(0.65) contrast(1.1);
}

.kh-card-imgs img:nth-child(1) { animation-delay: 0s;  }
.kh-card-imgs img:nth-child(2) { animation-delay: 3s;  }
.kh-card-imgs img:nth-child(3) { animation-delay: 6s;  }

.kh-card-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.22) 50%,
        transparent 78%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 13px 14px;
    z-index: 2;
}

.kh-card-num {
    display: block;
    font-size: 7px;
    letter-spacing: 0.42em;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.kh-card:hover .kh-card-num {
    color: #DC143C;
}

.kh-card-title {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.38;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Red sweep on hover */
.kh-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #DC143C;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.kh-card:hover::after { width: 100%; }

/* ── Responsive ── */
@media (max-width: 1200px) {
    .kh-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .kh-grid { grid-template-columns: repeat(3, 1fr); padding: 0 36px 56px; }
    .kh-card { height: 165px; }
}

@media (max-width: 580px) {
    .kh-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px 44px; gap: 6px; }
    .kh-card { height: 148px; }
}

.kh-eye {
    display: block;
    font-size: 10px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.kh-t1 {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 400;
    color: rgb(220 20 60);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 0;
    line-height: 1.1;
}

.kh-t2 {
        font-size: clamp(42px, 4vw, 70px);
    font-weight: 900;
    color: #111;
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 0.9;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.kh-header-desc {
        font-size: 13px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.45);
    max-width: 300px;
    text-align: right;
    padding-bottom: 8px;
    flex-shrink: 0;
}

/* Marquee */
.kh-marquee {
    background: rgba(220,20,60,0.04);
    border-top: 1px solid rgba(220,20,60,0.12);
    border-bottom: 1px solid rgba(220,20,60,0.12);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 3px;
}

.kh-mq-track {
    display: inline-block;
    white-space: nowrap;
    animation: khMarquee 32s linear infinite;
}

.kh-mq-track:hover { animation-play-state: paused; }

.kh-mq-track span {
    font-size: 9px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(220,20,60,0.55);
    font-weight: 700;
    margin: 0 22px;
    font-family: 'Playfair Display', serif;
}

.kh-mq-dot {
    color: rgba(220,20,60,0.2) !important;
    letter-spacing: 0 !important;
    margin: 0 6px !important;
}

@keyframes khMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Collage mosaic — 14 highlights ───────────────────── */
.kh-mosaic {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
    grid-template-rows: repeat(5, 168px);
    gap: 6px;
    padding: 0 0px 64px;
    max-width: 100%;
    margin: 0 auto;
}

/* Position map */
.kh-t01 { grid-column: 1;   grid-row: 1 / 3; } /* tall */
.kh-t02 { grid-column: 2/4; grid-row: 1;     } /* wide */
.kh-t03 { grid-column: 4;   grid-row: 1 / 3; } /* tall */
.kh-t04 { grid-column: 2;   grid-row: 2;     }
.kh-t05 { grid-column: 3;   grid-row: 2;     }
.kh-t06 { grid-column: 1/3; grid-row: 3;     } /* wide */
.kh-t07 { grid-column: 3;   grid-row: 3;     }
.kh-t08 { grid-column: 4;   grid-row: 3;     }
.kh-t09 { grid-column: 1;   grid-row: 4;     }
.kh-t10 { grid-column: 2/4; grid-row: 4;     } /* wide */
.kh-t11 { grid-column: 4;   grid-row: 4;     }
.kh-t12 { grid-column: 1;   grid-row: 5;     }
.kh-t13 { grid-column: 2;   grid-row: 5;     }
.kh-t14 { grid-column: 3/5; grid-row: 5;     } /* wide */

/* Tile base */
.kh-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    border-radius: 3px;
}

/* ── Image carousel inside each tile ── */
.kh-tile-imgs {
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.kh-tile:hover .kh-tile-imgs {
    transform: scale(1.06);
}

.kh-tile-imgs img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: khImgCycle 15s infinite;
    filter: brightness(0.76) contrast(1.04);
    transition: filter 0.5s ease;
}

.kh-tile:hover .kh-tile-imgs img {
    filter: brightness(0.58) contrast(1.1);
}

/* Each tile gets its own offset via CSS vars — images never change in sync */
.kh-tile-imgs img:nth-child(1) { animation-delay: var(--d1, 0s);  }
.kh-tile-imgs img:nth-child(2) { animation-delay: var(--d2, 3s);  }
.kh-tile-imgs img:nth-child(3) { animation-delay: var(--d3, 6s);  }

/* Overlay */
.kh-tile-ov {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.06) 48%, transparent 72%);
    z-index: 2;
}

.kh-tile-num {
    font-size: 7.5px;
    letter-spacing: 0.44em;
    color: rgba(255,255,255,0.38);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: color 0.35s ease;
}

.kh-tile:hover .kh-tile-num { color: var(--red); }

.kh-tile-body {
    transform: translateY(6px);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.kh-tile:hover .kh-tile-body { transform: translateY(-4px); }

.kh-tile-title {
    font-size: clamp(9px, 0.9vw, 12px);
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.35;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Red bottom sweep */
.kh-tile::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.kh-tile:hover::after { width: 100%; }

/* ════════════════════════════════════════════
   KH SPLIT LAYOUT — sticky right collage
════════════════════════════════════════════ */
.kh-split {
    display: flex;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
}

.kh-split-left {
    flex: 0 0 44%;
    max-width: 44%;
    padding: 90px 52px 120px 80px;
    position: relative;
    z-index: 1;
}

/* Vertical scroll-progress line */
.kh-progress-wrap {
    position: absolute;
    left: 40px;
    top: 90px;
    bottom: 120px;
    width: 2px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 2px;
}

.kh-progress-fill {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #DC143C, rgba(220, 20, 60, 0.3));
    border-radius: 2px;
    transition: height 0.12s ease;
}

.kh-split-right {
    flex: 0 0 56%;
    max-width: 56%;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #fff;
    contain: layout style;
    /* animation tokens */
    --kh-img-height: 148px;
    --kh-row-gap: 8px;
    --kh-col-gap: 6px;
    --kh-num-images: 10;
    --kh-col-height: 100vh;
}

.kh-split-right::before,
.kh-split-right::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30%;
    z-index: 2;
    pointer-events: none;
}

.kh-split-right::before {
    top: 0;
    background: linear-gradient(to bottom, #fff 60%, transparent 100%);
}

.kh-split-right::after {
    bottom: 0;
    background: linear-gradient(to top, #fff 60%, transparent 100%);
}

.kh-split-right .column-wrapper {
    position: absolute;
    inset: 0;
    perspective: 1200px;
    overflow: clip;
}

.kh-split-right .columns {
    position: absolute;
    width: 174%;
    top: -180px;
    left: -41%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 var(--kh-col-gap);
    transform: rotateX(38deg) rotateY(347deg) rotate(16deg) translate3d(-6em, 8em, 8em);
    transform-origin: 50%;
}

.kh-split-right .columns .column {
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
}

.kh-split-right .column.up,
.kh-split-right .column.down {
    will-change: transform;
}

.kh-split-right .columns .column div {
    height: var(--kh-img-height);
    margin-bottom: var(--kh-row-gap);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    flex-shrink: 0;
}

.kh-split-right .columns .column:nth-child(1) { padding-top: 120px; }
.kh-split-right .columns .column:nth-child(2) { padding-top: 60px; }
.kh-split-right .columns .column:nth-child(3) { padding-top: 0; }
.kh-split-right .columns .column:nth-child(4) { padding-top: 90px; }
.kh-split-right .columns .column:nth-child(5) { padding-top: 40px; }

@keyframes kh-scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(calc(-1 * ((var(--kh-img-height) + var(--kh-row-gap)) * var(--kh-num-images) - var(--kh-col-height)))); }
}

@keyframes kh-scrollDown {
    0%   { transform: translateY(calc(-1 * ((var(--kh-img-height) + var(--kh-row-gap)) * var(--kh-num-images) - var(--kh-col-height)))); }
    100% { transform: translateY(0); }
}

.kh-split-right .column.up   { animation: kh-scrollUp   28s linear infinite alternate; animation-play-state: paused; }
.kh-split-right .column.down { animation: kh-scrollDown 28s linear infinite alternate; animation-play-state: paused; }

.kh-split-right.kh-loaded .column.up,
.kh-split-right.kh-loaded .column.down { animation-play-state: running; }

/* ── Sticky 3-card collage ── */
.kh-collage {
    width: 100%;
    height: calc(100vh - 40px);
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 58% 42%;
    gap: 8px;
}

.kh-col-c1,
.kh-col-c2,
.kh-col-c3 {
    position: relative;
    overflow: hidden;
    background: #111;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s ease;
}

.kh-col-c1:hover,
.kh-col-c2:hover,
.kh-col-c3:hover {
    transform: scale(1.012);
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
    z-index: 2;
}

.kh-col-c1 {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 24px 4px 4px 24px;
}

.kh-col-c2 {
    grid-column: 2;
    grid-row: 1;
    border-radius: 4px 24px 4px 4px;
}

.kh-col-c3 {
    grid-column: 2;
    grid-row: 2;
    border-radius: 4px 4px 24px 4px;
}

/* Depth gradient on collage cards */
.kh-col-c1::after,
.kh-col-c2::after,
.kh-col-c3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        transparent 42%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}

/* ── Section header ── */
.kh-sl-hd {
    padding-bottom: 44px;
}

.kh-sl-desc {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.45);
    max-width: 420px;
    margin-top: 22px;
    font-family: 'Montserrat', sans-serif;
}

/* ── Highlights list ── */
.kh-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Entrance animation */
@keyframes khItemIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.kh-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease;
}

.kh-item.kh-in {
    animation: khItemIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Left red accent bar */
.kh-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 50%;
    background: #DC143C;
    border-radius: 0 2px 2px 0;
    transform: translateY(-50%) scaleY(0);
    transform-origin: center;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.kh-item:hover::before,
.kh-item--active::before {
    transform: translateY(-50%) scaleY(1);
}

.kh-item:hover,
.kh-item--active {
    padding-left: 16px;
}

.kh-item-num {
    font-size: 9.5px;
    letter-spacing: 0.32em;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    min-width: 30px;
    transition: color 0.35s ease;
}

.kh-item:hover .kh-item-num,
.kh-item--active .kh-item-num {
    color: #DC143C;
}

.kh-item-title {
    font-size: clamp(12.5px, 1.05vw, 18px);
    font-weight: 600;
    color: #3a3a3a;
        font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.4;
    transition: color 0.35s ease, font-weight 0.2s ease;
    flex: 1;
}

.kh-item:hover .kh-item-title {
    color: #111;
}

.kh-item--active .kh-item-title {
    color: #111;
    font-weight: 700;
}

.kh-item-arrow {
    font-size: 11px;
    color: #DC143C;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.kh-item:hover .kh-item-arrow,
.kh-item--active .kh-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* CTA button below list */
.kh-list-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
    padding: 14px 34px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: background 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.kh-list-cta:hover {
    background: #DC143C;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.kh-list-cta i {
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.kh-list-cta:hover i {
    transform: translateX(5px);
}

/* ── Split responsive ── */
@media (max-width: 1100px) {
    .kh-split { flex-direction: column; }
    .kh-split-left {
        flex: none;
        max-width: 100%;
        padding: 60px 40px 40px;
    }
    .kh-split-right {
        flex: none;
        max-width: 100%;
        width: 100%;
        position: relative;
        top: auto;
        height: 60vw;
        max-height: 520px;
    }
    .kh-progress-wrap { display: none; }
}

@media (max-width: 640px) {
    .kh-split-left { padding: 40px 20px 32px; }
    .kh-split-right {
        height: 80vw;
        max-height: 380px;
    }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .kh-mosaic {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: repeat(6, 160px);
        padding: 0 36px 56px;
    }
    .kh-t01 { grid-column: 1;   grid-row: 1 / 3; }
    .kh-t02 { grid-column: 2/4; grid-row: 1;     }
    .kh-t03 { grid-column: 2;   grid-row: 2;     }
    .kh-t04 { grid-column: 3;   grid-row: 2;     }
    .kh-t05 { grid-column: 1;   grid-row: 3;     }
    .kh-t06 { grid-column: 2/4; grid-row: 3;     }
    .kh-t07 { grid-column: 1;   grid-row: 4;     }
    .kh-t08 { grid-column: 2;   grid-row: 4;     }
    .kh-t09 { grid-column: 3;   grid-row: 4;     }
    .kh-t10 { grid-column: 1/3; grid-row: 5;     }
    .kh-t11 { grid-column: 3;   grid-row: 5;     }
    .kh-t12 { grid-column: 1;   grid-row: 6;     }
    .kh-t13 { grid-column: 2;   grid-row: 6;     }
    .kh-t14 { grid-column: 3;   grid-row: 6;     }
    .kh-header { padding: 0 36px 40px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .kh-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        gap: 5px;
        padding: 0 16px 44px;
    }
    .kh-t01,.kh-t02,.kh-t03,.kh-t04,.kh-t05,.kh-t06,.kh-t07,
    .kh-t08,.kh-t09,.kh-t10,.kh-t11,.kh-t12,.kh-t13,.kh-t14 {
        grid-column: auto; grid-row: auto; height: 145px;
    }
    .kh-header { padding: 0 16px 32px; }
}


/* ══════════════════════════════════════════════
   SECTION 3 — PROGRAM INCLUSIONS
══════════════════════════════════════════════ */
.pi-section {
    background: #fff;
    padding: 70px 0 0;
    overflow: hidden;
}

.pi-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 72px;
}

.pi-header {
    text-align: center;
    margin-bottom: 72px;
}

.pi-eye {
    display: block;
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 22px;
    font-family: 'Playfair Display', serif;
}

.pi-title {
    font-size: clamp(48px, 7.5vw, 80px);
    font-weight: 900;
    color: #111;
    line-height: 0.88;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0 0 26px;
    font-family: 'Playfair Display', serif;
}

.pi-title em {
    display: block;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--red);
    font-weight: 700;
}

.pi-sub {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(0,0,0,0.48);
    max-width: 480px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

/* ── ZIGZAG SLIDER ── */
.pi-zz-outer {
    position: relative;
    background: #111;
    height: clamp(420px, 50vw, 600px);
    overflow: hidden;
}

.pi-zz-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

.pi-zz-slide.active {
    opacity: 1;
    pointer-events: all;
}

/* Even slides: reverse layout — image on right, text on left */
.pi-zz-slide.pi-zz-rev {
    flex-direction: row-reverse;
}

/* ── Image half ── */
.pi-zz-img {
    position: relative;
    flex: 0 0 58%;
    overflow: hidden;
}

.pi-zz-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 9s ease;
}

.pi-zz-slide.active .pi-zz-img img {
    transform: scale(1.1);
}

/* Gradient blending image into text panel */
.pi-zz-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, #111 100%);
    pointer-events: none;
}

.pi-zz-rev .pi-zz-img-ov {
    background: linear-gradient(to left, transparent 55%, #111 100%);
}

/* ── Text half ── */
.pi-zz-body {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 56px 52px 40px;
    background: #111;
    transform: translateY(28px);
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
                opacity 0.85s ease 0.18s;
}

.pi-zz-rev .pi-zz-body {
    padding: 52px 40px 52px 56px;
}

.pi-zz-slide.active .pi-zz-body {
    transform: translateY(0);
    opacity: 1;
}

.pi-zz-count {
    display: block;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.28);
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.pi-zz-cat {
    display: block;
    font-size: 9px;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 16px;
}

.pi-zz-title {
    font-size: clamp(26px, 3.2vw, 50px);
    font-weight: 900;
    color: #fff;
    font-family: 'Playfair Display', serif;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 22px;
}

.pi-zz-text {
    font-size: 16px;
    line-height: 1.82;
    color: rgb(255, 255, 255);
        font-family: "Courier New", Courier, monospace;
    font-weight: 300;
    margin: 0 0 30px;
    max-width: 340px;
}

.pi-zz-accent {
    width: 40px;
    height: 2px;
    background: var(--red);
}

/* ── Navigation arrows ── */
.pi-zz-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(10,10,10,0.5);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, border-color 0.3s ease,
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pi-zz-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.pi-zz-prev-btn { left: 28px; }
.pi-zz-next-btn { right: 28px; }

/* ── Footer: progress bar + dots ── */
.pi-zz-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 22px;
    z-index: 10;
}

.pi-zz-progress-track {
    width: 140px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}

.pi-zz-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--red);
}

.pi-zz-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.pi-zz-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pi-zz-dot.active {
    background: var(--red);
    transform: scale(1.5);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pi-inner { padding: 0 36px; }
    .pi-zz-img { flex: 0 0 52%; }
    .pi-zz-body { flex: 0 0 48%; padding: 36px 28px 36px 24px; }
    .pi-zz-rev .pi-zz-body { padding: 36px 24px 36px 28px; }
    .pi-zz-arrow { width: 42px; height: 42px; }
    .pi-zz-prev-btn { left: 16px; }
    .pi-zz-next-btn { right: 16px; }
}

@media (max-width: 640px) {
    .pi-inner { padding: 0 20px; }
    .pi-header { margin-bottom: 52px; }
    .pi-zz-outer { height: auto; }

    .pi-zz-slide {
        position: relative;
        flex-direction: column !important;
        display: none;
        opacity: 1;
    }

    .pi-zz-slide.active {
        display: flex;
        opacity: 1;
    }

    .pi-zz-img { flex: 0 0 240px; width: 100%; }

    .pi-zz-img-ov,
    .pi-zz-rev .pi-zz-img-ov {
        background: linear-gradient(to bottom, transparent 55%, #111 100%);
    }

    .pi-zz-body,
    .pi-zz-rev .pi-zz-body {
        flex: none;
        padding: 28px 24px 72px;
        transform: none !important;
        opacity: 1 !important;
        transition: none;
    }

    .pi-zz-arrow { display: none; }

    .pi-zz-footer {
        position: relative;
        padding: 14px 0 20px;
        background: #111;
    }
}


/* ══════════════════════════════════════════════
   EDITORIAL IMAGE STRIP
══════════════════════════════════════════════ */
.estrip-section {
    background: #0d0d0d;
    padding: 80px 0 0;
}

.estrip-label {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 64px 52px;
    max-width: 1500px;
    margin: 0 auto;
}

.estrip-label span {
    font-size: 9px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    font-weight: 700;
    white-space: nowrap;
}

.estrip-rule {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.estrip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 530px;
}

.estrip-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.estrip-cell::before {
    content: attr(data-cell);
    position: absolute;
    top: 20px;
    left: 22px;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.28);
    font-weight: 700;
    z-index: 3;
    font-family: 'Playfair Display', serif;
    transition: color 0.4s ease;
}

.estrip-cell:hover::before {
    color: rgba(255,255,255,0.55);
}

.estrip-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(18%) contrast(1.04) saturate(0.9) brightness(0.9);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.65s ease;
}

.estrip-cell:hover img {
    transform: scale(1.07);
    filter: grayscale(0%) contrast(1.08) saturate(1.14) brightness(1);
}

.estrip-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.18) 42%, transparent 68%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 26px;
}

.estrip-loc {
    display: block;
    font-size: 8px;
    letter-spacing: 0.48em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 7px;
    transform: translateY(10px);
    opacity: 0.8;
    transition: transform 0.42s ease, opacity 0.42s ease;
}

.estrip-cap {
    font-family: 'Playfair Display', serif;
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    transform: translateY(10px);
    transition: transform 0.42s ease 0.05s;
}

.estrip-cell:hover .estrip-loc,
.estrip-cell:hover .estrip-cap {
    transform: translateY(0);
    opacity: 1;
}

/* thin red accent line on hover */
.estrip-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.estrip-cell:hover::after {
    width: 100%;
}

@media (max-width: 900px) {
    .estrip-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
    .estrip-cell { height: 320px; }
    .estrip-label { padding: 0 36px 44px; }
}

@media (max-width: 540px) {
    .estrip-grid { grid-template-columns: 1fr; }
    .estrip-cell { height: 270px; }
    .estrip-label { padding: 0 24px 36px; }
}


/* ══════════════════════════════════════════════
   RUNWAY GALLERY
══════════════════════════════════════════════ */
.rgal-section {
    background: #fff;
    padding: 100px 0 80px;
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}

.rgal-header {
    padding: 0 72px 60px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.rgal-eye {
    display: block;
    font-size: 10px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 16px;
}

.rgal-title {
        font-size: clamp(42px, 4vw, 70px);
    font-weight: 900;
    color: #0a0a0a;
    line-height: 0.88;
    letter-spacing: -0.03em;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.rgal-title em {
    display: block;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--red);
    font-weight: 700;
}

.rgal-hd-right {
    font-size: 18px;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.58);
    margin: 0 0 12px;
    max-width: 100%;
    font-family: "Courier New", Courier, monospace;
    max-width: 480px;
    text-align: right;
    padding-bottom: 8px;
    flex-shrink: 0;
}

/* ── Marquee strip ── */
.rgal-marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 12px 0;
}

.rgal-marquee-wrap::before,
.rgal-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.rgal-marquee-wrap::before { left: 0;  background: linear-gradient(to right, #fff 30%, transparent); }
.rgal-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  #fff 30%, transparent); }

.rgal-marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: rgalScroll 40s linear infinite;
    will-change: transform;
}

.rgal-marquee-wrap:hover .rgal-marquee-track {
    animation-play-state: paused;
}

@keyframes rgalScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.rgal-slide {
    position: relative;
    flex-shrink: 0;
    width: 280px;
    height: 460px;
    overflow: hidden;
    /* narrow slides: large top-left curve — asymmetric feel */
    border-radius: 64px 4px 4px 4px;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.rgal-slide--wide {
    width: 360px;
    /* wide slides: large bottom-left curve — alternates the rhythm */
    border-radius: 4px 4px 4px 64px;
}

.rgal-slide-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.rgal-slide:hover {
    transform: translateY(-6px);
}

.rgal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(18%) brightness(0.88) contrast(1.06);
    /* fade image to white at bottom + soft side fades — no hard box edges */
    -webkit-mask-image:
        linear-gradient(to bottom, black 52%, transparent 96%),
        linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to bottom, black 52%, transparent 96%),
        linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    mask-composite: intersect;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.65s ease;
}

.rgal-slide:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.02) contrast(1.07) saturate(1.1);
}

.rgal-ov {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px 26px;
    background: linear-gradient(to top, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.1) 40%, transparent 62%);
    opacity: 0;
    transition: opacity 0.42s ease;
}

.rgal-slide:hover .rgal-ov { opacity: 1; }

.rgal-tag {
    font-size: 9px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

/* ── Designer photo — small square at bottom-right corner of card ── */
.rgal-designer {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    pointer-events: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rgal-slide:hover .rgal-designer {
    transform: scale(1.06);
}

.rgal-designer-av {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.3s ease;
}

.rgal-slide:hover .rgal-designer-av {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.rgal-designer-info { display: none; }

@media (max-width: 1000px) {
    .rgal-header { padding: 0 40px 48px; flex-direction: column; align-items: flex-start; }
    .rgal-hd-right { text-align: left; }
    .rgal-slide { height: 360px; border-radius: 44px 4px 4px 4px; }
    .rgal-slide--wide { width: 280px; border-radius: 4px 4px 4px 44px; }
}

@media (max-width: 580px) {
    .rgal-header { padding: 0 24px 40px; }
    .rgal-slide { width: 220px; height: 300px; border-radius: 32px 4px 4px 4px; }
    .rgal-slide--wide { width: 260px; border-radius: 4px 4px 4px 32px; }
}


/* ══════════════════════════════════════════════
   PRE-FOOTER BANNER
══════════════════════════════════════════════ */
.pf-banner {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: block;
}

.pf-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.82) brightness(0.65);
    transform: scale(1.06);
    transition: transform 7s ease;
}

.pf-banner:hover > img {
    transform: scale(1.01);
}

.pf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pf-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.pf-eye {
    font-size: 9px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
}

.pf-title {
    font-size: clamp(38px, 7.5vw, 100px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 0.88;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.pf-cta {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.45);
    padding: 15px 40px;
    margin-top: 10px;
    transition: background 0.32s ease, border-color 0.32s ease,
                letter-spacing 0.32s ease, color 0.32s ease;
}

.pf-cta:hover {
    background: var(--red);
    border-color: var(--red);
    letter-spacing: 0.52em;
    color: #fff;
}

@media (max-width: 600px) {
    .pf-banner { height: 380px; }
}


/* ══════════════════════════════════════════════
   EDITORIAL SHOWCASE — light bg, mixed typography
══════════════════════════════════════════════ */
.show-section {
    background: #f7f5f2;
    padding-bottom: 0 !important;
}

.show-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 70px 100px;
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 70px;
    align-items: center;
    min-height: 90vh;
}

/* ── LEFT panel ── */
.show-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.show-label {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.38);
}

.show-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.show-img-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.9s ease;
}

.show-img-box:hover img {
    transform: scale(1.04);
}

/* Nav arrows over image */
.show-img-nav {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    gap: 10px;
}

.show-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.38);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s;
    padding: 0;
    line-height: 1;
}

.show-nav-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.show-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    line-height: 2;
    color: rgba(0, 0, 0, 0.42);
    max-width: 340px;
    margin: 0;
}

/* ── RIGHT panel ── */
.show-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 44px;
}

.show-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.show-h-line {
    display: block;
    line-height: 0.92;
    overflow: hidden;
}

.show-h-mixed {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-top: 4px;
}

/* Base typer — dark navy */
.show-typer {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(52px, 8vw, 80px);
    color: #1a2740;
    display: inline-block;
    letter-spacing: -2px;
}

.show-typer.show-red {
    color: var(--red);
}

/* Italic "and" connector */
.show-and {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 3.2vw, 48px);
    color: var(--red);
    display: inline-block;
    flex-shrink: 0;
    padding-bottom: 6px;
}

/* Typing cursor */
.show-typer::after {
    content: '|';
    display: inline;
    color: var(--red);
    font-weight: 300;
    font-size: 0.65em;
    margin-left: 3px;
    animation: abrCursorBlink 0.65s step-end infinite;
    vertical-align: middle;
}

.show-typer.show-done::after {
    display: none;
}

/* Paragraph */
.show-para {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    color: rgba(0, 0, 0, 0.52);
    max-width: 520px;
    margin: 0 0 16px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.show-para:last-child { margin-bottom: 0; }
.show-para.show-vis { opacity: 1; transform: none; }

/* ── SHOW RESPONSIVE ── */
@media (max-width: 991px) {
    .show-inner {
        grid-template-columns: 1fr;
        padding: 70px 28px 80px;
        min-height: auto;
        gap: 50px;
    }

    .show-img-box img {
        height: 360px;
    }

    .show-typer {
        font-size: clamp(40px, 10vw, 72px);
    }

    .show-and {
        font-size: clamp(18px, 5vw, 32px);
    }
}

@media (max-width: 575px) {
    .show-inner {
        padding: 60px 22px 70px;
    }

    .show-typer {
        font-size: clamp(34px, 11vw, 56px);
    }
}

/* ── FEAT RESPONSIVE ── */
@media (max-width: 991px) {
    .feat-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feat-item-rev {
        direction: ltr;
    }

    .feat-img-wrap {
        min-height: 320px;
    }

    .feat-text-col {
        padding: 60px 28px;
    }

    .feat-header {
        padding: 60px 28px 40px;
    }

    .feat-num {
        font-size: clamp(70px, 18vw, 110px);
        top: 20px;
        right: 20px;
    }

    .feat-img-col::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .feat-text-col {
        padding: 50px 22px;
    }

    .feat-header {
        padding: 50px 22px 30px;
    }

    .feat-heading {
        font-size: clamp(26px, 8vw, 44px);
        letter-spacing: 3px;
    }
}

/* ══════════════════════════════════════════════
   COL SCROLL GALLERY
══════════════════════════════════════════════ */
.csg-section {
    background: #fff;
    padding-bottom: 60px;
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

.csg-header {
    padding: 80px 60px 48px;
    text-align: center;
}

.csg-eye {
    display: block;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #DC143C;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 18px;
}

.csg-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    color: #111;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.csg-desc {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* ── Viewport: fixed height, clips the scrolling columns ── */
.csg-viewport {
    position: relative;
    height: 80vh;
    display: flex;
    gap: 10px;
    padding: 0 40px;
    overflow: hidden;
}

/* white fade top & bottom */
.csg-viewport::before,
.csg-viewport::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 18%;
    z-index: 2;
    pointer-events: none;
}

.csg-viewport::before {
    top: 0;
    background: linear-gradient(to bottom, #fff, transparent);
}

.csg-viewport::after {
    bottom: 0;
    background: linear-gradient(to top, #fff, transparent);
}

.csg-col {
    flex: 1;
    overflow: hidden;
}

/* ── Infinite scroll animations ── */
@keyframes csgUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

@keyframes csgDown {
    from { transform: translateY(-50%); }
    to   { transform: translateY(0); }
}

.csg-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    will-change: transform;
}

.csg-list--up   { animation: csgUp   45s linear infinite; }
.csg-list--down { animation: csgDown 40s linear infinite; }
.csg-list--slow { animation-duration: 55s; }

/* pause on hover for any column */
.csg-col:hover .csg-list { animation-play-state: paused; }

.csg-item {
    margin: 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.csg-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.5s ease;
    filter: brightness(0.9) contrast(1.04);
}

.csg-item:hover .csg-img {
    transform: scale(1.04);
    filter: brightness(1) contrast(1.06) saturate(1.08);
}

.csg-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 14px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.csg-item:hover .csg-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .csg-viewport { height: 70vh; gap: 6px; padding: 0 16px; }
    .csg-col:nth-child(3) { display: none; }
    .csg-header { padding: 60px 24px 36px; }
}

@media (max-width: 480px) {
    .csg-viewport { height: 60vh; }
    .csg-col:nth-child(2) { display: none; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 991px) {

    .header,
    .header.scrolled {
        padding-left: 28px;
        padding-right: 28px;
    }

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

    .gallery-grid .span2 {
        grid-column: span 2;
        grid-row: span 1;
    }

    .wave-top,
    .wave-both,
    .skew-section {
        clip-path: none;
        margin-top: 0;
    }

    .logo-img {
        height: 46px;
    }
}

@media (max-width: 767px) {
    .video-banner {
        height: 100svh;
    }

    .logo-img {
        height: 40px;
    }

    .header-overlay {
        height: 160px;
    }

    section {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    footer {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .about-img-wrap img {
        height: 420px;
        border-radius: 20px;
    }

    .stat-card {
        bottom: 20px;
        left: 20px;
        padding: 18px 22px;
    }

    .about-circle-deco {
        width: 140px;
        height: 140px;
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .span2 {
        grid-column: span 1;
    }

    .btn-luxe,
    .btn-outline {
        padding: 13px 32px;
        font-size: 11px;
    }

    .model-card img {
        height: 380px;
    }
}

/* ═══════════════════════════════════════════════════════
   UNIFIED WHITE FLOW
   Makes the entire site a single seamless white editorial.
   Overrides section-level backgrounds and removes visual
   dividers so every section reads as one continuous scroll.
═══════════════════════════════════════════════════════ */

/* Default text dark on white canvas */
body { color: #111; }

/* ── All main sections: pure white ── */
.grp-section,
.kh-section,
.press-section,
.press-collage-new,
.rgal-section {
    background: #fff !important;
}

/* Neutralize the subtle grays */
.kh-marquee       { background: transparent !important; }
.dac-grid         { background: #e8e8e8; }

/* ── Press pinboard: warm paper (not dark) ── */
.press-wall {
    background: #ffffff !important;
    border-top: none;
    border-bottom: none;
}
/* Tone down grain on light surface */
.press-wall::before { opacity: 0.02 !important; }

/* ── Card shadows: refined for light pinboard ── */
.pw-cell {
    box-shadow:
        0 1px 3px rgba(0,0,0,0.07),
        0 5px 18px rgba(0,0,0,0.13),
        0 14px 40px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(0,0,0,0.05);
}
.pw-cell.pw-visible {
    /* ensure border stays when visible */
    border: 1px solid rgba(0,0,0,0.05);
}
.pw-cell:hover {
    box-shadow:
        0 3px 10px rgba(0,0,0,0.11),
        0 16px 48px rgba(0,0,0,0.2),
        0 32px 80px rgba(0,0,0,0.10) !important;
    border-color: transparent !important;
}

/* ── Ticker: narrow editorial band ── */
.press-ticker { border-top: none; border-bottom: none; }

/* ── kh-section: no padding — split columns handle spacing ── */
.kh-section { padding-top: 0px !important; }

/* ── rgal-section: reduce padding for tighter flow ── */
.rgal-section {
    padding-top: 0px !important;
    padding-bottom: 100px !important;
}

/* ── Contact wave: flatten the clip-path divider ── */
.wave-top {
    clip-path: none !important;
    margin-top: 0 !important;
    /* border-top: 1px solid rgba(0,0,0,0.06) !important; */
}

/* ── pdc cards: consistent white ── */
.pdc { background: #fff; }

/* ── Subtle red thread between major content blocks ─
   replaces the harsh bg-color-change "section break"  ── */
/* .kh-section::before,
.press-section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(220,20,60,0.18) 30%,
        rgba(220,20,60,0.18) 70%,
        transparent 100%
    );
    margin-bottom: 0;
} */

/* ── Press section: no extra padding ── */
.press-section { padding: 0 !important; }

/* ── grp-section: reduce minimum height on desktop ── */
@media (min-width: 1100px) {
    .grp-section { min-height: 90vh; }
}

/* ── Responsive white-flow adjustments ── */
@media (max-width: 768px) {
    .kh-section    { padding-top: 0 !important; }
    .rgal-section  { padding-top: 50px !important; padding-bottom: 50px !important; }
    .press-wall    { padding: 40px 18px 50px !important; }
}