/* ═══════════════════════════════════════════════════════════════
   Aaron Feeney Music — Styles
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    --bg: #0a0a0a;
    --surface: #111;
    --surface-hover: #1a1a1a;
    --border: #1e1e1e;
    --text: #e8e8e8;
    --text-muted: #999;
    --text-dim: #666;
    --accent: #c9a55a;
    --accent-glow: rgba(201, 165, 90, 0.25);
    --ig-pink: #E1306C;
    --ig-purple: #833AB4;
    --ig-orange: #F77737;
    --radius: 12px;
    --max-w: 1100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.25s;
}

a:hover {
    opacity: 0.85;
}

/* ─── Nav (transparent, sits on hero) ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
}

nav .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

nav .logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    transition: all 0.3s;
}

nav .nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

nav .nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.35s ease;
    opacity: 1;
}

nav .nav-links a:hover {
    color: var(--text);
    opacity: 1;
}

nav.scrolled .nav-links a {
    color: var(--text-muted);
}

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

/* Collapsible nav links */
nav .nav-links .nav-collapsible {
    transition: opacity 0.35s ease, transform 0.35s ease, max-width 0.35s ease;
    overflow: hidden;
    max-width: 120px;
    opacity: 1;
    transform: translateY(0);
}

nav.scrolled .nav-links .nav-collapsible {
    max-width: 0;
    opacity: 0;
    transform: translateY(-4px);
    padding: 0;
    margin: 0;
}

/* Instagram button with gradient glow */
.ig-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ig-purple), var(--ig-pink), var(--ig-orange));
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
}

.ig-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--ig-purple), var(--ig-pink), var(--ig-orange));
    opacity: 0.35;
    filter: blur(10px);
    transition: opacity 0.3s;
    z-index: -1;
}

.ig-btn:hover::before {
    opacity: 0.7;
}

.ig-btn:hover {
    transform: scale(1.08);
    opacity: 1;
}

.ig-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Yellow CTA contact button in nav */
.nav-contact {
    background: var(--accent) !important;
    color: #0a0a0a !important;
    padding: 7px 18px !important;
    border-radius: 20px;
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-contact:hover {
    background: #c9a55a !important;
    transform: scale(1.05);
    box-shadow: 0 0 16px rgba(201, 165, 90, 0.3);
}

/* ─── Hero (full-bleed cinematic) ─── */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(30%) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.1) 0%,
            rgba(10, 10, 10, 0) 20%,
            rgba(10, 10, 10, 0) 40%,
            rgba(10, 10, 10, 0.4) 60%,
            rgba(10, 10, 10, 0.85) 80%,
            rgba(10, 10, 10, 1) 100%);
}

.hero-name {
    position: absolute;
    bottom: 64px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

.hero-name h1 {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-name .tagline {
    font-size: clamp(11px, 1.5vw, 14px);
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ─── Bio Section (tight spacing below hero) ─── */
.bio-section {
    padding: 16px 24px 64px;
}

.bio-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.bio-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-muted);
}

.bio-text strong {
    color: var(--text);
    font-weight: 500;
}

.bio-cta {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s;
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}

.btn:hover {
    background: var(--surface-hover);
    opacity: 1;
}

.btn-accent {
    background: var(--accent);
    color: #0a0a0a;
    border-color: var(--accent);
}

.btn-accent:hover {
    background: #d4b064;
}

.btn-ig {
    background: linear-gradient(135deg, var(--ig-purple), var(--ig-pink), var(--ig-orange));
    border: none;
    color: #fff;
    position: relative;
}

.btn-ig::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 52px;
    background: linear-gradient(135deg, var(--ig-purple), var(--ig-pink), var(--ig-orange));
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
    transition: opacity 0.3s;
}

.btn-ig:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.btn-ig:hover::before {
    opacity: 0.5;
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* ─── Sections ─── */
section {
    padding: 72px 24px;
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: -0.3px;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* ─── Services (background photo fading right) ─── */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%) brightness(.8);
    opacity: 0.9;
    z-index: 0;
}

.services-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(17, 17, 17, 0.2) 0%,
            rgba(17, 17, 17, 0.7) 35%,
            rgba(17, 17, 17, 1) 100%);
    z-index: 1;
}

.services-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.services-content {
    max-width: 480px;
    width: 100%;
}

.services-content .section-title {
    margin-bottom: 32px;
}

.services-list {
    list-style: none;
    text-align: left;
}

.services-list li {
    padding: 16px 20px;
    margin-bottom: 6px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    transition: all 0.25s;
    background: rgba(249, 222, 165, 0.129);
}



.services-list li.highlight {
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
    background: rgba(250, 201, 95, 0.172);
    border: 1px solid rgba(201, 165, 90, 0.12);
}



.services-list .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dim);
    flex-shrink: 0;
    transition: all 0.2s;
}

.services-list li.highlight .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* ─── Tabbed Portfolio ─── */
.portfolio-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 36px;
    background: var(--surface);
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    background: var(--accent);
    color: #0a0a0a;
}

.tab-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeTab 0.4s ease;
}

@keyframes fadeTab {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Video Grid ─── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 0.25s, transform 0.25s;
}

.video-card:hover {
    border-color: #333;
    transform: translateY(-2px);
}

.video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.video-credit {
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 1.4;
}

.video-artist {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    letter-spacing: 0.5px;
}

/* ─── Video Grid Toggle ─── */
.video-card.hidden {
    display: none;
}

.see-more-container {
    text-align: center;
    margin-top: 30px;
    width: 100%;
    grid-column: 1 / -1;
}

.see-more-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: translateY(-2px);
}

/* ─── Spotify Panel ─── */
.spotify-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.spotify-wrap iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ─── Instagram Grid ─── */
.ig-card.hidden {
    display: none;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.ig-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 0.25s, transform 0.25s;
}

.ig-card:hover {
    border-color: #333;
    transform: translateY(-2px);
}

.ig-card iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: none;
}

.ig-credit {
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 1.4;
}

.ig-artist {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

/* ─── Contact ─── */
.contact-section {
    position: relative;
    overflow: hidden;
    padding: 100px 24px;
}

.contact-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .8;
    filter: grayscale(15%) brightness(0.9);
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.contact-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.contact-inner .contact-sub {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.contact-email-btn:hover {
    background: #d4b064;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
    opacity: 1;
}

.contact-email-btn svg {
    width: 20px;
    height: 20px;
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    color: var(--text-dim);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Contact Instagram button – same gradient glow as nav */
.contact-ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--ig-purple), var(--ig-pink), var(--ig-orange));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.contact-ig-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 53px;
    background: linear-gradient(135deg, var(--ig-purple), var(--ig-pink), var(--ig-orange));
    opacity: 0.35;
    filter: blur(12px);
    transition: opacity 0.3s;
    z-index: -1;
}

.contact-ig-btn:hover {
    transform: translateY(-2px) scale(1.02);
    opacity: 1;
}

.contact-ig-btn:hover::before {
    opacity: 0.6;
}

.contact-ig-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ─── Footer ─── */
footer {
    text-align: center;
    padding: 28px 24px;
    font-size: 12px;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero {
        height: 85vh;
    }

    section {
        padding: 48px 16px;
    }

    .services-bg {
        width: 100%;
        opacity: 0.3;
    }

    .services-fade {
        background: linear-gradient(to bottom,
                rgba(17, 17, 17, 0.3) 0%,
                rgba(17, 17, 17, 0.8) 40%,
                rgba(17, 17, 17, 1) 60%);
    }

    .services-content {
        max-width: 100%;
    }

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

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

    .portfolio-tabs {
        width: 100%;
        justify-content: center;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .contact-section {
        padding: 64px 16px;
    }

    nav .nav-links .nav-collapsible {
        display: none;
    }
}

@media (max-width: 480px) {
    nav .logo {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero {
        height: 75vh;
    }

    .bio-section {
        padding: 24px 16px 48px;
    }
}

/* ─── Scroll animation ─── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   Landing Page — Distinct Visual System
   ═══════════════════════════════════════════════════════════════ */

/* ─── LP body-level scope ─── */
.lp-page {
    --lp-accent: #c9a55a;
    --lp-accent-soft: rgba(201, 165, 90, 0.12);
    --lp-accent-glow: rgba(201, 165, 90, 0.35);
    --lp-surface: #0f0f0f;
    --lp-card: #141414;
    --lp-card-border: rgba(255, 255, 255, 0.06);
}

/* ─── LP Hero: compact text-forward ─── */
.lp-hero {
    max-width: 100%;
    height: 45vh;
    min-height: 320px;
    border-radius: 0 !important;
}

.lp-hero .hero-img {
    filter: grayscale(40%) brightness(0.55);
}

.lp-hero .hero-overlay {
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.3) 40%,
            rgba(10, 10, 10, 0.85) 80%,
            rgba(10, 10, 10, 1) 100%);
}

.lp-hero .hero-name {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.lp-hero .hero-name h1 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 700;
}

.lp-hero .hero-name .tagline {
    letter-spacing: 3px;
}

/* Subtle scroll indicator */
.lp-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: lpBounce 2s ease-in-out infinite;
}

.lp-scroll-hint span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.lp-scroll-hint svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--text-dim);
    stroke-width: 2;
}

@keyframes lpBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ─── LP Divider: accent glow line ─── */
.lp-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--lp-accent-soft) 20%,
            var(--lp-accent) 50%,
            var(--lp-accent-soft) 80%,
            transparent 100%);
    opacity: 0.4;
    margin: 0;
}

/* ─── LP Bio: centered, tight spacing ─── */
.lp-bio {
    padding: 20px 24px 64px;
    background: var(--lp-surface);
}

.lp-bio .bio-inner {
    max-width: 740px;
    text-align: center;
}

.lp-bio .bio-text {
    font-size: 17px;
    line-height: 1.9;
}

.lp-bio .bio-cta {
    justify-content: center;
    margin-top: 36px;
}

/* ─── LP Portfolio Marquee ─── */
.lp-portfolio {
    padding: 48px 0;
    background: var(--bg);
    overflow: hidden;
    position: relative;
}

.lp-portfolio .section-label,
.lp-portfolio .section-title {
    text-align: center;
    padding: 0 24px;
}

.lp-portfolio .section-label {
    color: var(--lp-accent, var(--accent));
}

.lp-portfolio-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: lpMarquee 60s linear infinite;
    padding: 24px 0;
}

.lp-portfolio-track:hover {
    animation-play-state: paused;
}

.lp-portfolio-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--lp-card-border, rgba(255, 255, 255, 0.06));
    background: var(--lp-card, #141414);
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.lp-portfolio-card:hover {
    border-color: rgba(201, 165, 90, 0.2);
    transform: translateY(-3px);
    opacity: 1;
}

.lp-portfolio-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    filter: grayscale(10%);
    transition: filter 0.3s;
}

.lp-portfolio-card:hover img {
    filter: grayscale(0%);
}

.lp-portfolio-card .lp-portfolio-credit {
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 1.4;
}

.lp-portfolio-artist {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

/* Edge fade masks */
.lp-portfolio::before,
.lp-portfolio::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.lp-portfolio::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.lp-portfolio::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.lp-portfolio-cta {
    text-align: center;
    padding: 16px 24px 0;
}

@keyframes lpMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── LP Services: card grid (no background image) ─── */
.lp-services {
    position: relative;
    overflow: visible;
    padding: 80px 24px;
    background: var(--bg);
}

.lp-services .services-bg,
.lp-services .services-fade {
    display: none;
}

.lp-services .services-inner {
    position: relative;
    z-index: 1;
    display: block;
}

.lp-services .services-content {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}


.lp-services .lp-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.lp-services .lp-services-list li {
    display: flex;
    flex-direction: column;
    padding: 22px 24px;
    border-radius: 14px;
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.lp-services .lp-services-list li:hover {
    border-color: rgba(201, 165, 90, 0.2);
    background: rgba(201, 165, 90, 0.05);
    color: var(--text);
    transform: translateY(-2px);
}

.lp-services .lp-services-list li.highlight {
    background: var(--lp-card);
    border: 1px solid rgba(201, 165, 90, 0.15);
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

.lp-services .lp-services-list li.highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--lp-accent);
    border-radius: 0 2px 2px 0;
}

.lp-services .lp-services-list li.highlight:hover {
    border-color: rgba(201, 165, 90, 0.3);
    background: rgba(201, 165, 90, 0.08);
    transform: translateY(-2px);
}

/* Service description lines */
.service-desc {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dim);
    margin-top: 6px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

/* ─── LP About section: warm tint background ─── */
.lp-about {
    background: var(--lp-surface);
    padding: 80px 24px;
}

.lp-about .section-label {
    color: var(--lp-accent);
}

/* ─── LP Accordions: card-style with accent border ─── */
.lp-accordions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-accordion {
    border-top: none;
    background: var(--lp-card);
    border: 1px solid var(--lp-card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp-accordion:last-child {
    border-bottom: 1px solid var(--lp-card-border);
}

.lp-accordion:hover {
    border-color: rgba(201, 165, 90, 0.15);
}

.lp-accordion[open] {
    border-color: rgba(201, 165, 90, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(201, 165, 90, 0.08);
}

.lp-accordion summary {
    padding: 22px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.25s, background 0.25s;
    border-radius: 14px;
}

.lp-accordion summary::-webkit-details-marker {
    display: none;
}

.lp-accordion summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--text-dim);
    transition: transform 0.3s ease, color 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.lp-accordion[open] summary::after {
    content: '−';
    color: var(--lp-accent);
    background: var(--lp-accent-soft);
}

.lp-accordion summary:hover {
    color: var(--lp-accent);
}

.lp-accordion summary:hover::after {
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
}

.lp-accordion-body {
    padding: 0 24px 24px;
    animation: accordionOpen 0.35s ease;
}

.lp-accordion-body p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.lp-accordion-body p:last-child {
    margin-bottom: 0;
}

.lp-accordion-body strong {
    color: var(--text);
    font-weight: 500;
}

.lp-accordion-body ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 2;
}

.lp-accordion-body ul li {
    padding-left: 18px;
    position: relative;
}

.lp-accordion-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lp-accent);
}

.lp-accordion-body ul strong {
    color: var(--text);
}

@keyframes accordionOpen {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── LP Contact: cinematic full-bleed ─── */
.lp-contact {
    padding: 140px 24px;
}

.lp-contact .contact-bg {
    filter: grayscale(40%) brightness(0.7);
}

.lp-contact .contact-overlay {
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 1) 0%,
            rgba(10, 10, 10, 0.4) 30%,
            rgba(10, 10, 10, 0.4) 70%,
            rgba(10, 10, 10, 1) 100%);
}

.lp-contact .contact-inner h2 {
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: -1px;
}

/* ─── LP Footer ─── */
.lp-footer {
    background: var(--lp-surface);
}

/* ─── LP Responsive ─── */
@media (max-width: 768px) {
    .lp-hero {
        height: 40vh;
        min-height: 280px;
    }

    .lp-hero .hero-name h1 {
        font-size: clamp(28px, 7vw, 40px);
    }

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

    .lp-about {
        padding: 48px 16px;
    }

    .lp-bio {
        padding: 32px 16px 48px;
    }

    .lp-services {
        padding: 48px 16px;
    }

    .lp-contact {
        padding: 80px 16px;
    }

    .lp-portfolio-card {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .lp-hero {
        height: 35vh;
        min-height: 260px;
    }
}