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

:root {
    --red:          #CF2626;
    --red-dark:     #A81E1E;
    --black:        #0A0A0A;
    --white:        #FFFFFF;
    --off-white:    #F9F8F6;
    --gray-light:   #F2F2F2;
    --border:       #E5E5E5;
    --text:         #0A0A0A;
    --text-mid:     #555555;
    --text-light:   #999999;
    --font-display: 'Bebas Neue', sans-serif;
    --font-script:  'Great Vibes', cursive;
    --font-serif:   'Playfair Display', serif;
    --font-body:    'Inter', sans-serif;
    --ease:         0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; display: block; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease;
}

.cursor-ring {
    position: fixed;
    width: 34px; height: 34px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.35;
}

.cursor-ring.hover { width: 56px; height: 56px; opacity: 0.2; }

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section { padding: 110px 0; background: var(--white); }
.section-dark  { background: var(--black); }
.section-red   { background: var(--red); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 0;
    transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.05em;
    transition: color var(--ease);
}
.nav-logo:hover { color: var(--black); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

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

.nav-handle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
    transition: color var(--ease);
}
.nav-handle:hover { color: var(--red); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--text);
    transition: var(--ease);
    transform-origin: center;
}

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

/* ===========================
   PAGE 1: HERO
   =========================== */
.hero {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3rem 2rem;
    max-width: 1400px;
}

.hero-namepre {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.1rem;
}

.hero-title-wrap {
    position: relative;
    line-height: 1;
}

.hero-marketing {
    font-family: var(--font-display);
    font-size: clamp(7rem, 17vw, 14rem);
    line-height: 0.88;
    color: var(--red);
    letter-spacing: 0.01em;
    display: block;
}

.hero-portfolio {
    font-family: var(--font-script);
    font-size: clamp(4rem, 9vw, 8rem);
    color: var(--black);
    display: block;
    margin-top: -1rem;
    margin-left: 1.5rem;
    line-height: 1.1;
}

.hero-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-desc {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    line-height: 1.8;
}

.hero-email {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.04em;
}

.hero-redbar {
    width: 100%;
    height: 28px;
    background: var(--red);
    flex-shrink: 0;
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--black);
    padding: 1rem 0;
    overflow: hidden;
}
.marquee-inner { display: flex; overflow: hidden; }
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
    white-space: nowrap;
}
.marquee-content span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.msep { color: var(--red) !important; font-size: 0.5rem !important; }

/* ===========================
   PAGE 2: BIOGRAPHY
   =========================== */
.bio-section {
    background: var(--red);
    padding: 100px 0;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 5rem;
    align-items: center;
}

.bio-left { color: var(--white); }

.bio-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
}

.bio-heading {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: normal;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.bio-left p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
}
.bio-left p:last-child { margin-bottom: 0; }

/* Right side: phone + badges */
.bio-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bio-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    color: var(--red);
    padding: 0.6rem 1.25rem;
    text-align: center;
    width: 100%;
}

.bio-badge strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
    color: var(--red);
}

.bio-badge span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-top: 0.2rem;
}

.bio-phone-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ===== PHONE FRAMES ===== */
.phone-frame {
    position: relative;
    background: #111;
    border-radius: 36px;
    border: 7px solid #1e1e1e;
    box-shadow:
        0 0 0 1.5px #333,
        0 24px 60px rgba(0,0,0,0.5),
        inset 0 0 0 1px rgba(255,255,255,0.06);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #111;
    border-radius: 0 0 14px 14px;
    z-index: 20;
    pointer-events: none;
}

/* Bio phone */
.phone-bio {
    width: 220px;
    height: 460px;
}

.phone-bio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.phone-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #2a1111;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(207,38,38,0.5);
}

.bio-handle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    text-transform: lowercase;
    text-align: center;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: 100%;
}

/* ===========================
   WHY ME
   =========================== */
.why-header { margin-bottom: 4rem; }

.eyebrow-light {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.75rem;
}

.eyebrow-red {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.display-heading {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 10vw, 11rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 4rem;
}

.display-heading--dark { color: var(--black); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.why-item {
    padding: 2.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    transition: background var(--ease);
}
.why-item:nth-child(even) { border-right: none; }
.why-item:hover { background: rgba(255,255,255,0.03); }

.why-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1;
    color: var(--red);
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.why-body h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.why-body p {
    font-size: 0.94rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
}

/* ===========================
   RECENT COLLABS — Red + Phone mockups
   =========================== */
.script-heading {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: normal;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 3.5rem;
}

/* ===========================
   RECENT COLLABS — Portrait Filmstrip
   =========================== */
.collab-editorial-grid {
    display: flex;
    gap: 1rem;
}

.collab-card {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 9 / 16;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    display: block;
    text-decoration: none;
}

/* Photo fills card */
.collab-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    max-width: none;
    transition: transform 0.6s ease;
}
.collab-card:hover .collab-card-img { transform: scale(1.04); }

/* Label overlay */
.collab-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 4rem 1.1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex; flex-direction: column; gap: 0.2rem;
    z-index: 10; pointer-events: none;
}
.collab-card-tag {
    font-size: 0.55rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.collab-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem; letter-spacing: 0.04em;
    color: #fff; line-height: 1;
}

/* Reel cards: label at top so like icons at bottom stay visible */
.collab-card-info--top {
    top: 0; bottom: auto;
    padding: 1rem 1.1rem 4rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
}

/* Reel cards dark background */
.collab-card--bullforce { background: #060606; }
.collab-card--nyfw      { background: #060606; }
.collab-card--paramount { background: #060606; }

/* Subtle play hint — fades in on hover */
.collab-ig-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    padding-left: 2px;
}
.collab-card:hover .collab-ig-hint { opacity: 1; }


/* ===========================
   CONTENT — Red + Phone reels
   =========================== */
.content-section {
    padding-bottom: 0;
}

.content-section .container {
    margin-bottom: 2.5rem;
}

.content-meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    flex-wrap: wrap;
}

.content-meta-row a {
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: opacity var(--ease);
}
.content-meta-row a:hover { opacity: 0.7; }
.cmeta-dot { color: rgba(255,255,255,0.3); }

.phone-reels-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 3rem 4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
    cursor: grab;
    background: rgba(0,0,0,0.15);
}

.phone-reels-wrap::-webkit-scrollbar { height: 3px; }
.phone-reels-wrap::-webkit-scrollbar-track { background: transparent; }
.phone-reels-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 0; }

.phone-reels-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    align-items: flex-end;
}

.phone-reel-item { flex-shrink: 0; }

.phone-reel-frame {
    width: 240px;
    height: 490px;
}

.phone-reel-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    padding-top: 22px;
    clip-path: inset(74px 0 130px 0);
}

/* Div overlays to hide Instagram header (name/song) and footer (likes/view more) */
.reel-overlay-top {
    position: absolute;
    top: 22px;
    left: 0; right: 0;
    height: 60px;
    background: #111;
    z-index: 18;
    pointer-events: none;
}

.reel-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 90px;
    background: #111;
    z-index: 18;
    pointer-events: none;
}


/* ===========================
   ANALYST EDGE
   =========================== */
.section-head { margin-bottom: 4rem; }

.analyst-intro {
    margin-bottom: 4rem;
    border-left: 4px solid var(--red);
    padding-left: 2rem;
}

.analyst-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-style: italic;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.analyst-sub {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 680px;
}

.analyst-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 0;
    border-top: 1px solid var(--border);
}

.analyst-item {
    padding: 2.5rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: background var(--ease);
}
.analyst-item:nth-child(even) { border-right: none; }
.analyst-item:hover { background: var(--gray-light); }

.analyst-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--red);
    flex-shrink: 0;
    opacity: 0.6;
}

.analyst-content h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.7rem;
    line-height: 1.35;
}

.analyst-content p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.85;
}

.arrow { color: var(--red); font-style: normal; }

.analyst-creds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1.5px solid var(--border);
}

.cred-item {
    padding: 2rem 2.25rem;
    border-right: 1.5px solid var(--border);
    transition: background var(--ease);
}
.cred-item:last-child { border-right: none; }
.cred-item:hover { background: var(--gray-light); }

.cred-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.cred-item p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cred-note {
    font-size: 0.78rem !important;
    color: var(--red) !important;
    font-weight: 500;
}

/* ===========================
   SKILLS
   =========================== */
.skills-section { background: var(--white); }

.skills-header { margin-bottom: 4rem; }

/* ===========================
   SKILLS — 2-COLUMN LAYOUT
   =========================== */
.skills-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 5rem;
    align-items: start;
}

.skills-tools-col,
.skills-list-col { }

.tools-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.tool-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1.1rem 0.5rem;
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
    min-height: 82px;
}

.tool-badge:hover {
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(207,38,38,0.07);
    transform: translateY(-2px);
}

.tool-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tool-badge--custom svg {
    color: var(--text-mid);
    transition: color var(--ease);
}
.tool-badge--custom:hover svg { color: var(--red); }

.tool-fb {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1;
}

.tool-name {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-align: center;
    line-height: 1.3;
}

/* Unified skill list (right column) */
.skill-list-unified {
    list-style: none;
    border: 1.5px solid var(--border);
}

.skill-list-unified li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.4rem;
    font-size: 0.93rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
    transition: background var(--ease), color var(--ease);
    line-height: 1.4;
}

.skill-list-unified li:last-child { border-bottom: none; }

.skill-list-unified li:hover {
    background: var(--gray-light);
    color: var(--text);
}

.skill-list-unified li::before {
    content: '→';
    color: var(--red);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* ===========================
   COMPANY LOGO ITEMS (Analyst strip)
   =========================== */
.company-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.company-logo-item img {
    height: 32px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter var(--ease), opacity var(--ease);
}

.company-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.company-text-fallback {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--text-mid);
}

.company-logo-name {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Logo strip — company/school names in one line */
.logo-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 2.5rem 0 4.5rem;
    gap: 0.75rem;
}

.logo-strip-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-light);
}

.logo-strip-companies {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-strip-companies > span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: var(--text-mid);
}

.logo-sep {
    color: var(--red) !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    letter-spacing: 0 !important;
}

/* ===========================
   FOOTER / CONTACT
   =========================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 6rem 0 3rem;
    overflow: hidden;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.footer-email {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3.5rem;
    transition: color var(--ease);
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.25rem;
    word-break: break-all;
}
.footer-email:hover { color: var(--red); }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    transition: color var(--ease);
}
.footer-link:hover { color: var(--white); }

.footer-watermark {
    font-family: var(--font-display);
    font-size: clamp(4rem, 11vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 2rem;
    pointer-events: none;
    user-select: none;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.06em;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
    .bio-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    .bio-badge { width: auto; padding: 0.75rem 1.5rem; }
    .analyst-creds { grid-template-columns: 1fr; }
    .cred-item { border-right: none; border-bottom: 1.5px solid var(--border); }
    .cred-item:last-child { border-bottom: none; }
    .skills-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-item { border-right: none; }
    .analyst-grid { grid-template-columns: 1fr; }
    .analyst-item { border-right: none; }
    /* filmstrip: stays flex, cards naturally shrink */
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    a, button { cursor: auto; }
    .nav-toggle { cursor: pointer; }

    .container { padding: 0 1.5rem; }
    .nav-container { padding: 0 1.5rem; }
    .footer-inner { padding: 0 1.5rem; }
    .hero-content { padding: 2rem 1.5rem 1.5rem; }
    .phone-reels-wrap { padding: 1.5rem 1.5rem 3rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-links li a { display: block; padding: 0.9rem 1.5rem; }
    .nav-links a::after { display: none; }
    .nav-handle { display: none; }
    .nav-toggle { display: flex; cursor: pointer; }

    .section { padding: 75px 0; }
    .bio-section { padding: 75px 0; }

    .hero-marketing { font-size: clamp(5rem, 18vw, 9rem); }
    .hero-portfolio { font-size: clamp(3rem, 12vw, 5.5rem); }
    .hero-bottom-row { flex-direction: column; align-items: flex-start; }

    .display-heading { font-size: clamp(3.5rem, 14vw, 7rem); margin-bottom: 2.5rem; }
    .why-item { padding: 2rem 1.5rem; }
    .analyst-item { padding: 2rem 1.5rem; }

    .collab-editorial-grid {
        gap: 0.6rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .collab-editorial-grid::-webkit-scrollbar { display: none; }
    .collab-card { flex: 0 0 200px; }
    .logo-strip-companies { gap: 1rem; }
    .logo-strip-companies > span { font-size: 1.3rem; }
    .tools-grid { grid-template-columns: repeat(3, 1fr); }
    .skill-list-unified li { padding: 0.85rem 1.1rem; font-size: 0.86rem; }
}

@media (max-width: 480px) {
    .hero-redbar { height: 20px; }
    .display-heading { font-size: 3.5rem; }
    .footer-heading { font-size: 3rem; }
    .footer-email { font-size: 1.3rem; }
    .footer-watermark { font-size: 3.5rem; }
    .collab-card { flex: 0 0 170px; }
}
