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

:root {
    --black: #060606;
    --off-black: #0d0d0d;
    --dark: #111111;
    --mid: #1a1a1a;
    --border: rgba(255, 255, 255, 0.07);
    --white: #f0ece4;
    --off-white: #c8c0b0;
    --accent: #c9a96e;
    --accent-dim: rgba(201, 169, 110, 0.15);
    --red: #8b2020;
    --nav-height: 96px;
    --viewport-top-offset: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 200;
    cursor: none;
    overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
#cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .3s cubic-bezier(.16, 1, .3, 1), height .3s cubic-bezier(.16, 1, .3, 1),
        background .3s ease, opacity .3s ease;
    mix-blend-mode: screen;
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.4), inset 0 0 8px rgba(201, 169, 110, 0.3);
}

#cursor::before,
#cursor::after {
    content: '';
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
}

#cursor::before {
    width: 20px;
    height: 1px;
    opacity: 0.3;
}

#cursor::after {
    width: 1px;
    height: 20px;
    opacity: 0.3;
}

#cursor-ring {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(201, 169, 110, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .15s ease-out, width .4s cubic-bezier(.16, 1, .3, 1),
        height .4s cubic-bezier(.16, 1, .3, 1), border-color .4s ease, box-shadow .4s ease;
    box-shadow: 0 0 1px rgba(201, 169, 110, 0.2);
}

body:has(a:hover) #cursor,
body:has(.work-item:hover) #cursor {
    width: 5px;
    height: 5px;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(201, 169, 110, 0.6), inset 0 0 12px rgba(201, 169, 110, 0.4);
}

body:has(a:hover) #cursor-ring,
body:has(.work-item:hover) #cursor-ring {
    width: 72px;
    height: 72px;
    border-color: rgba(201, 169, 110, 0.85);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.3), inset 0 0 20px rgba(201, 169, 110, 0.1);
}

/* ── INTRO SPLASH ── */
#intro {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    transition: opacity .8s ease, visibility .8s ease;
}

#intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 9vw, 120px);
    letter-spacing: 0.18em;
    color: var(--white);
    line-height: 1;
    animation: introGlow 1.8s ease-in-out infinite;
}

@keyframes introGlow {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.intro-sub {
    font-family: 'Jost', sans-serif;
    font-weight: 200;
    font-size: 11px;
    letter-spacing: 0.45em;
    color: var(--off-white);
    text-transform: uppercase;
}

.intro-line {
    width: 0;
    height: 1px;
    background: var(--accent);
    margin-top: 24px;
    animation: lineGrow 1.6s 0.3s ease forwards;
}

@keyframes lineGrow {
    to {
        width: 120px;
    }
}

.intro-loader {
    width: 140px;
    height: 2px;
    background: rgba(201, 169, 110, 0.18);
    position: relative;
    overflow: hidden;
}

.intro-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: -45%;
    width: 45%;
    height: 100%;
    background: var(--accent);
    animation: introLoad 1.1s ease-in-out infinite;
}

@keyframes introLoad {
    to {
        left: 100%;
    }
}

.intro-loading {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--off-white);
    opacity: 0.8;
}

#skip-btn {
    position: fixed;
    bottom: 36px;
    right: 48px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--off-white);
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: none;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ── NAVIGATION ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.28);
    mix-blend-mode: normal;
    will-change: padding, background;
    transition: padding .28s ease, background .28s ease, backdrop-filter .28s ease, border-color .28s ease,
        box-shadow .28s ease;
}

nav:not(.scrolled) {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

nav.scrolled {
    padding: 6px 40px;
    mix-blend-mode: normal;
    background: rgba(6, 6, 6, 0.78);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.22em;
    color: var(--white);
    text-decoration: none;
}

.nav-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-num {
    font-size: 9px;
    color: var(--accent);
    margin-right: 5px;
    vertical-align: super;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: calc(100dvh - var(--viewport-top-offset));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: clamp(96px,
            calc(var(--nav-height) + var(--viewport-top-offset) + env(safe-area-inset-top, 0px) + 10px),
            170px) 48px 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./images/janella1.jpg');
    background-size: cover;
    background-position: center 20%;
    transform: scale(1.06);
    animation: heroReveal 2.2s 1.8s cubic-bezier(.16, 1, .3, 1) forwards;
    opacity: 0;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(6, 6, 6, 0.85) 0%,
            rgba(6, 6, 6, 0.4) 55%,
            rgba(6, 6, 6, 0.15) 100%);
}

.hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 6, 6, 0.9) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin-top: 0;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp .8s 2.4s ease forwards;
    padding-top: 0;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 10vw, 130px);
    line-height: 0.92;
    letter-spacing: 0.04em;
    color: var(--white);
    opacity: 0;
    animation: slideUp .9s 2.55s ease forwards;
}

.hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 0.75em;
    color: var(--off-white);
    display: block;
    letter-spacing: 0.02em;
}

.hero-desc {
    font-size: 13px;
    line-height: 1.85;
    color: var(--off-white);
    margin-top: 24px;
    max-width: 380px;
    opacity: 0;
    animation: slideUp .8s 2.7s ease forwards;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    animation: slideUp .8s 2.85s ease forwards;
    border-bottom: 1px solid rgba(201, 169, 110, 0.5);
    padding-bottom: 6px;
    transition: border-color .3s, color .3s;
}

.hero-cta:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.hero-cta svg {
    transition: transform .4s ease;
}

.hero-cta:hover svg {
    transform: translateX(6px);
}

.hero-cta-primary {
    color: var(--black);
    background: var(--accent);
    border-bottom: none;
    padding: 12px 20px;
}

.hero-cta-primary:hover {
    color: var(--black);
    background: var(--white);
}

.hero-counter {
    position: absolute;
    right: 48px;
    bottom: 72px;
    z-index: 2;
    text-align: right;
    opacity: 0;
    animation: fadeIn .8s 3s ease forwards;
}

.hero-counter span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.05em;
}

.hero-counter p {
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--off-white);
    text-transform: uppercase;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── PHOTOGRAPHY ANIMATIONS ── */
@keyframes focusPulse {

    0%,
    100% {
        box-shadow: 0 0 12px rgba(201, 169, 110, 0.3), inset 0 0 8px rgba(201, 169, 110, 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(201, 169, 110, 0.5), inset 0 0 12px rgba(201, 169, 110, 0.2);
    }
}

@keyframes exposureFade {
    from {
        opacity: 0;
        filter: brightness(0.85) contrast(0.9);
    }

    to {
        opacity: 1;
        filter: brightness(1) contrast(1);
    }
}

.work-item img {
    animation: exposureFade .9s ease-out;
}

/* ── MARQUEE ── */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 110, 0.38);
    border-bottom: 1px solid var(--border);
    padding: 26px 0 18px;
    background: var(--off-black);
}

.marquee-inner {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.45em;
    color: var(--off-white);
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--accent);
    margin-right: 64px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

/* ── SECTION HEADER ── */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 100px 48px 60px;
    border-bottom: 1px solid var(--border);
}

.section-label {
    font-size: 9px;
    letter-spacing: 0.5em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 90px);
    line-height: 1;
    letter-spacing: 0.06em;
}

.section-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--off-white);
    font-size: 0.7em;
}

.section-link {
    font-size: 10px;
    letter-spacing: 0.38em;
    color: var(--off-white);
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
    transition: color .3s, border-color .3s;
    flex-shrink: 0;
    margin-bottom: 6px;
}

.section-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ── WORKS GRID ── */
#works {
    background: var(--off-black);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2px;
    padding: 2px;
}

.work-item {
    position: relative;
    overflow: hidden;
    cursor: none;
}

.work-item.large {
    grid-column: span 7;
    aspect-ratio: 16/10;
}

.work-item.medium {
    grid-column: span 5;
    aspect-ratio: 4/5;
}

.work-item.wide {
    grid-column: span 5;
    aspect-ratio: 16/9;
}

.work-item.tall {
    grid-column: span 4;
    aspect-ratio: 3/4;
}

.work-item.square {
    grid-column: span 3;
    aspect-ratio: 1/1;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .7s cubic-bezier(.16, 1, .3, 1),
        box-shadow .7s ease;
    filter: brightness(0.75) saturate(0.65) contrast(1.05);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.work-item:hover img {
    transform: scale(1.02);
    filter: brightness(0.95) saturate(1.1) contrast(1.15);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(201, 169, 110, 0.15);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 6, 6, 0.9) 0%, rgba(6, 6, 6, 0.1) 62%, transparent 100%);
    opacity: 0;
    transition: opacity .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-cat {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform .4s ease;
}

.work-item:hover .work-cat {
    transform: translateY(0);
}

.work-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: var(--white);
    transform: translateY(14px);
    transition: transform .4s .05s ease;
}

.work-item:hover .work-name {
    transform: translateY(0);
}

/* ── WORKS CONTROLS ── */
.works-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.view-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.5);
    border-radius: 3px;
    color: var(--white);
    cursor: pointer;
    transition: border-color .3s, color .3s, background .3s;
    padding: 0;
}

.view-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.view-toggle.active {
    border-color: var(--accent);
    background: rgba(201, 169, 110, 0.12);
    color: var(--accent);
}

.view-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ── LIGHTBOX ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 6, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
}

.lightbox-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
}

.lightbox-info {
    text-align: center;
}

.lightbox-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 6px;
}

.lightbox-cat {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.5);
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: border-color .3s, color .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lightbox-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.5);
    color: var(--white);
    cursor: pointer;
    transition: border-color .3s, color .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--off-white);
}

/* ── ABOUT SPLIT ── */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.6) contrast(1.08);
    transition: filter .8s ease;
    display: block;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 6, 6, 0.3), transparent 60%);
}

.about-content {
    background: var(--dark);
    padding: 100px 72px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.about-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    margin-bottom: -20px;
    letter-spacing: 0.05em;
}

.about-content .section-label {
    margin-bottom: 20px;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 3.5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 32px;
}

.about-title strong {
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}

.about-body {
    font-size: 14px;
    line-height: 2;
    color: var(--off-white);
    max-width: 420px;
    margin-bottom: 48px;
}

.stats-row {
    display: flex;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item {
    flex: 1;
    min-width: 0;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 0.04em;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--off-white);
    text-transform: uppercase;
    margin-top: 8px;
}

/* ── SERVICES ── */
#services {
    background: var(--black);
    padding-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--border);
}

.service-item {
    padding: 56px 48px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background .4s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .5s ease;
}

.service-item:hover {
    background: var(--mid);
}

.service-item:hover::before {
    width: 100%;
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--accent);
    opacity: 0.72;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.service-icon {
    width: 44px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 28px;
    transition: width .4s ease;
}

.service-item:hover .service-icon {
    width: 64px;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 22px;
    color: var(--white);
}

.service-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--off-white);
}

/* ── FULL BLEED SHOWCASE ── */
#showcase {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#showcase img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.4) contrast(1.1);
    transition: filter .8s ease;
}

.showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.showcase-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 56px);
    color: var(--white);
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 32px;
}

.showcase-attr {
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--accent);
    text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--off-black);
    padding: 100px 48px 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 60px;
}

.testi-item {
    background: var(--off-black);
    padding: 52px 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testi-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--accent-dim);
    line-height: 0.7;
    margin-bottom: 20px;
    color: var(--accent);
    opacity: 0.25;
}

.testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--white);
    margin-bottom: 32px;
}

.testi-author {
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--white);
    text-transform: uppercase;
}

.testi-role {
    font-size: 10px;
    color: var(--off-white);
    margin-top: 4px;
    letter-spacing: 0.15em;
}

/* ── SOCIAL PROOF ── */
#social-proof {
    background: var(--black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    padding: 2px;
}

.social-tile {
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.social-tile::after {
    content: 'View on Instagram';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(to top, rgba(6, 6, 6, 0.82), rgba(6, 6, 6, 0));
    opacity: 0;
    transition: opacity .35s ease;
}

.social-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.82) saturate(0.8);
    transition: transform .45s ease, filter .45s ease;
}

.social-tile:hover img {
    transform: scale(1.04);
    filter: brightness(0.96) saturate(1);
}

.social-tile:hover::after {
    opacity: 1;
}

/* ── CONTACT ── */
#contact {
    background: var(--dark);
    padding: 40px 48px 80px;
}

#contact .section-header {
    padding: 0 0 40px;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 0;
}

.contact-left {}

.contact-detail {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.contact-map-wrap {
    padding-top: 28px;
}

.contact-map {
    width: 100%;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    filter: grayscale(1) contrast(1.1) brightness(0.82);
}

.contact-detail-label {
    font-size: 9px;
    letter-spacing: 0.45em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-detail-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
}

.contact-right {}

.contact-right p {
    font-size: 14px;
    line-height: 2;
    color: var(--off-white);
    margin-bottom: 40px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--off-white);
}

.required-indicator {
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-field input,
.form-field textarea {
    background: var(--mid);
    border: 1px solid var(--border);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--white);
    padding: 14px 16px;
    font-family: 'Jost', sans-serif;
    font-weight: 200;
    font-size: 13px;
    outline: none;
    transition: border-color .3s;
    cursor: none;
}

.form-field input.form-invalid,
.form-field textarea.form-invalid {
    border-color: #c95050;
    border-bottom-color: #c95050;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--accent);
}

.form-field textarea {
    resize: none;
    height: 110px;
}

.form-full {
    margin-bottom: 16px;
}

.form-status {
    display: none;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.5;
}

.form-status.is-visible {
    display: block;
}

.form-status.success {
    color: #d8f2dd;
    background: rgba(36, 88, 47, 0.35);
    border-color: rgba(104, 183, 119, 0.55);
}

.form-status.error {
    color: #ffd9d9;
    background: rgba(120, 32, 32, 0.28);
    border-color: rgba(201, 80, 80, 0.7);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--accent);
    border: none;
    padding: 18px 40px;
    cursor: none;
    transition: background .3s, transform .3s;
}

.submit-btn:hover {
    background: var(--white);
    transform: translateX(4px);
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.22em;
    color: var(--off-white);
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.footer-copy {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.25);
}

.footer-credit-link {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-credit-link:hover {
    color: var(--white);
    text-decoration: none;
}

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

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    text-decoration: none;
    transition: color .3s, border-color .3s, transform .3s;
}

.footer-socials a svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
}

.footer-socials a:hover {
    color: var(--accent);
    border-color: rgba(201, 169, 110, 0.6);
    transform: translateY(-2px);
}

/* ── SCROLL INDICATOR ── */
.scroll-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 200;
    transition: width .1s;
    width: 0;
}

/* ── FADE IN ON SCROLL ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ── RESPONSIVE LIGHTBOX ── */
@media (max-width: 900px) {
    .lightbox {
        padding: 24px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .lightbox-container {
        width: 100%;
        margin-top: 60px;
    }

    .lightbox-container img {
        max-height: 50vh;
    }

    .lightbox-prev,
    .lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-counter {
        bottom: 12px;
        font-size: 11px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 6px 14px;
    }

    nav.scrolled {
        padding: 2px 12px;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo {
        gap: 8px;
        max-width: calc(100% - 84px);
        font-size: 20px;
        letter-spacing: 0.08em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-logo-img {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .nav-links {
        position: fixed;
        top: calc(var(--nav-height) + var(--viewport-top-offset));
        left: 0;
        right: 0;
        background: rgba(6, 6, 6, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 14px 18px;
        font-size: 13px;
        letter-spacing: 0.08em;
    }

    .nav-links a::after {
        display: none;
    }

    #intro {
        padding: 24px;
        gap: 12px;
    }

    .intro-logo {
        font-size: clamp(36px, 8vw, 80px);
        text-align: center;
    }

    .intro-sub {
        text-align: center;
    }

    .intro-loading {
        text-align: center;
        letter-spacing: 0.18em;
    }

    #skip-btn {
        position: fixed;
        bottom: 24px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        font-size: 9px;
    }

    .hero-counter {
        display: none;
    }

    #hero {
        padding: clamp(74px,
                calc(var(--nav-height) + var(--viewport-top-offset) + env(safe-area-inset-top, 0px) + 4px),
                112px) 24px 52px;
    }

    .hero-cta-group {
        gap: 14px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 72px 24px 48px;
    }

    #about {
        grid-template-columns: 1fr;
    }

    .about-image {
        display: none;
    }

    .about-content {
        padding: 72px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 700px) {
    #hero {
        padding: clamp(70px,
                calc(var(--nav-height) + var(--viewport-top-offset) + env(safe-area-inset-top, 0px) + 2px),
                100px) 20px 48px;
    }

    .works-grid {
        grid-template-columns: 1fr 1fr;
    }

    .works-grid::after {
        content: '';
        display: block;
        grid-column: span 1;
        aspect-ratio: 4/5;
        background-image: url('./images/janine.jpg');
        background-size: cover;
        background-position: center;
        filter: brightness(0.78) saturate(0.7) contrast(1.05);
    }

    .work-item.large,
    .work-item.medium,
    .work-item.wide,
    .work-item.tall,
    .work-item.square {
        grid-column: span 1;
        aspect-ratio: 4/5;
    }

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