@font-face {
    font-family: 'Recoleta';
    src: url('./Recoleta/Recoleta Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

:root {
    --bg-dark: #221516;
    --text-light: #F0ECE1;
    --text-dim: #D6CBC0;
    --border-color: #4A2E32;
    --accent-red: #B83444;
    --bg-light: #F0ECE1;
    --text-dark: #221516;
    
    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Make it invisible to clicks when fading out */
}

.preloader.is-hidden {
    display: none !important;
    pointer-events: none !important;
}

.preloader-logo {
    width: 180px;
    filter: brightness(0) invert(1);
    opacity: 0;
}

/* MAGIC TEXT */
.magic-word {
    display: inline-block;
    position: relative;
}

.magic-ghost {
    opacity: 0.15;
}

.magic-real {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.15;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    cursor: none !important; /* Custom Cursor */
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* --- Lenis Scroll Base CSS --- */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

a, button {
    cursor: none !important;
    text-decoration: none;
    color: inherit;
}

/* --- Barrel Link Animation (Sinyard signature) --- */
.barrel-link {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    overflow: hidden;
    height: 1.2em; /* Ensure this matches the line-height */
    line-height: 1.2;
}

.barrel-link span {
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.barrel-link::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.barrel-link:hover span,
.barrel-link:hover::after {
    transform: translateY(-100%);
}

/* --- Custom Cursor --- */
.cursor {
    width: 12px;
    height: 12px;
    background-color: var(--text-light);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    z-index: 100;
    mix-blend-mode: difference;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 72px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: var(--text-light);
    text-decoration: none;
}

.brand-nhm {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 0.4em;
    padding-left: 0.4em;
    font-weight: 400;
    text-transform: uppercase;
}

.brand-studio {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    padding-left: 0.25em;
    margin-top: 4px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-item {
    font-size: 14px;
    text-transform: capitalize;
}

.nav-atelier {
    color: #a42323; /* A brighter accent red for visibility on dark background */
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.header-time {
    font-size: 14px;
}

.location {
    color: var(--text-dim);
    margin-left: 8px;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 60px;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-text { flex: 1; }

h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.hero-line {
  display: block;
}

.accent {
  color: var(--accent-red);
  font-style: italic;
}

/* Preview Card */
.hero-preview {
  flex-shrink: 0;
  width: 280px;
}

.preview-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.preview-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.preview-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid var(--text-light);
  padding: 8px 16px;
  border-radius: 40px;
  transition: background 0.3s, color 0.3s;
}

.preview-card:hover .preview-label {
  background: var(--text-light);
  color: var(--bg-dark);
}

/* Hero Bottom */
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-divider {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 500px;
  text-align: center;
  flex-shrink: 0;
}

/* --- Global Section Styles --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 40px 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--accent-red);
}

.featured-count {
    font-size: 14px;
    color: var(--text-dim);
}

/* --- HORIZONTAL Work Section --- */
.work-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 40px 24px;
    border-bottom: 1px solid var(--border-color);
    margin: 0 40px 60px; /* Kept outside container for absolute positioning if needed, or normal flow */
}

.section-header-horizontal h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
}

.project-container {
    display: flex;
    width: max-content;
    height: 60vh;
    padding-left: 40px;
    will-change: transform;
}

.project-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 60vw; /* Width of each card in horizontal layout */
    height: 100%;
    padding-right: 80px;
    flex-shrink: 0;
}

.project-info-left h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.project-image-center {
    flex: 1;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info-right {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-dim);
}

/* --- Atelier Link in Work Section --- */
.atelier-row-link {
    cursor: none !important; /* Keep custom cursor */
    color: inherit;
    transition: background-color 0.4s var(--transition);
    position: relative;
    z-index: 50;
    text-decoration: none;
    display: flex; /* Restore the display flex from .project-row */
}

.atelier-row-link:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.atelier-row-link .arrow {
    display: inline-block;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--transition);
    color: var(--accent-red);
}

.atelier-row-link:hover .arrow {
    opacity: 1;
    transform: translateX(5px);
}

.atelier-row-link:hover .project-info-right p {
    color: var(--accent-red);
}


/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-red);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #8A2B2A;
    transform: translateY(-2px);
}

/* --- Awards Section --- */
.awards-section {
    padding: 100px 0;
}

.awards-list {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.award-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.award-name {
    font-family: var(--font-heading);
    font-size: 24px;
}

.award-category {
    font-size: 14px;
    color: var(--text-dim);
}

.award-count {
    font-size: 14px;
    color: var(--text-dim);
}

/* --- Magazine Section --- */
.magazine-section {
    padding: 100px 0;
}

.zoom-parallax-container {
    position: relative;
    height: 300vh;
}

.zoom-parallax-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
}

.zoom-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    pointer-events: none;
}

.zoom-image-box {
    position: relative;
    width: 25vw;
    height: 25vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.zoom-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific Layer positioning matching React component */
.layer-1 .zoom-image-box {
    top: -30vh;
    left: 5vw;
    height: 30vh;
    width: 35vw;
}

.layer-2 .zoom-image-box {
    top: -10vh;
    left: -25vw;
    height: 45vh;
    width: 20vw;
}

.layer-3 .zoom-image-box {
    left: 27.5vw;
    height: 25vh;
    width: 25vw;
}

.layer-4 .zoom-image-box {
    top: 27.5vh;
    left: 5vw;
    height: 25vh;
    width: 20vw;
}

.layer-5 .zoom-image-box {
    top: 27.5vh;
    left: -22.5vw;
    height: 25vh;
    width: 30vw;
}

.layer-6 .zoom-image-box {
    top: 22.5vh;
    left: 25vw;
    height: 15vh;
    width: 15vw;
}

/* Zoom Articles Overlay */
.zoom-articles-overlay {
    position: absolute;
    z-index: 20;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-articles-overlay.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.zoom-articles-header {
    text-align: center;
}

.zoom-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.zoom-article-card {
    background: rgba(34, 21, 22, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}

.zoom-article-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-red);
    background: rgba(45, 27, 29, 0.95);
}

.zoom-article-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 8px 0;
    color: var(--text-light);
    line-height: 1.25;
}

.zoom-article-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.zoom-article-card .read-more {
    font-size: 12px;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .zoom-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Inspo Section --- */
.inspo-section {
    padding: 100px 0;
}

.inspo-container {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    height: 80vh; /* Adjust as needed */
}

.inspo-grid {
    display: grid;
    width: 100%;
    height: 100%;
    gap: 8px;
    grid-template-rows: var(--r0, 4fr) var(--r1, 4fr) var(--r2, 4fr);
    grid-template-columns: var(--c0, 4fr) var(--c1, 4fr) var(--c2, 4fr);
    transition: grid-template-rows 0.6s cubic-bezier(0.25, 1, 0.5, 1), grid-template-columns 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.inspo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* Specific Transform Origins based on grid position */
.inspo-frame[data-row="0"][data-col="0"] { transform-origin: top left; }
.inspo-frame[data-row="0"][data-col="1"] { transform-origin: top center; }
.inspo-frame[data-row="0"][data-col="2"] { transform-origin: top right; }
.inspo-frame[data-row="1"][data-col="0"] { transform-origin: center left; }
.inspo-frame[data-row="1"][data-col="1"] { transform-origin: center center; }
.inspo-frame[data-row="1"][data-col="2"] { transform-origin: center right; }
.inspo-frame[data-row="2"][data-col="0"] { transform-origin: bottom left; }
.inspo-frame[data-row="2"][data-col="1"] { transform-origin: bottom center; }
.inspo-frame[data-row="2"][data-col="2"] { transform-origin: bottom right; }

.inspo-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border: 0px solid transparent;
}

.inspo-frame.is-hovered .inspo-video-wrapper {
    border: 4px solid var(--text-dim);
    transform: scale(0.96); /* Creates a subtle framing effect */
}

.inspo-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .inspo-container {
        height: calc(100vw - 40px);
        max-height: 500px;
    }
}

/* --- About & Footer Wrapper --- */
.about-wrapper {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 120px;
}

/* --- About Section --- */
.about-section {
    padding: 0 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 400;
    color: var(--accent-red);
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-image {
    margin-top: 40px;
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 40px 40px;
}

.footer-top {
    display: flex;
    justify-content: flex-end;
    gap: 120px;
    margin-bottom: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-dim);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
}

.footer-link {
    display: block;
    font-size: 14px;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--text-dim);
}

.giant-email-container {
    margin-bottom: 80px;
    overflow: hidden;
    width: calc(100% + 80px);
    margin-left: -40px;
    display: flex;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.giant-email {
    font-family: var(--font-heading);
    font-size: clamp(40px, 12vw, 200px);
    color: var(--accent-red);
    line-height: 1;
    white-space: nowrap;
    transition: color 0.3s;
    padding-right: 40px;
}

.giant-email:hover {
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    font-size: 12px;
    color: var(--text-dim);
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-inner { flex-direction: column; align-items: flex-start; }
    .hero-preview { width: 100%; max-width: 400px; }
    .preview-card img { height: 260px; }
    
    .project-row {
        width: 85vw; /* Slightly wider on tablet */
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header { padding: 15px; position: fixed; width: 100%; box-sizing: border-box; }
    .header-inner { 
        display: flex;
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
        width: 100%;
    }
    .logo { height: 40px; }
    .logo-link { flex-shrink: 0; }
    .nav { 
        display: none !important; /* Hide old nav on mobile */
    }
    .nav-item { font-size: 13px; }
    .header-time { display: none; }
    .hero { padding: 120px 20px 40px; }
    .section-header, .section-header-horizontal { padding: 0 20px 24px; margin: 0 20px 40px; }
    .project-container, .awards-list, .clients-grid, .about-section, .footer, .inspo-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .profile-image {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 40px;
    }
    
    .work-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 40px;
    }
    .work-section::-webkit-scrollbar {
        display: none;
    }
    
    .project-row { 
        width: 85vw; 
        padding-right: 20px; 
        scroll-snap-align: center;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
        justify-content: flex-start;
    }
    
    .hero-bottom { flex-direction: column; gap: 20px; }
    .hero-description { text-align: left; }
    
    .giant-email-container {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-top: 40px;
    }
    
    .giant-email {
        font-size: 15vw;
    }
    
    .cursor {
        display: none !important;
    }
    
    body {
        cursor: auto !important;
    }
}

/* --- Inspo Page Styles --- */
.inspo-hero {
    padding: 180px 40px 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.inspo-hero h1 {
    font-size: clamp(48px, 8vw, 120px);
    margin-bottom: 24px;
    color: var(--accent-red);
}

.inspo-hero p {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.inspo-cta a:hover {
    background: var(--text-light) !important;
    color: var(--bg-dark) !important;
}

/* --- HORIZONTAL GALLERY (INSPO PAGE) --- */
.horizontal-gallery-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-dark);
}

.horizontal-gallery-container {
    display: flex;
    width: max-content;
    height: 60vh;
    padding-left: 10vw;
    will-change: transform;
    align-items: center;
}

.h-gallery-item {
    position: relative;
    width: 40vw; /* Base width */
    height: 100%;
    margin-right: 4vw;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.h-gallery-item:nth-child(even) {
    height: 80%; /* Varied height to match abvtek aesthetic */
}

.h-gallery-item:nth-child(3n) {
    height: 90%;
    width: 30vw;
}

.h-text-item {
    width: 35vw;
    height: 100%;
    margin-right: 4vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

.h-text-item h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 6vw, 64px);
    color: var(--accent-red);
    margin-bottom: 24px;
    line-height: 1.1;
}

.h-text-item p {
    font-size: clamp(16px, 1.5vw, 24px);
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 400px;
}

.intro-block {
    width: 60vw;
}

.intro-block h1 {
    font-size: clamp(32px, 8vw, 120px);
    color: var(--accent-red);
    margin-bottom: 24px;
    line-height: 1;
    font-family: var(--font-heading);
}

.intro-block p {
    font-size: clamp(18px, 2vw, 32px);
    max-width: 800px;
}

.h-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.h-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .h-gallery-item {
        width: 80vw;
        height: 60vh !important;
        margin-right: 20px;
    }
    .h-text-item, .intro-block {
        width: 85vw;
        padding: 0 20px;
        margin-right: 20px;
    }
    .horizontal-gallery-container {
        height: 60vh;
    }
}

/* --- Hover Slider Category Selector --- */
.category-slider-section {
    padding: 20px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.hover-slider-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    padding: 60px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.hover-slider-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hover-slider-item {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 42px);
    cursor: pointer;
    position: relative;
    user-select: none;
    line-height: 1.2;
    padding: 4px 0;
}

/* Text Stagger Hover Effect */
.stagger-char-wrap {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
}

.stagger-char-dim {
    display: inline-block;
    opacity: 0.25;
    transform: translateY(0%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.stagger-char-active {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    opacity: 1;
    transform: translateY(110%);
    color: var(--accent-red);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hover-slider-item.is-active .stagger-char-dim,
.hover-slider-item:hover .stagger-char-dim {
    transform: translateY(-110%);
}

.hover-slider-item.is-active .stagger-char-active,
.hover-slider-item:hover .stagger-char-active {
    transform: translateY(0%);
}

/* Image ClipPath Reveal */
.hover-slider-image-wrap {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.hover-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0px);
    transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: clip-path;
}


.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    width: 100%;
}

.slide-text span {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 120px);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: -0.02em;
    opacity: 0;
    margin: 0 auto;
}

.editorial-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 160px;
}

.editorial-block.reverse {
    grid-template-columns: 1fr 1.2fr;
}
.editorial-block.reverse .editorial-text {
    order: 1;
}
.editorial-block.reverse .editorial-image {
    order: 2;
}

.editorial-image {
    width: 100%;
    height: 700px;
    border-radius: 4px;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.editorial-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
}

.editorial-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    color: var(--text-light);
}

.editorial-text p {
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .editorial-block, .editorial-block.reverse {
        grid-template-columns: 1fr;
    }
}

.stagger-char-dim {
    display: inline-block;
    opacity: 0.25;
    transform: translateY(0%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.stagger-char-active {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    opacity: 1;
    transform: translateY(110%);
    color: var(--accent-red);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hover-slider-item.is-active .stagger-char-dim,
.hover-slider-item:hover .stagger-char-dim {
    transform: translateY(-110%);
}

.hover-slider-item.is-active .stagger-char-active,
.hover-slider-item:hover .stagger-char-active {
    transform: translateY(0%);
}

/* Image ClipPath Reveal */
.hover-slider-image-wrap {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.hover-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0px);
    transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: clip-path;
}

.hover-slider-img.is-active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
}

@media (max-width: 1024px) {
    .hover-slider-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 40px;
    }
    .hover-slider-image-wrap {
        height: 320px;
    }
}

/* ========================================= */
/* MOBILE MAGAZINE MENU                      */
/* ========================================= */
.mobile-menu-btn {
    display: none; /* Desktop */
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: none;
    border: none;
    color: var(--text-light); /* Blanc cassé */
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: var(--bg-light);
    z-index: 9999;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: none; /* Desktop */
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: sticky;
    top: 0;
    background: var(--bg-light);
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-menu-scroll {
    padding: 40px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: var(--text-dark);
}

/* Asymmetrical Magazine Layouts */
.mobile-menu-item.layout-left .menu-item-img {
    width: 80%;
    margin-right: auto;
}
.mobile-menu-item.layout-right {
    align-items: flex-end;
    text-align: right;
}
.mobile-menu-item.layout-right .menu-item-img {
    width: 85%;
    margin-left: auto;
}
.mobile-menu-item.layout-full .menu-item-img {
    width: 100%;
}

.menu-item-img {
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
    background: #f0f0f0;
}

.menu-item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-cat {
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.menu-item-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 10vw, 64px);
    line-height: 1.1;
    font-weight: 400;
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .mobile-menu-overlay {
        display: block;
    }
}
