/* ═══════════════════════════════════════════════════
   Artist Landing Page — Main Stylesheet
   Aesthetic: Luxury editorial / literary dark
   ═══════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (overridden by Customizer)
───────────────────────────────────────────── */
:root {
    --color-primary:    #1a0a00;
    --color-secondary:  #8B4513;
    --color-gold:       #c9a84c;
    --color-light:      #f5f0e8;
    --color-text:       #2c1a0e;
    --color-text-light: #ffffff;
    --color-btn-bg:     #c9a84c;
    --color-btn-text:   #1a0a00;
    --color-overlay:    rgba(26,10,0,0.55);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Raleway', sans-serif;

    --container-width: 1200px;
    --section-padding: 100px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 4px;
    --shadow: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-strong: 0 30px 80px rgba(0,0,0,0.3);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
textarea, input, select { font-family: inherit; }

/* ─────────────────────────────────────────────
   CONTAINERS & LAYOUT
───────────────────────────────────────────── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* ─────────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.title-rule {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 24px auto 0;
}

/* ─────────────────────────────────────────────
   SECTION BACKGROUND VIDEO
───────────────────────────────────────────── */
.section-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
    background: var(--color-btn-bg);
    color: var(--color-btn-text);
    border-color: var(--color-btn-bg);
}
.btn-primary:hover {
    background: transparent;
    color: var(--color-btn-bg);
    border-color: var(--color-btn-bg);
}

.btn-audible {
    background: var(--color-primary);
    color: var(--color-gold);
    border-color: var(--color-gold);
    padding: 12px 24px;
    font-size: 0.75rem;
}
.btn-audible:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.audible-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Submit button states */
.btn-submit {
    width: auto;
    min-width: 200px;
}
.btn-submit.loading .btn-label { opacity: 0; }
.btn-submit.loading .btn-loader { opacity: 1; }
.btn-loader {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 40px;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-nav.scrolled {
    background: rgba(26,10,0,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 40px;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

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

.nav-logo, .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
}
.nav-logo img { max-height: 50px; width: auto; }

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 8px 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold) !important;
    border-radius: var(--radius);
    transition: background 0.3s ease !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--color-gold) !important; color: var(--color-primary) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-light);
    transition: var(--transition);
    transform-origin: center;
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--color-text-light);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards 0.5s;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards 0.7s;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards 0.9s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.4s;
}
.hero-scroll-indicator span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--color-gold));
    animation: scrollLine 2s ease infinite;
}
.hero-scroll-indicator p {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
.about-section {
    background-color: var(--color-light);
    position: relative;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245,240,232,0.88);
    z-index: 1;
}

.about-section .container { position: relative; z-index: 2; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.about-image-frame {
    position: relative;
    max-width: 420px;
}

.about-image-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-strong);
}

.image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--color-gold);
    z-index: 0;
    opacity: 0.5;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}
.placeholder-inner svg { width: 80px; stroke: var(--color-gold); }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: var(--color-primary);
    color: var(--color-text-light);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0.7;
}

.about-text-col { padding-top: 8px; }

.about-bio {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text);
}

.about-bio p { margin-bottom: 1.25em; }
.about-bio p:last-child { margin-bottom: 0; }

.about-section .section-title { color: var(--color-primary); }
.about-section .section-eyebrow { color: var(--color-secondary); }

.about-quote {
    border-left: 3px solid var(--color-gold);
    padding: 20px 28px;
    margin-top: 32px;
    background: rgba(201,168,76,0.06);
}

.about-quote p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-primary);
}

/* ─────────────────────────────────────────────
   PRODUCTS SECTION
───────────────────────────────────────────── */
.products-section {
    background: var(--color-primary);
    overflow: hidden;
}

.products-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139,69,19,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 50%);
    z-index: 0;
}

.products-section .container { position: relative; z-index: 1; }
.products-section .section-title { color: var(--color-text-light); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-card:hover { border-color: var(--color-gold); transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.product-card:hover::before { opacity: 1; }

.product-card-inner { padding: 28px; display: flex; flex-direction: column; gap: 24px; }

.product-cover-wrap {
    position: relative;
    align-self: center;
}

.product-cover {
    width: 180px;
    height: 260px;
    object-fit: cover;
    display: block;
    box-shadow: 12px 12px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}
.product-card:hover .product-cover { transform: rotate(-2deg) scale(1.03); }

.product-cover-placeholder {
    width: 180px;
    height: 260px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-cover-placeholder svg { width: 60px; stroke: rgba(255,255,255,0.15); }

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--color-gold);
    color: var(--color-primary);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 12px;
    z-index: 2;
}

.product-audio-badge {
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 36px;
    height: 36px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    z-index: 2;
}
.product-audio-badge svg { width: 16px; height: 16px; }

.product-info { flex: 1; display: flex; flex-direction: column; gap: 12px; }

.product-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.25;
}

.product-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    flex: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(201,168,76,0.15);
    flex-wrap: wrap;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

/* ─────────────────────────────────────────────
   VIDEOS SECTION
───────────────────────────────────────────── */
.videos-section {
    background: #0f0600;
    position: relative;
}

.videos-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(139,69,19,0.1) 0%, transparent 70%);
}

.videos-section .section-title { color: var(--color-text-light); }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(201,168,76,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

/* ─────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────── */
.contact-section {
    background: var(--color-secondary);
    position: relative;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,10,0,0.75);
    z-index: 0;
}

.contact-section .container { position: relative; z-index: 1; }
.contact-section .section-title { color: var(--color-text-light); }

.contact-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row { display: flex; gap: 24px; }
.form-row-2 > * { flex: 1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.required { color: var(--color-gold); margin-left: 2px; }

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--color-text-light);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
    resize: vertical;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.09);
}

.form-group input.error,
.form-group textarea.error { border-color: #e05a5a; }

.form-actions { display: flex; justify-content: flex-end; }

.form-messages {
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 0;
    transition: all 0.3s ease;
}

.form-messages.success {
    color: #a8e6a3;
    padding: 16px;
    background: rgba(168,230,163,0.1);
    border-left: 3px solid #a8e6a3;
}

.form-messages.error {
    color: #f5a3a3;
    padding: 16px;
    background: rgba(245,163,163,0.1);
    border-left: 3px solid #e05a5a;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
    background: #0a0400;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
}

.footer-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--color-gold); }

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--color-gold); color: var(--color-gold); transform: translateY(-3px); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy, .footer-credit {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
}

.footer-credit a {
    color: var(--color-gold);
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.footer-credit a:hover { opacity: 0.8; }

.heart {
    color: #e05a5a;
    margin: 0 2px;
    display: inline-block;
    animation: lf-heartbeat 1.5s ease infinite;
}

@keyframes lf-heartbeat {
    0%        { transform: scale(1); }
    10%       { transform: scale(1.1); }
    20%       { transform: scale(0.95); }
    30%       { transform: scale(1.15); }
    40%       { transform: scale(0.95); }
    50%       { transform: scale(1.1); }
    60%, 100% { transform: scale(1); }
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }

[data-animate].visible {
    opacity: 1;
    transform: none;
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-frame { max-width: 380px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-social { justify-content: flex-start; grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px; }
    .container { padding: 0 24px; }
    .footer-inner { padding: 0 24px; }

    /* Nav */
    .site-nav { padding: 20px 24px; }
    .site-nav.scrolled { padding: 14px 24px; }
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: rgba(26,10,0,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 100;
        border-left: 1px solid rgba(201,168,76,0.2);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1rem; padding: 12px 24px; letter-spacing: 0.2em; }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* About stats */
    .about-stats { grid-template-columns: repeat(3, 1fr); }

    /* Form */
    .form-row { flex-direction: column; gap: 16px; }
    .form-actions { justify-content: stretch; }
    .btn-submit { width: 100%; justify-content: center; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-social { justify-content: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Products */
    .products-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

    /* Videos */
    .videos-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .hero-title { letter-spacing: -0.01em; }
    .about-stats { grid-template-columns: 1fr; max-width: 220px; }
    .product-card-inner { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero-tagline, .hero-title, .hero-subtitle, .hero-content .btn, .hero-scroll-indicator {
        opacity: 1;
        transform: none;
    }
}
