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

/* Accessibility - Hide visually but keep for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary-color: #000000;
    --background-color: #ffffff;
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
}

::selection {
    background: rgba(255, 193, 88, .4) !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.header-nav.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: block;
}


.nav-logo a:hover {
    opacity: 0.7;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-list li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-list li a:hover {
    opacity: 0.8;
}

/* Nav CTA Button */
.nav-cta-btn {
    background-color: #f5c36a;
    color: #000000 !important;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-cta-btn:hover {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
}

.nav-cta-btn::after {
    display: none !important;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-top: 1px;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 12px);
}

.dropdown-content {
    padding: 1.5rem;
}

.coming-soon-container {
    text-align: center;
    padding: 1rem 0;
}

.coming-soon-icon {
    margin-bottom: 1rem;
    opacity: 0.7;
}

.coming-soon-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coming-soon-message {
    font-size: 0.95rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    max-width: 220px;
    margin: 0 auto;
}

/* Legacy dropdown message for backwards compatibility */
.dropdown-message {
    text-align: center;
    color: #777;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Future dropdown items styling */
.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f8f8;
    padding-left: 1.75rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.floating-element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 80%;
}

.floating-element-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 10%;
}

.floating-element-3 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 15%;
}

.floating-element-4 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 75%;
}

.floating-element-5 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 50%;
}

.floating-element-6 {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 70%;
}

.floating-element-7 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 60%;
}

.floating-element-8 {
    width: 30px;
    height: 30px;
    top: 15%;
    left: 40%;
}

.floating-element-9 {
    width: 70px;
    height: 70px;
    top: 55%;
    left: 25%;
}

.floating-element-10 {
    width: 25px;
    height: 25px;
    top: 85%;
    left: 85%;
}

.floating-element-11 {
    width: 90px;
    height: 90px;
    top: 25%;
    left: 85%;
}

.floating-element-12 {
    width: 50px;
    height: 50px;
    top: 75%;
    left: 40%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: -32px;
}

.hero-title svg {
    height: clamp(3rem, 10vw, 7rem);
    width: auto;
    display: inline-block;
    vertical-align: baseline;
}

.hero-title .word:first-child svg {
    height: clamp(2.4rem, 8vw, 5.6rem);
}

.hero-title .word:last-child svg {
    height: clamp(3.4rem, 11vw, 7.5rem);
    transform: translateY(1.2rem) translateX(0.8rem);
}

.hero-title .line {
    display: block;
    overflow: visible;
    line-height: 1.2;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: -24px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.3;
}

.hero-tagline .char {
    display: inline-block;
    opacity: 0;
}

/* YouTube Section */
.youtube {
    padding: var(--spacing-2xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 200px;
}

.youtube-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
}

/* Featured Video Section */
.youtube-featured {
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.youtube-featured-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.youtube-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.youtube-featured-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.youtube-featured-video {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}

.video-thumbnail-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover .video-thumbnail {
    transform: scale(1.05);
}

.youtube-featured-content {
    padding: var(--spacing-md);
}

.youtube-featured-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.new-video-tag {
    position: absolute;
    top: -0.8rem;
    right: 2rem;
    background: #f5c36b;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    color: #000000;
}

.youtube-featured-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 800px;
}

@media (min-width: 1024px) {
    .youtube-featured-item {
        grid-template-columns: 2.2fr 1fr;
    }
    
    .youtube-featured-content {
        padding-left: 0;
    }
}

.youtube-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.youtube-item {
    opacity: 0;
    transform: translateY(40px);
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.youtube-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.youtube-thumbnail {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    background-color: #000;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.youtube-item:hover .youtube-thumbnail img {
    transform: scale(1.05);
    opacity: 1 !important;
}

.youtube-item a {
    display: block;
}

.youtube-item a:hover {
    opacity: 1 !important;
}

.youtube-content {
    padding: var(--spacing-md);
}

.youtube-video-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
    color: var(--primary-color);
}

.youtube-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.7;
    color: var(--primary-color);
}

.youtube-more {
    margin-top: var(--spacing-xl);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.youtube-more-link {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #777777;
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid #e2e2e2;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.youtube-more-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about {
    padding: var(--spacing-2xl) 0;
    background-color: #f8f8f8;
}

.about .container {
    padding: 0 var(--spacing-md);
}

.about-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
}

.gold-letter {
    color: #f5c36a;
}

.gold-dark-letter {
    color: #fcb12c;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-image {
    text-align: center;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
}

.profile-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 24px solid #f5c36a;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(30px);
}

h3.about-text {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    color: var(--primary-color);
}

h3.about-text:first-child {
    margin-top: 0;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Email Copy Modal */
.email-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.email-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.email-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 2rem;
    max-width: 380px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.email-modal-overlay.active .email-modal {
    transform: scale(1) translateY(0);
}

.email-modal-content {
    text-align: center;
}

.modal-check-icon {
    margin-bottom: 1rem;
    animation: checkBounce 0.6s ease;
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.modal-email {
    font-size: 1.125rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
}

.modal-hint {
    font-size: 0.875rem;
    color: #999;
    margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-2xl: 5rem;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        padding: 2rem;
    }
    
    .nav-list li {
        margin-bottom: 2rem;
    }
    
    .nav-list li:last-child {
        margin-bottom: 0;
    }
    
    .nav-list li a {
        font-size: 1.25rem;
        font-weight: 600;
    }
    
    .nav-list li a::after {
        display: none;
    }
    
    .nav-cta-btn {
        margin-left: 0 !important;
        margin-top: 0 !important;
        padding: 1rem 2rem !important;
        font-size: 1.125rem !important;
        display: inline-flex !important;
        background: #f5c36a;
        color: #000000 !important;
        outline: none;
        border: none;
    }
    
    /* Mobile Dropdown Adjustments */
    .nav-dropdown {
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .nav-dropdown.active {
        margin-bottom: 1rem;
    }
    
    .nav-dropdown-toggle {
        justify-content: center !important;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        margin-top: 0.5rem;
        margin-bottom: 0;
        min-width: auto;
        width: 100%;
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        top: auto;
    }
    
    .hero-title {
        margin-bottom: 0.5rem;
        font-size: clamp(2.5rem, 9vw, 5rem);
    }
    
    .hero-tagline {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
        max-width: 100%;
        text-align: left;
        margin-top: -0.8rem;
    }
    
    .hero-subtitle {
        margin-bottom: var(--spacing-md);
    }
    
    .about-title {
        margin-bottom: var(--spacing-md);
    }
    
    .hero-title .word:first-child svg {
        transform: translateY(0.6rem);
    }
    
    .youtube-featured-video {
        border-radius: 0px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
}

/* Loading State */
body.loading {
    overflow: hidden;
}

/* Subtle Animations */
@media (hover: hover) {
    a:not(.youtube-item a) {
        transition: opacity 0.3s ease;
    }
    
    a:not(.youtube-item a):hover {
        opacity: 0.7;
    }
}

/* Design Philosophy Section */
.philosophy {
    padding: var(--spacing-2xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.philosophy-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.philosophy-item {
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-statement {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
}


.contact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
}

.contact-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.contact-link {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .youtube-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}