/* ==========================================
   MAKE IT REAL EVENTS
   Colors: #020202 (dark), #F1EAE2 (cream)
   Headings: Saira Expanded (font-stretch:125%)
   Body: DM Sans
   ========================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --dark:  #020202;
    --cream: #F1EAE2;
    --white: #fff;
    --gray:  #888;
    --gray-dim: #555;
    --border: rgba(255,255,255,.08);
    --border-light: rgba(2,2,2,.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.cw { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 768px) { .cw { padding: 0 24px; } }

a { color: inherit; text-decoration: none; transition: opacity .25s; }
a:hover { opacity: .65; }

/* ── EXTENDED TEXT ───────────────────────── */
.ext {
    font-family: 'Saira', sans-serif;
    font-stretch: 125%;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── HEADER ─────────────────────────────── */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    transition: background .3s, border-color .3s;
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    background: rgba(2,2,2,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__logo:hover { opacity: 1; }

.header__nav { display: flex; gap: 40px; }

.header__nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gray);
    transition: color .3s;
}

.header__nav a:hover { color: var(--white); opacity: 1; }

.header__cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.2);
    padding: 10px 24px;
    transition: all .3s;
}

.header__cta:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    opacity: 1;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform .3s, opacity .3s;
    transform-origin: center;
}

.burger.active span:first-child { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu__link {
    font-family: 'Saira', sans-serif;
    font-stretch: 125%;
    font-weight: 600;
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ── BUTTONS ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Saira', sans-serif;
    font-stretch: 100%;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    height: 56px;
    padding: 0 40px;
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
}

.btn:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    opacity: 1;
}

.btn--full { width: 100%; }

.btn--light {
    border-color: rgba(2,2,2,.25);
    color: var(--dark);
}

.btn--light:hover {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
}

/* ── HERO ───────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}

.hero__fallback {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    display: none;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(2,2,2,.45) 0%,
        rgba(2,2,2,.2) 30%,
        rgba(2,2,2,.5) 65%,
        rgba(2,2,2,.97) 100%
    );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero__title {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.hero__line {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__line .ext {
    font-size: clamp(3rem, 8.5vw, 10rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: 0.04em;
}

.hero__line--accent { position: relative; }

.hero__deco {
    display: block;
    flex: 1;
    height: 3px;
    background: var(--cream);
    margin-left: 24px;
    min-width: 40px;
    position: relative;
}

.hero__deco::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 15%;
    height: 3px;
    background: var(--cream);
}

.hero__bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero__sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

/* ── MARQUEE ────────────────────────────── */
.marquee {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: marquee-scroll 25s linear infinite;
}

.marquee__text {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--cream);
    opacity: .4;
    flex-shrink: 0;
}

.marquee__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cream);
    opacity: .2;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── SERVICE CARDS — image bg ───────────── */
.services-section {
    padding: 100px 0;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.scard {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.scard--wide {
    grid-column: span 1;
}

.scard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .6s ease;
    filter: brightness(.6) saturate(.9);
}

.scard:hover .scard__img {
    transform: scale(1.06);
    filter: brightness(.45) saturate(1);
}

.scard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(2,2,2,.85) 100%);
    z-index: 1;
}

.scard__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scard__num {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: .2em;
}

.scard__title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    transition: transform .3s;
}

.scard:hover .scard__title {
    transform: translateY(-4px);
}

.scard__text {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    max-width: 300px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s, transform .4s;
}

.scard:hover .scard__text {
    opacity: 1;
    transform: translateY(0);
}

/* ── STATS ──────────────────────────────── */
.stats-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat__num {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--cream);
}

.stat__label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-dim);
    text-transform: uppercase;
    letter-spacing: .18em;
}

/* ── EYEBROW / SECTION HEADING ──────────── */
.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gray-dim);
    margin-bottom: 16px;
}

.eyebrow--dark { color: rgba(2,2,2,.4); }

.section-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    margin-bottom: 48px;
    color: var(--cream);
}

/* ── ABOUT — cream bg ───────────────────── */
.about-section {
    background: var(--cream);
    color: var(--dark);
}

/* Full-width cinematic photo */
.about-photo {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.about-photo__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--cream) 100%);
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
    margin-top: -60px;
}

.about__title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: var(--dark);
}

.about__deco {
    margin: 24px 0 32px;
    width: 80px;
    height: 3px;
    background: #EEBC0C;
    position: relative;
}

.about__deco::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0D5CB9;
}

.about__lead {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(2,2,2,.55);
}

.about__right {
    display: flex;
    flex-direction: column;
}

.about__feature {
    padding: 28px 0;
    border-top: 1px solid var(--border-light);
}

.about__feature:last-child {
    border-bottom: 1px solid var(--border-light);
}

.about__feature-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.about__feature-num {
    font-size: 12px;
    color: rgba(2,2,2,.2);
    flex-shrink: 0;
}

.about__feature-title {
    font-family: 'Saira', sans-serif;
    font-stretch: 100%;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about__feature-text {
    font-size: 14px;
    font-weight: 300;
    color: rgba(2,2,2,.45);
    line-height: 1.7;
    padding-left: 44px;
}

/* ── PORTFOLIO ──────────────────────────── */
.portfolio-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.portfolio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.portfolio__item {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    border-radius: 4px;
}

.portfolio__item iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ── CTA BAND ───────────────────────────── */
.cta-band {
    padding: 80px 0;
    background: var(--cream);
    color: var(--dark);
    text-align: center;
}

.cta-band__title {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
}

/* ── CONTACT ────────────────────────────── */
.contact-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: 0.04em;
    margin: 16px 0 48px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact__block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-dim);
    text-transform: uppercase;
    letter-spacing: .18em;
}

.contact__link {
    font-size: 16px;
    font-weight: 400;
    transition: color .3s;
}

.contact__link:hover { opacity: 1; color: var(--cream); }

.contact__socials { display: flex; gap: 24px; }

.contact__socials a {
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gray);
    transition: color .3s;
}

.contact__socials a:hover { color: var(--white); opacity: 1; }

/* Form */
.contact__form { display: flex; flex-direction: column; }

.form-group { border-bottom: 1px solid var(--border); }
.form-group:first-child { border-top: 1px solid var(--border); }

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 18px 0;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dim); font-weight: 300; }
.form-group select { appearance: none; cursor: pointer; color: var(--gray-dim); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group:focus-within { border-bottom-color: rgba(255,255,255,.3); }
.contact__form .btn { margin-top: 32px; }

/* ── FOOTER ─────────────────────────────── */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__logo { height: 28px; width: auto; opacity: .35; }

.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }

.footer__nav a,
.footer__copy {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray-dim);
}

.footer__nav a:hover { color: var(--white); opacity: 1; }

/* ── ANIMATIONS ─────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE — tablet ─────────────────── */
@media (max-width: 1024px) {
    .header__inner { padding: 0 24px; height: 70px; }
    .header__nav { display: none; }
    .header__cta { display: none; }
    .burger { display: flex; }
    .mobile-menu { display: flex; }

    .hero__content { padding: 0 24px 60px; }
    .hero__line .ext { font-size: clamp(3rem, 9vw, 6rem); }

    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }

    .services { grid-template-columns: repeat(2, 1fr); }

    .about { grid-template-columns: 1fr; gap: 40px; margin-top: 0; }
    .about-photo { height: 40vh; min-height: 250px; }

    .portfolio { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    .contact { grid-template-columns: 1fr; gap: 48px; }

    .cta-band { padding: 60px 0; }
    .cta-band__title { font-size: clamp(1.3rem, 4vw, 2.2rem); }
}

/* ── RESPONSIVE — mobile ────────────────── */
@media (max-width: 600px) {
    /* Hero */
    .hero { min-height: 100svh; }
    .hero__bg iframe { display: none; }
    .hero__fallback { display: block; filter: brightness(.35); }
    .hero__content { padding: 0 20px 48px; }
    .hero__line .ext { font-size: clamp(2.2rem, 11vw, 3.5rem); }
    .hero__deco { display: none; }
    .hero__bottom { gap: 20px; }
    .hero__sub { font-size: 14px; }
    .hero__sub br { display: none; }
    .btn { height: 48px; padding: 0 28px; font-size: 11px; width: 100%; }

    /* Header */
    .header__inner { padding: 0 20px; height: 60px; }
    .header__logo img { height: 28px; }

    /* Marquee */
    .marquee { padding: 14px 0; }
    .marquee__text { font-size: 1rem; }

    /* Services */
    .services-section { padding: 60px 0; }
    .services { grid-template-columns: 1fr; gap: 10px; }
    .scard { aspect-ratio: 3/2; }
    .scard__content { padding: 20px; }
    .scard__title { font-size: 1.2rem; }

    /* Stats */
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 24px 16px; }
    .stat__num { font-size: 2rem; }
    .stat__label { font-size: 10px; letter-spacing: .12em; }

    /* About */
    .about-photo { height: 30vh; min-height: 200px; }
    .about { padding: 40px 0 60px; gap: 32px; }
    .about__title { font-size: 1.6rem; }
    .about__lead { font-size: 14px; }
    .about__feature { padding: 20px 0; }
    .about__feature-head { gap: 12px; }
    .about__feature-title { font-size: 13px; }
    .about__feature-text { font-size: 13px; padding-left: 36px; }

    /* Portfolio */
    .portfolio-section { padding: 60px 0; }
    .portfolio { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .section-heading { font-size: 1.8rem; margin-bottom: 24px; }

    /* CTA */
    .cta-band { padding: 48px 0; }
    .cta-band__title { font-size: 1.2rem; margin-bottom: 24px; }
    .cta-band .btn { width: auto; }

    /* Contact */
    .contact-section { padding: 60px 0; }
    .contact__title { font-size: 2.2rem; margin: 12px 0 32px; }
    .contact__info { gap: 20px; margin-bottom: 32px; }
    .contact__form .btn { width: 100%; }

    /* Footer */
    .footer { padding: 24px 0; }
    .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer__logo { height: 22px; }
    .footer__nav { gap: 16px; }
}
