/* =========================================
   Variables & Theme "Quiet Luxury"
   ========================================= */
:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-light: #ffffff;
    
    --accent-gold: #d4af37;
    --accent-gold-hover: #e8c65a;
    
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --text-inverse: #121212;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.dark-bg {
    background-color: #0a0a0a;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0.75rem auto 0;
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary, .btn-secondary, .btn-outline, .btn-primary-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary-small {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary-small:hover {
    background-color: var(--accent-gold-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: 1px solid var(--accent-gold);
    justify-content: center;
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: 1px solid var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-fast);
    background: linear-gradient(to bottom, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.7) 50%, rgba(18,18,18,0) 100%);
    min-height: 180px;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(12px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.nav-logo {
    height: 140px; /* Balanced size for the new header */
    width: auto;
    display: block;
}

.footer-logo {
    height: 85px;
    width: auto;
    margin: 0 auto 2rem; /* Centered with margin auto */
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

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

/* =========================================
   Hero Section — Video Background
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh; /* Safari dynamic viewport fix */
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    padding-top: 240px; 
    text-align: center;
    overflow: hidden;
}

/* Video hero */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Fallback image if video fails */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -3;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18,18,18,0.25) 0%, rgba(18,18,18,0.85) 100%);
    z-index: -1;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
    opacity: 0;
}

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

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 600;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-gold);
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 15rem; /* Pushed much further down to clear faces */
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* =========================================
   Philosophy Section
   ========================================= */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-image {
    position: relative;
}

.philosophy-image img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    width: 100%;
}

.philosophy-quote {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bg-card);
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem 1.75rem;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.philosophy-quote i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.philosophy-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

.philosophy-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.philosophy-content strong {
    color: var(--text-main);
    font-weight: 500;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* =========================================
   Celebrities / Marquee Section
   ========================================= */
.celebrities {
    overflow: hidden;
}

.celebrities-marquee {
    overflow: hidden;
    margin: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1.5rem 0;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.marquee-track .dot {
    color: var(--accent-gold);
    font-size: 0.6rem;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.celebrities-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Celebrity Gallery Grid */
.celeb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

.celeb-card {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.celeb-card:hover {
    transform: scale(1.02);
}

.celeb-card--tall {
    grid-row: span 2;
}

.celeb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.celeb-card:hover .celeb-overlay {
    transform: translateY(0);
}

.celeb-overlay p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
}

/* =========================================
   Services Section
   ========================================= */
.section-heading {
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

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

.service-card {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pull Quote */
.service-pullquote {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-pullquote blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--text-main);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

.service-pullquote cite {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

/* =========================================
   Press / Media Section
   ========================================= */
.press-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.press-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    transition: var(--transition-fast);
    min-width: 200px;
    text-align: center;
}

.press-logo-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.04);
    transform: translateY(-4px);
}

.press-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.press-logo-quote {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 180px;
    line-height: 1.5;
}

/* Video positions */
.pos-top { object-position: center 20%; }
.pos-bottom { object-position: center 35%; }

.press-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.press-highlight-card {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
    text-align: left; /* Reset text align */
    padding: 0; /* Override old padding */
}

.press-highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.press-card-img {
    height: 200px;
    background-size: cover;
    background-position: center 15%; /* Shows from chest up */
}

.press-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.press-source {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
}

.press-card-content h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

.press-card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.press-highlight-card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.press-highlight-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.press-highlight-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =========================================
   Locations Section
   ========================================= */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    border-top: 3px solid var(--accent-gold);
    transition: var(--transition-fast);
}

.location-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

.location-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.location-card .hours {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* =========================================
   Social Proof / Community
   ========================================= */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.ig-item {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.ig-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: var(--transition-fast);
}

.ig-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: var(--transition-fast);
}

.ig-item:hover::before,
.ig-item:hover i {
    opacity: 1;
}

/* =========================================
   Floating CTA
   ========================================= */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-cta i {
    font-size: 1.2rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-social a {
    color: var(--text-main);
    font-size: 1.5rem;
}

.footer-social a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   Animations
   ========================================= */
@keyframes slowZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Scroll Animations */
.fade-in, .slide-up, .animate-up {
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
}

.animate-up {
    transform: translateY(30px);
}

.slide-up {
    transform: translateY(50px);
}

.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .philosophy-grid {
        gap: 3rem;
    }

    .philosophy-quote {
        right: 0;
        max-width: 240px;
    }

    .celeb-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .celeb-card--tall {
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-quote {
        position: static;
        margin-top: 1.5rem;
        max-width: 100%;
    }

    .stats-row {
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .celeb-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .press-logos {
        flex-direction: column;
        align-items: center;
    }

    .floating-cta {
        bottom: 16px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        max-width: 320px;
        justify-content: center;
    }

    .floating-cta:hover {
        transform: translateX(-50%) scale(1.02);
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 80px; /* Smaller logo for small phones */
    }
    
    .navbar {
        min-height: 100px;
        padding: 0.5rem 5%;
    }
    
    .hero {
        padding-top: 130px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        margin-bottom: 5rem;
    }

    .section-padding {
        padding: 3rem 0;
    }
}

/* =========================================
   Final Mobile Polish
   ========================================= */
@media (max-width: 768px) {
    .nav-logo {
        height: 120px;
    }
    
    .navbar {
        min-height: 140px;
    }
    
    .hero {
        padding-top: 180px;
    }
    
    .footer-logo {
        height: 110px;
        margin: 0 auto 1.5rem;
        display: block;
    }
    
    .footer-brand {
        text-align: center;
    }
}
