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

:root {
    --black:    #0d0d0d;
    --white:    #f8f7f4;
    --grey:     #636363;
    --grey-lt:  #a4a4a4;
    --rust:     #d8613c;
    --rust-dk:  #b84e2c;
    --border:   #e2e0db;

    --font-heading: 'Cardo', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --max-w: 1200px;
    --pad-x: clamp(1.5rem, 5vw, 6rem);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--pad-x);
}

/* ===========================
   HEADER / NAV
=========================== */
:root {
    --accent: #7c6af7;
}

.site-header {
    position: fixed;
    top: var(--wp-admin--admin-bar--height, 0px); left: 0; right: 0;
    z-index: 100;
    height: 56px;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

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

.site-nav {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0 1.1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248,247,244,0.5);
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px; left: 1.1rem; right: 1.1rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

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

.nav-link.active { color: var(--white); }
.nav-link.active::after { transform: scaleX(1); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 56px 0 0 0;
    background: #0d0d0d;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mobile-nav li a {
    display: block;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    color: rgba(248,247,244,0.5);
    padding: 0.5rem 1rem;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.mobile-nav li a:hover,
.mobile-nav li.current-menu-item a { color: var(--white); }

@media (max-width: 768px) {
    .site-nav { display: none; }
    .burger { display: flex; }
}

/* ===========================
   HERO CAROUSEL
=========================== */
.home-main { margin-top: 0; }

.hero-carousel {
    position: relative;
    width: 100%;
    height: calc(100svh - 56px);
    margin-top: 56px;
    overflow: hidden;
    background: #0d0d0d;
}

.carousel-track {
    position: absolute;
    inset: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 5s ease;
    /* Fallback gradient si pas d'image */
    background-color: #1a1a1a;
}

.carousel-slide:nth-child(1) { background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d0d0d 100%); }
.carousel-slide:nth-child(2) { background-image: linear-gradient(135deg, #1e0a0a 0%, #2d1010 50%, #0d0d0d 100%); }
.carousel-slide:nth-child(3) { background-image: linear-gradient(135deg, #0a1a0a 0%, #101e10 50%, #0d0d0d 100%); }

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

.carousel-content {
    position: absolute;
    z-index: 2;
    bottom: clamp(4rem, 10vw, 7rem);
    left: var(--pad-x);
}

.carousel-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(248,247,244,0.5);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.carousel-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: rgba(248,247,244,0.4);
}

.carousel-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 11vw, 10rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.carousel-title em {
    font-style: italic;
    color: var(--accent);
}

.carousel-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(248,247,244,0.55);
    letter-spacing: 0.08em;
}

.carousel-controls {
    position: absolute;
    z-index: 2;
    bottom: clamp(2rem, 5vw, 3.5rem);
    right: var(--pad-x);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    width: 40px; height: 40px;
    border: 1px solid rgba(248,247,244,0.2);
    border-radius: 50%;
    background: transparent;
    color: rgba(248,247,244,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-btn:hover {
    border-color: rgba(248,247,244,0.6);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(248,247,244,0.25);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--white);
    width: 20px;
    border-radius: 3px;
}

/* ===========================
   PAGE TEMPLATE
=========================== */
.page-main { margin-top: 56px; }

.page-hero {
    background: #0d0d0d;
    padding: clamp(5rem, 10vw, 8rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero-inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    margin-top: 1rem;
}

.page-title em { font-style: italic; color: var(--accent); }

.videos-section {
    background: #0d0d0d;
    padding: clamp(4rem, 7vw, 6rem) var(--pad-x);
    min-height: 60vh;
}

.videos-inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 3rem 2.5rem;
}

.video-card {}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    margin-bottom: 1.25rem;
}

.video-card-info {}

.video-card-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.video-card-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(248,247,244,0.45);
}

.videos-empty {
    color: rgba(248,247,244,0.3);
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
    padding: 4rem 0;
}

.videos-empty strong { color: rgba(248,247,244,0.6); }

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

/* ===========================
   3D / PROJECTS LIST
=========================== */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.project-card {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 3rem;
}

.project-card-header {
    margin-bottom: 2rem;
}

.project-card-title {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.project-card-desc {
    font-size: 0.925rem;
    line-height: 1.75;
    color: rgba(248,247,244,0.45);
    max-width: 600px;
}

.project-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1rem;
}

.project-media-main {
    grid-column: 1 / -1;
}

.project-media-item,
.project-media-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    aspect-ratio: 16/9;
}

.project-media-image { aspect-ratio: 4/3; }

.project-media-image a {
    display: block;
    width: 100%; height: 100%;
    position: relative;
}

.project-media-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-media-image:hover img { transform: scale(1.04); }

.media-zoom {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    width: 30px; height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.project-media-image:hover .media-zoom { opacity: 1; }

.project-media-mp4 video {
    width: 100%; height: 100%;
    object-fit: cover;
}

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

.project-media-mp4-thumb {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    position: relative;
}

.mp4-thumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(248,247,244,0.5);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.project-media-mp4-thumb:hover .mp4-thumb-inner { background: rgba(255,255,255,0.04); }
.project-media-image { cursor: pointer; }

/* ===========================
   GALLERY PAGE
=========================== */
.gallery-section {
    background: #0d0d0d;
    padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
    min-height: 60vh;
}

.gallery-inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid rgba(248,247,244,0.15);
    background: transparent;
    color: rgba(248,247,244,0.45);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: rgba(248,247,244,0.4);
    color: var(--white);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.gallery-grid {
    columns: 4 220px;
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 0.75rem;
    break-inside: avoid;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-item-overlay svg { opacity: 0; transition: opacity 0.25s; }

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.4); }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* counter modal */
.modal-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(248,247,244,0.45);
    letter-spacing: 0.08em;
}

/* ===========================
   MODAL CAROUSEL
=========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.modal-video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 6px;
    outline: none;
}

.modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.modal-close:hover { background: rgba(255,255,255,0.15); }

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.modal-nav:hover { background: rgba(255,255,255,0.18); }
.modal-prev { left: 1.5rem; }
.modal-next { right: 1.5rem; }

.modal-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.modal-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(248,247,244,0.25);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.modal-dot.active {
    background: var(--white);
    width: 20px;
    border-radius: 3px;
}

/* ===========================
   SHOWREEL
=========================== */
.showreel-section {
    background: #0d0d0d;
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}

.showreel-inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.showreel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.showreel-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.showreel-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.showreel-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(248,247,244,0.4);
    text-align: right;
    max-width: 320px;
}

.showreel-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
}

.video-facade {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.video-facade img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-facade:hover img { transform: scale(1.02); }

.video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    background: rgba(13,13,13,0.55);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s, background 0.2s;
}

.video-play:hover {
    background: rgba(124,106,247,0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play svg { width: 100%; height: 100%; }

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(248,247,244,0.25);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .showreel-head { flex-direction: column; align-items: flex-start; }
    .showreel-desc { text-align: left; }
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
    background: #111111;
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}

.about-section-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: #1e1e1e;
}

.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.about-photo-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 6rem;
    font-style: italic;
    color: rgba(248,247,244,0.06);
}

.about-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-name {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0;
}

.about-divider {
    height: 1px;
    background: rgba(248,247,244,0.08);
    margin: 2rem 0;
}

.about-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.meta-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(248,247,244,0.3);
    margin-bottom: 0.6rem;
}

.meta-value {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
}

.meta-sub {
    font-size: 0.875rem;
    color: var(--accent);
    margin-top: 0.1rem;
}

.about-email {
    display: inline-block;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.5rem;
    transition: opacity 0.2s;
}

.about-email:hover { opacity: 0.75; }

@media (max-width: 700px) {
    .about-section-inner { grid-template-columns: 1fr; }
    .about-photo { max-width: 240px; }
}

/* ===========================
   HERO (ancien — gardé pour autres pages)
=========================== */
.hero {
    min-height: 100svh;
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 6rem var(--pad-x) 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(216,97,60,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(216,97,60,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 2rem;
}

.hero-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--rust);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 400;
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-title em {
    font-style: italic;
    color: var(--rust);
}

.hero-desc {
    max-width: 540px;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(248,247,244,0.55);
    margin-bottom: 3rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    border: 1.5px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--rust);
    color: var(--white);
    border-color: var(--rust);
}

.btn-primary:hover {
    background: var(--rust-dk);
    border-color: var(--rust-dk);
}

.btn-outline {
    background: transparent;
    color: rgba(248,247,244,0.7);
    border-color: rgba(248,247,244,0.2);
}

.btn-outline:hover {
    color: var(--white);
    border-color: rgba(248,247,244,0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: var(--pad-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(248,247,244,0.3);
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, rgba(248,247,244,0.3), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   SECTION BASE
=========================== */
section { padding: clamp(5rem, 10vw, 9rem) var(--pad-x); }

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--rust);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
}

.section-title em { font-style: italic; color: var(--rust); }

/* ===========================
   ABOUT
=========================== */
.about { background: var(--white); }

.about-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

.about-left {}

.about-right {}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey);
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.tag {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--grey);
    background: transparent;
    transition: all 0.2s;
}

.tag:hover { border-color: var(--rust); color: var(--rust); }

.about-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    background: #e8e5df;
    border-radius: 8px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(13,13,13,0.08);
    font-weight: 400;
    font-style: italic;
    user-select: none;
}

.about-badge {
    position: absolute;
    bottom: 2rem; left: -1.5rem;
    background: var(--rust);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.about-badge strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1;
}

.about-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.05em;
}

/* ===========================
   SERVICES
=========================== */
.services { background: #111111; }

.services-inner { max-width: var(--max-w); margin-inline: auto; }

.services-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}

.services-head .section-title { color: var(--white); }
.services-head .section-label { color: var(--rust); }
.services-head .section-label::before { background: var(--rust); }

.services-desc {
    max-width: 380px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(248,247,244,0.45);
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.06);
}

.service-card {
    background: #111111;
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--rust);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover { background: #161616; }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(248,247,244,0.2);
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(248,247,244,0.45);
}

/* ===========================
   STATS
=========================== */
.stats { background: var(--rust); padding: clamp(4rem, 7vw, 6rem) var(--pad-x); }

.stats-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(248,247,244,0.65);
    margin-top: 0.75rem;
    display: block;
}

/* ===========================
   CTA
=========================== */
.cta { background: var(--white); text-align: center; }

.cta-inner {
    max-width: 720px;
    margin-inline: auto;
}

.cta .section-label { justify-content: center; }
.cta .section-label::before { display: none; }

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--black);
    margin: 1.5rem 0;
}

.cta-title em { font-style: italic; color: var(--rust); }

.cta-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--grey);
    margin-bottom: 3rem;
}

.cta .btn-primary { font-size: 1rem; padding: 1.1rem 2.8rem; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: clamp(3rem, 6vw, 5rem) var(--pad-x) 0;
}

.footer-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: clamp(3rem, 5vw, 4rem);
}

.footer-col-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-links a {
    font-size: 0.95rem;
    color: rgba(248,247,244,0.4);
    transition: color 0.2s;
    display: inline-block;
}

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

.footer-bottom {
    max-width: var(--max-w);
    margin-inline: auto;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: rgba(248,247,244,0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-credit a {
    color: rgba(248,247,244,0.25);
    transition: color 0.2s;
}

.footer-credit a:hover { color: rgba(248,247,244,0.6); }

@media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
    .about-inner { grid-template-columns: 1fr; }
    .about-right { order: -1; max-width: 420px; margin-inline: auto; }
    .about-badge { left: 1rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1px; }
    .services-head { flex-direction: column; align-items: flex-start; }
    .services-desc { text-align: left; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .site-nav .nav-items { display: none; }
}

@media (max-width: 600px) {
    .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { flex-direction: column; text-align: center; }
}
