:root {
    /* Luxury Noir & Gold Palette */
    --bg: #050505;
    /* Deep Midnight */
    --bg-secondary: #0a0a0a;
    --text-main: #f4f1ea;
    /* Ivory */
    --text-muted: #a19d94;
    /* Muted Champagne */
    --accent: #d4af37;
    /* Classic Gold */
    --border: rgba(212, 175, 55, 0.15);
    /* Soft Gold Border */
    --selection: #2a261a;

    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-pad: 180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--selection);
}

.container {
    max-width: var(--container-max);
    width: 90%;
    margin: 0 auto;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

header.scrolled {
    padding: 1.2rem 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    filter: invert(1) brightness(0.2);
    /* Make it dark for white hero */
    transition: filter 0.3s ease;
}

header.scrolled .logo-img {
    filter: brightness(0) invert(1);
    /* Make it white for dark scrolled header */
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
}

header.scrolled .logo {
    color: var(--text-main);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

header.scrolled .menu-toggle span {
    background-color: var(--text-main);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

.nav-links a:hover {
    opacity: 1;
}

.btn-nav {
    border: 1px solid var(--accent);
    padding: 0.6rem 1.4rem;
    color: var(--accent) !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    background-color: var(--accent);
    color: white !important;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background-color: #ffffff;
}

.hero .hero-title,
.hero .hero-description {
    color: #1a1a1a;
}

.hero .hero-tag {
    color: #888888;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 3.5rem;
}

.btn-hero {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 1.2rem 2.8rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--accent);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-5px);
}

/* About Section */
.section {
    padding: var(--section-pad) 0;
}

.section-light {
    background-color: #0c0c0c;
    /* Soft change from pure black */
    color: var(--text-main);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6rem;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--text-muted);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
}

.about-content.text-only {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 3rem;
    font-weight: 400;
}

.section-light .about-text h2 {
    color: var(--accent);
}

.about-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.section-light .about-text p {
    color: var(--text-muted);
}

.about-visual {
    padding-top: 4rem;
}

.elegant-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    background: transparent;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.elegant-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.05);
    transition: transform 0.8s ease;
}

.elegant-img-wrap:hover img {
    transform: scale(1.05);
}

/* Testimonials & Video Grid */
.testimonials-section {
    padding-top: 150px;
}

.featured-testimonial {
    margin-bottom: 8rem;
}

.featured-wrapper {
    margin-bottom: 3rem;
    border: 1px solid var(--border);
    transition: border-color 0.4s ease;
}

.featured-wrapper:hover {
    border-color: var(--accent);
}

.featured-info {
    max-width: 800px;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.featured-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.secondary-grid-header {
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    margin-bottom: 4rem;
}

.grid-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.secondary-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.video-card {
    background: #0a0a0a;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.video-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #111;
}

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

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.video-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 950px) {
    .secondary-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .secondary-video-grid {
        grid-template-columns: 1fr;
    }

    .featured-testimonial {
        margin-bottom: 5rem;
    }
}

/* Social Section */
.social-list {
    display: flex;
    flex-direction: column;
}

.social-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    position: relative;
}

.social-item::after {
    content: '→';
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    color: var(--accent);
}

.social-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.social-item:hover {
    padding: 2.5rem 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--accent);
}

.social-item:hover .social-name {
    color: var(--accent);
}

.social-name {
    font-family: var(--font-heading);
    font-size: 2rem;
}

.social-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding-bottom: 6rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
    :root {
        --section-pad: 120px;
    }

    .hero-grid {
        gap: 4rem;
    }

    .about-content {
        gap: 6rem;
    }
}

@media (max-width: 950px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links-wrapper.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-main) !important;
        opacity: 1;
    }

    header .logo {
        color: #1a1a1a;
    }

    header.scrolled .logo {
        color: var(--text-main);
    }

    header.scrolled .logo-img {
        filter: brightness(0) invert(1);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 2;
        margin: 0 auto;
    }

    .hero-visual {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto 3rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .section-head {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .about-visual {
        padding-top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    :root {
        --section-pad: 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .btn-hero {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .social-name {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-middle {
        display: none;
    }
}