/* ================================================================
   ALY MADE THIS — Main Stylesheet
   Every pixel, on purpose.
================================================================ */

/* ----------------------------------------------------------------
   Custom Properties / Design Tokens
---------------------------------------------------------------- */
:root {
    --ink:    #0D0D0D;
    --cream:  #F7F3ED;
    --pop:    #FF3C5F;
    --acid:   #C8F53C;
    --sky:    #A8D8FF;
    --warm:   #FFB347;
    --dim:    rgba(13,13,13,0.55);

    --font-display: 'Syne', sans-serif;
    --font-body:    'Cabinet Grotesk', sans-serif;

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  20px;
    --radius-pill: 999px;

    --transition: 0.25s ease;
}

/* ----------------------------------------------------------------
   Reset & Base
---------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ----------------------------------------------------------------
   Custom Cursor
---------------------------------------------------------------- */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--pop);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--pop);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.08s ease;
}

/* ----------------------------------------------------------------
   Navigation
---------------------------------------------------------------- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
    background: rgba(247,243,237,0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(13,13,13,0.08);
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    mix-blend-mode: normal;
    transition: color var(--transition);
}

/* Override logo color on dark hero panel — handled via JS class */
body.nav-on-dark .nav-logo { color: var(--cream); }
body.nav-on-dark .site-nav.scrolled .nav-logo { color: var(--ink); }

.nav-logo-dot { color: var(--pop); }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--pop);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-links a:hover { color: var(--pop); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    cursor: none;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   Hero
---------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-left {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-deco {
    position: absolute;
    top: 3rem;
    right: -2rem;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(200,245,60,0.15);
    border-radius: 50%;
    animation: spin 20s linear infinite;
    pointer-events: none;
}

.hero-deco::after {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px dashed rgba(200,245,60,0.1);
    border-radius: 50%;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-tag {
    display: inline-block;
    background: var(--acid);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
    width: fit-content;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3.5rem, 6.5vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero-title .pop  { color: var(--pop); }
.hero-title .acid { color: var(--acid); }

.hero-sub {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(247,243,237,0.6);
    line-height: 1.65;
    max-width: 320px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pop);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-pill);
    width: fit-content;
    transition: transform var(--transition), background var(--transition);
}

.hero-cta:hover {
    transform: scale(1.04);
    background: #e02a50;
}

.hero-right {
    background: var(--pop);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-marquee-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 150%;
    left: -25%;
    overflow: hidden;
    pointer-events: none;
}

.hero-marquee {
    display: flex;
    gap: 0;
    animation: marquee 8s linear infinite;
    white-space: nowrap;
}

.hero-marquee span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(4rem, 8vw, 7.5rem);
    color: rgba(255,255,255,0.1);
    letter-spacing: -0.04em;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hero-stat-block {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 340px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: #fff;
}

.stat-card.big { grid-column: span 2; }

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

/* ----------------------------------------------------------------
   Scrolling Strip
---------------------------------------------------------------- */
.strip {
    background: var(--acid);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}

.strip-inner {
    display: flex;
    gap: 0;
    animation: strip-scroll 14s linear infinite;
    white-space: nowrap;
}

.strip-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 2rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.strip-dot {
    width: 6px;
    height: 6px;
    background: var(--pop);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes strip-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   Shared Section Styles
---------------------------------------------------------------- */
.section { padding: 6rem 2.5rem; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--pop);
    margin-bottom: 0.5rem;
}

.acid-label { color: var(--acid); }
.dk-label   { color: rgba(13,13,13,0.5); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.light-title { color: var(--cream); }

.view-all {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    border-bottom: 2px solid var(--pop);
    padding-bottom: 2px;
    transition: color var(--transition);
    white-space: nowrap;
}

.view-all:hover { color: var(--pop); }

/* ----------------------------------------------------------------
   Work Grid
---------------------------------------------------------------- */
.work-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.work-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: none;
    transition: transform 0.3s ease;
}

.work-card:hover { transform: scale(1.01); }
.work-card.tall  { grid-row: span 2; }

.proj-placeholder {
    width: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1.5rem;
}

.work-card.tall .proj-placeholder { min-height: 520px; }

.proj-color-a { background: #1a1a2e; }
.proj-color-b { background: #2d1b4e; }
.proj-color-c { background: #0f3d2e; }

.proj-pill {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
}

.proj-name {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.12);
}

.proj-color-a .proj-name { color: rgba(255,107,157,0.5); }
.proj-color-b .proj-name { color: rgba(200,245,60,0.4); }
.proj-color-c .proj-name { color: rgba(168,216,255,0.4); }

.work-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.3s ease;
}

.work-card:hover .work-overlay {
    opacity: 1;
    transform: translateY(0);
}

.work-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
}

.work-type {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
}

.work-arrow {
    width: 38px;
    height: 38px;
    background: var(--acid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--ink);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.work-arrow:hover { transform: scale(1.1); }

/* ----------------------------------------------------------------
   Services
---------------------------------------------------------------- */
.services-section {
    background: var(--ink);
    padding: 6rem 0;
}

.services-inner {
    padding: 0 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(247,243,237,0.08);
    border: 1px solid rgba(247,243,237,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3rem;
}

.service-item {
    background: var(--ink);
    padding: 2.5rem;
    position: relative;
    transition: background var(--transition);
    cursor: none;
}

.service-item:hover { background: #161616; }

.service-num {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(247,243,237,0.25);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.si-acid { background: rgba(200,245,60,0.1);  color: var(--acid); }
.si-pop  { background: rgba(255,60,95,0.1);   color: var(--pop); }
.si-sky  { background: rgba(168,216,255,0.1); color: var(--sky); }
.si-warm { background: rgba(255,179,71,0.1);  color: var(--warm); }

.service-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.875rem;
    color: rgba(247,243,237,0.48);
    line-height: 1.7;
}

.service-hover-dot {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pop);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-item:hover .service-hover-dot { opacity: 1; }

/* ----------------------------------------------------------------
   Testimonials
---------------------------------------------------------------- */
.testi-section {
    padding: 6rem 2.5rem;
    background: var(--cream);
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 9rem;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}

.testi-featured { background: var(--pop); }
.testi-featured .testi-text { color: rgba(255,255,255,0.9); }
.testi-featured .testi-name { color: #fff; }
.testi-featured .testi-role { color: rgba(255,255,255,0.65); }
.testi-featured .testi-stars { color: var(--acid); }

.testi-stars {
    color: var(--warm);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.testi-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(247,243,237,0.8);
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cream);
}

.testi-role {
    font-size: 0.75rem;
    color: rgba(247,243,237,0.45);
    margin-top: 0.1rem;
}

/* ----------------------------------------------------------------
   Contact / CTA Section
---------------------------------------------------------------- */
.contact-section {
    background: var(--acid);
    padding: 6rem 2.5rem;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--ink);
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(5rem, 14vw, 11rem);
    color: rgba(13,13,13,0.06);
    white-space: nowrap;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.cta-sub {
    font-size: 1rem;
    color: rgba(13,13,13,0.65);
    line-height: 1.65;
    max-width: 340px;
    margin-bottom: 1.5rem;
}

.cta-email-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
    padding-bottom: 2px;
    transition: opacity var(--transition);
}

.cta-email-link:hover { opacity: 0.65; }

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
}

.required { color: var(--pop); }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(247,243,237,0.7);
    border: 2px solid rgba(13,13,13,0.15);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color var(--transition), background var(--transition);
    width: 100%;
    outline: none;
    cursor: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(13,13,13,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--ink);
    background: rgba(247,243,237,0.95);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: none;
    width: fit-content;
    transition: transform var(--transition), background var(--transition);
}

.form-submit:hover  { transform: scale(1.03); background: #222; }
.form-submit:active { transform: scale(0.99); }
.form-submit:disabled { opacity: 0.6; }

.form-feedback {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.6rem 0;
    min-height: 1.5rem;
}

.form-feedback.success { color: #1a6b3c; }
.form-feedback.error   { color: #b91c1c; }

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 2.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(247,243,237,0.06);
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.footer-dot { color: var(--acid); }

.footer-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(247,243,237,0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-email {
    color: var(--acid);
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity var(--transition);
}

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

.footer-meta {
    font-size: 0.75rem;
    color: rgba(247,243,237,0.35);
}

/* ----------------------------------------------------------------
   Responsive — Tablet
---------------------------------------------------------------- */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
    }

    .hero-left {
        padding: 7rem 2rem 3rem;
        min-height: 65vh;
    }

    .hero-right {
        padding: 4rem 2rem;
        min-height: 40vh;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .work-card.tall { grid-row: span 1; }

    .site-nav { padding: 1rem 1.5rem; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        bottom: 0;
        width: 280px;
        background: var(--ink);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 2rem 2.5rem;
        transition: right 0.35s ease;
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        color: var(--cream);
        font-size: 1.1rem;
    }

    .nav-toggle { display: flex; }

    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ----------------------------------------------------------------
   Responsive — Mobile
---------------------------------------------------------------- */
@media (max-width: 600px) {
    .section,
    .services-inner,
    .testi-section,
    .contact-section { padding-left: 1.25rem; padding-right: 1.25rem; }

    .hero-left { padding: 6rem 1.5rem 2.5rem; }
    .hero-right { padding: 3rem 1.5rem; }

    .site-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-right { text-align: center; }

    .hero-stat-block { max-width: 100%; }
}

/* ----------------------------------------------------------------
   Reduced Motion
---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .strip-inner,
    .hero-marquee,
    .hero-deco {
        animation: none;
    }

    * { transition-duration: 0.01ms !important; }
}

#wpadminbar {
    position: fixed !important;
}

.admin-bar .site-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-nav {
        top: 46px;
    }
}