:root {
    --bg: #FFFFFF;
    --bg-card: #FFFFFF;
    --text: #4E546C;
    --text-light: #8B8B8B;
    --text-faint: #B8B8B8;
    --accent: #5C3D2E;
    --accent-light: #7A5A4A;
    --border: rgba(0,0,0,0.06);
    --shadow: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.08);
    --font-hand: 'Caveat', cursive;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 20px;
    --primary: #4E546C;
    --secondary: #5C3D2E;
    --accent-color: #5C3D2E;
    --dark: #4E546C;
    --darker: #3A3F52;
    --light: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

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

::selection { background: #4E546C; color: #FFFFFF; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #FFFFFF; }
::-webkit-scrollbar-thumb { background: var(--text-faint); border-radius: 3px; }

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: difference;
    display: none;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(78, 84, 108, 0.1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
    display: none;
}

@media (min-width: 769px) {
    .cursor, .cursor-follower { display: block; }
}

.particle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
}

.loader {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-text {
    font-family: var(--font-hand);
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.loader-bar {
    width: 80px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #4E546C;
    border-radius: 2px;
    animation: loadBar 1s ease forwards;
    transform-origin: left;
}

@keyframes loadBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, #FFFFFF 60%, transparent);
    opacity: 0;
    transform: translateY(-10px);
    animation: navIn 0.6s ease 1.4s forwards;
}

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

.nav-brand {
    font-family: var(--font-hand);
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.nav-brand span { color: #000000; }

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:first-child { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-9px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 40px;
}

.nav-overlay.open { display: flex; }

.nav-overlay a {
    font-family: var(--font-hand);
    font-size: 42px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-overlay a:hover { color: var(--accent); }

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.hero-badge {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--bg-card);
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-welcome {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-welcome img {
    max-width: 280px;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

@media (min-width: 1025px) {
    .hero-welcome img {
        max-width: 380px;
    }
}

.hero-name {
    font-family: var(--font-hand);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease 1.0s forwards;
}

.hero-name .accent { color: #4E546C; }

.hero-tagline {
    font-family: var(--font-hand);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-card);
    background: var(--text);
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 1.4s forwards;
    border: none;
    cursor: pointer;
}

.hero-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, #B8B8B8, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

.section-header {
    margin-bottom: 80px;
    padding-top: 120px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-hand);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 120px;
}

.about-image {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-image-border {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    border: 2px solid #4E546C;
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-text p.lead {
    font-family: var(--font-hand);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 32px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 120px;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.video-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #E8E4DE, #D5D0C8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img { transform: scale(1.05); }

.video-thumb::after {
    content: '▶';
    position: absolute;
    font-size: 32px;
    color: var(--bg-card);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.video-card:hover .video-thumb::after { opacity: 1; }

.video-thumb.placeholder { background: linear-gradient(135deg, #E8E4DE, #D5D0C8); }
.video-thumb.placeholder span {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-faint);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.video-info {
    padding: 24px;
    background: #4E546C;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.video-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
}

.videos-more {
    text-align: center;
    margin-bottom: 120px;
}

.videos-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid #4E546C;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.videos-more a:hover {
    background: var(--accent);
    color: var(--bg-card);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

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

.contact-left .lead {
    font-family: var(--font-hand);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.contact-left p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-btn-fluent {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Segoe UI', var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background: #1A1A1A;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-btn-fluent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    pointer-events: none;
    border-radius: 8px;
}

.contact-btn-fluent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
    transform-origin: left;
    border-radius: 0 0 8px 8px;
}

.contact-btn-fluent:hover::after { transform: scaleX(1); }

.contact-btn-fluent:hover {
    background: #2A2A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-btn-fluent:active { transform: translateY(0px) scale(0.98); }

.contact-btn-fluent svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
}

.contact-btn-fluent:hover svg { transform: scale(1.05); }

.contact-btn-fluent .btn-text { position: relative; z-index: 1; }

.contact-btn-fluent .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(225, 48, 108, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
}

.contact-btn-fluent:hover .btn-glow { opacity: 1; }

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-section .lead {
    font-family: var(--font-hand);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0;
}

.youtube-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 48px;
    background: #FF0000;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.25);
    width: 100%;
    max-width: 400px;
}

.youtube-big:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.35);
}

.youtube-big .yt-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.youtube-big .yt-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.youtube-big .yt-text {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.youtube-big .yt-sub {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
}

.social-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin-top: 4px;
}

.social-small-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.social-small-link:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.social-small-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.social-small-icon svg { width: 16px; height: 16px; }
.social-small-icon.tiktok { background: #000000; color: white; }
.social-small-icon.twitter { background: #000000; color: white; }
.social-small-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-small-icon.facebook { background: #1877F2; color: white; }

.social-small-info {
    display: flex;
    flex-direction: column;
}

.social-small-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.social-small-handle {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
}

.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 40px 0;
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding-bottom: 48px;
}

.footer-col-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand-link { text-decoration: none; }

.footer-brand-name {
    font-family: var(--font-hand);
    font-size: 36px;
    font-weight: 700;
    color: #4E546C;
    line-height: 1;
}

.footer-brand-name:hover { color: var(--accent-light); }

.footer-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 320px;
}

.footer-follow { margin-top: 8px; }

.footer-follow-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    display: block;
    margin-bottom: 16px;
}

.footer-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text-light);
    background: var(--bg);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    border-color: #4E546C;
    color: #4E546C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.footer-social-icon svg { width: 16px; height: 16px; }

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-links-list li a:hover { color: var(--accent); }

.footer-link-hash {
    color: #4E546C;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-heart {
    color: var(--accent);
    font-size: 14px;
}

.footer-dev {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: #4E546C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dev:hover {
    color: #6B7280;
    text-decoration: underline;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

body {
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

@media screen and (max-width: 480px) {
    html { font-size: 14px; }
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none !important; }

    section { padding: 0 20px; }
    nav { padding: 15px 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero { padding: 100px 20px 60px; }
    .hero-welcome img { max-width: 220px; }
    .hero-name { font-size: 2.5rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-cta { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.9rem; }

    .about { padding: 80px 20px; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 400px; margin: 0 auto; }
    .about-image-frame { height: 350px; }
    .section-title { font-size: 2rem; }
    .section-header { padding-top: 80px; margin-bottom: 48px; }

    .videos-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 80px; }
    .video-card { height: auto; }
    .video-thumb { height: 200px; }
    .video-info { padding: 15px; }

    .contact-content { grid-template-columns: 1fr; gap: 48px; }
    .contact-btn-fluent { width: 100%; justify-content: center; padding: 14px 24px; }

    .youtube-big { padding: 18px 24px; }
    .youtube-big .yt-text { font-size: 18px; }
    .social-small-grid { grid-template-columns: 1fr 1fr; }

    .site-footer { padding: 40px 20px 0; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer-social-grid { gap: 8px; }
    .footer-social-icon { width: 36px; height: 36px; }

    .hero-scroll { bottom: 10px; }
    .hero-scroll span { font-size: 10px; }
    .hero-scroll-line { height: 30px; }
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .about-content { grid-template-columns: 1fr; gap: 48px; }
    .about-image { max-width: 400px; margin: 0 auto; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-content { grid-template-columns: 1fr; gap: 48px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media screen and (max-width: 768px) {
    .hero-scroll { bottom: 10px; }
}
