/* ============================================
   ALX.CO.NZ — Premium Marketing Portfolio
   Philosophy: The site IS the marketing
   ============================================ */

/* Font loaded via <link> in HTML — no @import needed */

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Screen-reader only — visually hidden but readable by crawlers and AT */
.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;
}

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

:root {
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-card: #111111;
    --white: #ffffff;
    --white-dim: #e0e0e0;
    --gray: #a0a0a0;
    --gray-light: #cccccc;
    --gray-dark: #444444;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.12);
    --accent: #ffffff;
    --whatsapp: #25D366;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray); }
* { scrollbar-width: thin; scrollbar-color: var(--gray-dark) var(--black); }

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.work-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.work-item.reveal:nth-child(3) { transition-delay: 0.2s; }
.work-item.reveal:nth-child(4) { transition-delay: 0.3s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.client-item.reveal:nth-child(2) { transition-delay: 0.05s; }
.client-item.reveal:nth-child(3) { transition-delay: 0.1s; }
.client-item.reveal:nth-child(4) { transition-delay: 0.15s; }
.client-item.reveal:nth-child(5) { transition-delay: 0.2s; }
.client-item.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ============================================
   NAV — Minimal Sticky
   ============================================ */
#site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem clamp(1.25rem, 5vw, 3rem);
    transition: var(--transition);
    background: transparent;
}

#site-nav.nav-scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem clamp(1.25rem, 5vw, 3rem);
}

#site-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 28px;
    width: auto;
    filter: brightness(1);
    transition: var(--transition);
}

.nav-brand:hover .nav-logo {
    filter: brightness(0.85);
}

.footer-logo {
    height: 24px;
    width: auto;
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-sm) !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* WhatsApp nav button */
.nav-whatsapp {
    background: var(--whatsapp) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-sm) !important;
    margin-left: 0.25rem;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
}

.nav-whatsapp:hover {
    background: #1fb855 !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-whatsapp i {
    font-size: 1.1rem;
}

/* Mobile nav links are handled by hamburger menu section below */

/* ============================================
   PAGE HEADER — Sub-pages
   ============================================ */
.page-header {
    padding-top: clamp(8rem, 15vw, 12rem);
    padding-bottom: clamp(2rem, 4vw, 4rem);
    text-align: center;
    background: var(--black);
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

/* ============================================
   HERO — Full Viewport Impact
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem clamp(1.25rem, 5vw, 3rem);
    max-width: 900px;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 2rem;
    animation: heroFadeIn 1s ease-out 0.2s both;
}

.brand-descriptor {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-top: 0.25rem;
}

.hero-headline {
    font-size: clamp(2.25rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--gray-light);
    font-weight: 400;
    margin-bottom: 2.5rem;
    animation: heroFadeIn 1s ease-out 0.6s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 0.8s both;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    animation: heroFadeIn 1s ease-out 1.2s both;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: block;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--white), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 3rem);
    background: var(--black-soft);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--white);
}

.stat-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
}

.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: var(--gray);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gray-dark), transparent);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   WORK SECTION
   ============================================ */
.work-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black);
}

.work-section-page {
    padding-top: clamp(1rem, 2vw, 2rem);
}

/* Featured work — hero piece with YouTube embed */
.work-featured {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    transition: var(--transition);
}

.work-featured:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.work-featured-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
}

.work-featured-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.work-featured-info {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.work-featured-info h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.work-featured-info p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 700px;
}

.work-featured-video {
    position: relative;
    width: 100%;
    background: #000;
}

.work-featured-video video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
    background: #000;
}

.work-featured-vertical {
    display: flex;
    justify-content: center;
}

.work-featured-vertical video {
    max-width: 350px;
    max-height: 600px;
}

.work-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
    .work-grid-3 { grid-template-columns: 1fr; }
}

.work-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.work-item:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.work-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.work-media video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
    background: #000;
}

.work-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.work-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.work-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.work-info p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.work-cta {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.work-cta .btn-primary,
.work-cta .btn-outline {
    margin: 0 0.5rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px);
    background: var(--glass-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--black);
    border-radius: 14px;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--gray-light);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--black);
    border-top: 1px solid var(--glass-border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.process-step {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black);
    border-top: 1px solid var(--glass-border);
}

.founder-card {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: var(--transition);
}

.founder-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.founder-card-expanded {
    max-width: 800px;
}

.founder-photo-wrap {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--glass);
    border: 2px solid var(--glass-border);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    background: linear-gradient(135deg, var(--gray-dark), var(--black-card));
    letter-spacing: 0.05em;
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.founder-title {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.founder-bio:last-of-type {
    margin-bottom: 1.25rem;
}

.founder-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.founder-link:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.founder-link-whatsapp:hover {
    border-color: var(--whatsapp);
    color: var(--whatsapp);
    background: rgba(37, 211, 102, 0.1);
}

@media (max-width: 600px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-links {
        justify-content: center;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black-soft);
}

.cta-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-block h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.cta-block p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black);
}

/* Client carousel */
.carousel-wrapper {
    overflow: hidden;
    padding: 1.5rem 0 3rem;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: carouselScroll 30s linear infinite;
    width: max-content;
}

.carousel-item {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white-dim);
    white-space: nowrap;
    transition: var(--transition);
}

.carousel-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

@keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black-soft);
}

.about-layout {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-light);
}

.badge i {
    color: var(--white);
    font-size: 0.9rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black);
    border-top: 1px solid var(--glass-border);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--gray-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray);
    transition: var(--transition);
    flex-shrink: 0;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    padding-bottom: 1.25rem;
}

.faq-answer a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    color: var(--gray-light);
}

/* FAQ open state */
.faq-item.faq-open .faq-answer {
    max-height: 300px;
}

.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
    color: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black);
}

/* Intake Form */
.contact-form-card {
    max-width: 650px;
    margin: 0 auto 2rem;
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.contact-form-card h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-form-card .contact-sub {
    text-align: center;
    margin-bottom: 2rem;
}

.intake-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gray);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--black-card);
    color: var(--white);
}

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

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
    flex: 1;
    justify-content: center;
}

@media (max-width: 480px) {
    .form-actions { flex-direction: column; }
}

/* Contact divider */
.contact-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.contact-divider span {
    background: var(--black);
    padding: 0 1.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    max-width: 80%;
    height: 1px;
    background: var(--glass-border);
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

.contact-card h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.contact-sub {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.contact-btn i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

/* WhatsApp button accent */
.contact-btn.whatsapp:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: var(--white);
}

/* Contact location badge */
.contact-location {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: left;
}

.location-badge i {
    font-size: 1.5rem;
    color: var(--white);
}

.location-badge strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.location-badge span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   FOOTER — Comprehensive
   ============================================ */
footer {
    padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.footer-link {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-light);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: var(--transition);
}

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

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--gray-light);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: var(--glass-hover);
}

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

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-section {
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 7rem);
}

.privacy-content {
    max-width: 750px;
    margin: 0 auto;
}

.privacy-content h2 {
    text-align: left;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 2.5rem 0 1rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--white-dim);
}

.privacy-content p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.privacy-content ul li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    line-height: 1.7;
}

.privacy-content ul li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--white);
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.privacy-content a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-content a:hover {
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-divider {
        display: none;
    }

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

    .work-embed {
        min-height: 400px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-secondary {
        justify-content: center;
        min-height: 52px; /* comfortable thumb target at events */
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-badges {
        justify-content: center;
    }

    .work-embed {
        min-height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        justify-content: center;
    }
}

/* JS fallback — show everything if JS fails */
.no-js .reveal {
    opacity: 1;
    transform: none;
}

/* Small mobile */
@media (max-width: 360px) {
    .hero-headline {
        font-size: 1.75rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HAMBURGER MENU — Mobile
   ============================================ */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

@media (max-width: 768px) {
    .nav-hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 80vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0.25rem;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .nav-links.mobile-open {
        transform: translateX(0);
    }

    .nav-links a {
        display: flex !important;
        font-size: 1.1rem;
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
        color: var(--gray-light);
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        justify-content: center;
    }

    .nav-whatsapp {
        margin-left: 0 !important;
        justify-content: center;
    }

    .nav-whatsapp span {
        display: inline !important;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--black-soft);
    border-top: 1px solid var(--glass-border);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-quote {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--gray-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-quote::before {
    content: '\201C';
    display: block;
    font-size: 2.5rem;
    font-style: normal;
    color: var(--gray-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
    margin-top: 0.15rem;
}

/* ============================================
   MID-PAGE CTA BAND
   ============================================ */
.mid-cta-band {
    text-align: center;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.mid-cta-band p {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.mid-cta-band .btn-primary {
    display: inline-flex;
}

/* ============================================
   SKIP NAVIGATION LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--white);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 1rem;
}

/* ============================================
   FOCUS VISIBLE STYLES
   ============================================ */
:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible,
.contact-btn:focus-visible,
.nav-cta:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .carousel-track { animation: none; }
    .scroll-line { animation: none; }
}
