/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #080808;
    --deep: #0e0e0e;
    --panel: #141414;
    --border: #222222;
    --gold: #c9a84c;
    --gold2: #e8c96a;
    --white: #f0ece4;
    --muted: #6b6560;
    --red: #d94f38;
    --ff-title: 'Bebas Neue', sans-serif;
    --ff-serif: 'DM Serif Display', serif;
    --ff-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--ff-body);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: normal;
}

#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform .12s ease, width .3s, height .3s, opacity .3s;
    opacity: .5;
}

body.hovering #cursor {
    width: 16px;
    height: 16px;
    background: var(--gold2);
}

body.hovering #cursor-ring {
    width: 56px;
    height: 56px;
    opacity: .8;
}

/* ── GRAIN OVERLAY ── */
#grain {
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid transparent;
    transition: border-color .4s, background .4s, backdrop-filter .4s;
}

nav.scrolled {
    border-color: var(--border);
    background: rgba(8, 8, 8, .82);
    backdrop-filter: blur(18px);
}

.nav-logo {
    font-family: var(--ff-title);
    font-size: 1.6rem;
    letter-spacing: .12em;
    color: var(--white);
    text-decoration: none;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: .55rem 1.4rem;
    text-decoration: none;
    transition: background .25s, color .25s;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, #1a1508 0%, var(--black) 70%);
}

.hero-reel {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .18;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(201, 168, 76, .04) 3px, rgba(201, 168, 76, .04) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201, 168, 76, .025) 80px, rgba(201, 168, 76, .025) 81px);
}

/* Animated scan line */
.hero-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
    animation: scan 5s linear infinite;
    opacity: .3;
}

@keyframes scan {
    from {
        top: -2px;
    }

    to {
        top: 100%;
    }
}

.hero-counter {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.hero-counter-item {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-counter-num {
    font-family: var(--ff-title);
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 820px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.hero-h1 {
    font-family: var(--ff-title);
    font-size: clamp(4.5rem, 11vw, 11rem);
    line-height: .92;
    letter-spacing: .02em;
    color: var(--white);
    animation: fadeUp .9s ease both;
}

.hero-h1 em {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero-sub {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    animation: fadeUp .9s .2s ease both;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: fadeUp .9s .35s ease both;
}

.btn-primary {
    font-family: var(--ff-body);
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--gold);
    color: var(--black);
    padding: .85rem 2.2rem;
    transition: background .25s, transform .2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold2);
    transform: translateY(-2px);
}

.btn-outline {
    font-family: var(--ff-body);
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--white);
    padding: .85rem 2.2rem;
    display: inline-block;
    transition: border-color .25s, transform .2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--muted);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        width: 40px;
    }

    50% {
        width: 70px;
    }
}

/* ── MARQUEE TICKER ── */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    overflow: hidden;
    background: var(--deep);
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    font-family: var(--ff-title);
    font-size: 1rem;
    letter-spacing: .18em;
    color: var(--muted);
    padding: 0 3rem;
}

.ticker-item span {
    color: var(--gold);
    margin-right: .4rem;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECTION BASE ── */
section {
    padding: 8rem 3rem;
}

.section-label {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

/* ── ABOUT / REEL ── */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-h2 {
    font-family: var(--ff-title);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    line-height: .96;
    letter-spacing: .03em;
}

.about-h2 em {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--gold);
}

.about-body {
    margin-top: 1.8rem;
    font-size: .95rem;
    line-height: 1.85;
    color: var(--muted);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
}

.stat-num {
    font-family: var(--ff-title);
    font-size: 3.2rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .3rem;
}

.reel-box {
    aspect-ratio: 16/10;
    background: var(--panel);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 29px, var(--border) 29px, var(--border) 30px);
    opacity: .3;
}

.reel-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, .06) 0%, transparent 60%);
}

.play-btn {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: background .25s, transform .25s;
}

.play-btn:hover {
    background: var(--gold);
    transform: scale(1.08);
}

.play-btn svg {
    fill: var(--gold);
    transition: fill .25s;
}

.play-btn:hover svg {
    fill: var(--black);
}

.reel-label {
    position: absolute;
    bottom: 1.2rem;
    left: 1.4rem;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    z-index: 1;
}

/* ── SERVICES ── */
#services {
    background: var(--deep);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.services-h2 {
    font-family: var(--ff-title);
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    line-height: .96;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
}

.service-card {
    background: var(--panel);
    padding: 2.8rem 2.2rem;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.service-card:last-child {
    border-right: none;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.service-card:hover {
    background: #181610;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-family: var(--ff-title);
    font-size: 4rem;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.service-name {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: .8rem;
}

.service-desc {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--muted);
}

.service-arrow {
    margin-top: 2rem;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: gap .2s;
}

.service-card:hover .service-arrow {
    gap: 1rem;
}

/* ── PORTFOLIO ── */
#portfolio {
    background: var(--black);
}

.portfolio-header {
    margin-bottom: 3rem;
}

.portfolio-filter {
    display: flex;
    gap: .6rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: .5rem 1.2rem;
    cursor: none;
    background: none;
    transition: all .2s;
    font-family: var(--ff-body);
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1px;
    background: var(--border);
}

.p-item {
    background: var(--panel);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    cursor: none;
}

.p-item:nth-child(1) {
    grid-column: span 8;
    grid-row: span 1;
}

.p-item:nth-child(2) {
    grid-column: span 4;
}

.p-item:nth-child(3) {
    grid-column: span 4;
}

.p-item:nth-child(4) {
    grid-column: span 8;
}

.p-item:nth-child(5) {
    grid-column: span 6;
}

.p-item:nth-child(6) {
    grid-column: span 6;
}

.p-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.p-item:hover .p-thumb {
    transform: scale(1.04);
}

.p-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, .9) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .35s;
}

.p-item:hover .p-overlay {
    opacity: 1;
}

.p-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 1.6rem;
    transform: translateY(12px);
    opacity: 0;
    transition: all .35s ease;
    z-index: 2;
}

.p-item:hover .p-info {
    transform: translateY(0);
    opacity: 1;
}

.p-cat {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}

.p-title {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
}

.p-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-title);
    font-size: 1.4rem;
    letter-spacing: .15em;
    color: var(--border);
    background: var(--panel);
    position: relative;
    overflow: hidden;
}

.p-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(201, 168, 76, .025) 12px, rgba(201, 168, 76, .025) 13px);
}

.p-placeholder-label {
    position: relative;
    z-index: 1;
}

/* ── PROCESS ── */
#process {
    background: var(--deep);
}

.process-header {
    margin-bottom: 5rem;
    max-width: 600px;
}

.process-h2 {
    font-family: var(--ff-title);
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    line-height: .96;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--border), var(--gold));
    z-index: 0;
}

.process-step {
    padding: 0 2rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    background: var(--deep);
    font-family: var(--ff-title);
    font-size: 1.1rem;
    color: var(--gold);
    position: relative;
}

.step-name {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    margin-bottom: .6rem;
}

.step-desc {
    font-size: .85rem;
    line-height: 1.7;
    color: var(--muted);
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.testi-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-title);
    font-size: 22vw;
    color: rgba(201, 168, 76, .025);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: .05em;
    line-height: 1;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
}

.testi-card {
    background: var(--panel);
    padding: 3rem 2.5rem;
    position: relative;
    transition: background .3s;
}

.testi-card:hover {
    background: #131210;
}

.testi-quote {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--white);
    margin-bottom: 2rem;
}

.testi-quote::before {
    content: '\201C';
    color: var(--gold);
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: -.4em;
    margin-right: .2rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    overflow: hidden;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-title);
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.testi-name {
    font-size: .88rem;
    font-weight: 500;
}

.testi-role {
    font-size: .72rem;
    color: var(--muted);
    margin-top: .2rem;
    letter-spacing: .08em;
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.5rem;
}

.testi-stars span {
    color: var(--gold);
    font-size: .85rem;
}

/* ── CONTACT / CTA ── */
#contact {
    background: var(--deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-h2 {
    font-family: var(--ff-title);
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height: .96;
    margin-bottom: 1.5rem;
}

.contact-h2 em {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--gold);
}

.contact-body {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .85rem;
    color: var(--muted);
}

.contact-info-item strong {
    color: var(--white);
    font-weight: 400;
}

/* ── FORM ── */
.form-group {
    margin-bottom: 1.4rem;
}

.form-label {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
    display: block;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--white);
    padding: .9rem 1.1rem;
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 300;
    transition: border-color .25s;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select option {
    background: var(--panel);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--ff-body);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: none;
    transition: background .25s, transform .2s;
    font-weight: 500;
}

.form-submit:hover {
    background: var(--gold2);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.1rem;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 4rem 3rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo-wrap .nav-logo {
    font-size: 2rem;
}

.footer-tagline {
    font-size: .85rem;
    color: var(--muted);
    margin-top: .8rem;
    line-height: 1.6;
    max-width: 220px;
}

.footer-col-title {
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-links a {
    font-size: .85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1.8rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: .08em;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .7rem;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── FADE UP UTILITY ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 5rem 1.5rem;
    }

    #hero {
        padding: 0 1.5rem 4rem;
    }

    #about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .p-item {
        grid-column: span 2 !important;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps::before {
        display: none;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    #contact {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-counter {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ── VIDEO MODAL ── */
#modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .95);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

#modal.open {
    display: flex;
}

.modal-inner {
    position: relative;
    width: 90vw;
    max-width: 900px;
}

.modal-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    cursor: none;
    background: none;
    border: none;
    font-family: var(--ff-body);
}

/* ── LOADER ── */
#loader {

    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

#loader.done {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--ff-title);
    font-size: 2.5rem;
    letter-spacing: .15em;
    color: var(--white);
}

.loader-logo span {
    color: var(--gold);
}

.loader-bar-wrap {
    width: 180px;
    height: 1px;
    background: var(--border);
    margin-top: 2rem;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    background: var(--gold);
    animation: loadBar .9s ease forwards;
}

@keyframes loadBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}