/* ============================================
   Moe's Barber - Premium Lifestyle Brand
   Dark & Premium Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-card: #222222;
    --bg-card-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #777777;
    --gold: #C9A96E;
    --gold-light: #e0c992;
    --gold-dark: #a8893d;
    --navy: #1B3A6B;
    --red: #C41E3A;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --nav-height: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.loaded {
    opacity: 1;
}

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

a:hover {
    color: var(--gold-light);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    letter-spacing: 0.02em;
}

.section-line {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin: 16px auto 48px;
    transition: width 0.8s ease 0.2s;
}

.section-line.visible {
    width: 60px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: -24px;
    margin-bottom: 48px;
}

.section {
    padding: 100px 0;
}

/* --- SVG Star Icon --- */
.star-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    display: inline-block;
    vertical-align: middle;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-logo img {
    height: 34px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

.lang-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lang-active {
    color: var(--gold);
}

.lang-inactive {
    color: var(--text-muted);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO - Cinematic Slideshow
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 7s ease-in-out forwards;
}

@keyframes kenBurns {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.12); }
}

/* Alternate Ken Burns directions */
.hero-slide:nth-child(2) img { animation-name: kenBurns2; }
.hero-slide:nth-child(3) img { animation-name: kenBurns3; }
.hero-slide:nth-child(4) img { animation-name: kenBurns4; }
.hero-slide:nth-child(5) img { animation-name: kenBurns5; }

@keyframes kenBurns2 {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, 0); }
}

@keyframes kenBurns3 {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(0, -2%); }
}

@keyframes kenBurns4 {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(2%, -1%); }
}

@keyframes kenBurns5 {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, 1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.75) 0%,
        rgba(13, 13, 13, 0.55) 40%,
        rgba(13, 13, 13, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    max-width: 380px;
    margin: 0 auto 40px;
}

/* Tagline rotation */
.hero-taglines {
    position: relative;
    height: 40px;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-tagline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-tagline.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.6;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.stats-strip-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 24px;
}

.stats-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-strip-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.stats-strip-item .star-icon {
    width: 18px;
    height: 18px;
}

.stats-strip-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.stats-strip-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

/* ============================================
   GALLERY SLIDESHOW
   ============================================ */
.gallery {
    background: var(--bg-primary);
}

.gallery-slideshow-wrapper {
    position: relative;
    max-width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 700px;
    display: flex;
    align-items: center;
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.6) 0%, transparent 40%);
    pointer-events: none;
}

.gallery-slide-caption {
    position: absolute;
    bottom: 32px;
    left: 48px;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
    z-index: 1;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-primary);
}

.gallery-arrow:hover {
    background: rgba(201, 169, 110, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-arrow svg {
    width: 22px;
    height: 22px;
}

.gallery-arrow-left {
    left: 24px;
}

.gallery-arrow-right {
    right: 24px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-bottom: 16px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.gallery-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.gallery-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

.gallery-follow svg {
    width: 20px;
    height: 20px;
}

.gallery-follow:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================
   REELS
   ============================================ */
.reels {
    background: var(--bg-secondary);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.reel-embed {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    background: var(--bg-secondary);
}

.price-group {
    margin-bottom: 60px;
}

.price-group:last-of-type {
    margin-bottom: 40px;
}

.price-group-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.price-group-names {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    transition: all var(--transition);
}

.price-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 169, 110, 0.08) 100%);
}

.price-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.duration {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.services-cta {
    text-align: center;
    margin-top: 20px;
}

/* ============================================
   TEAM
   ============================================ */
.team {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 40px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all var(--transition);
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.08);
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.team-role {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-quote {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 12px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    background: var(--bg-secondary);
}

.reviews-badge {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.reviews-stars .star-icon {
    width: 24px;
    height: 24px;
}

.reviews-score {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

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

/* Carousel wrapper with arrows */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-secondary);
}

.carousel-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.reviews-carousel {
    position: relative;
    flex: 1;
    min-height: 200px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

/* Decorative quotation mark */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.review-author {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.review-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.review-stars .star-icon {
    width: 16px;
    height: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--gold);
}

.contact-item p,
.contact-item a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--gold-light);
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--border);
}

.contact-map iframe {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: auto;
    width: 180px;
}

.footer-tagline {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
    text-align: center;
    width: 180px;
}

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

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-info a {
    color: var(--text-secondary);
}

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

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered delays for grid children */
.price-card.reveal:nth-child(1) { transition-delay: 0s; }
.price-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.price-card.reveal:nth-child(3) { transition-delay: 0.3s; }

.team-card.reveal:nth-child(1) { transition-delay: 0s; }
.team-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.team-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.team-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.reel-card.reveal:nth-child(1) { transition-delay: 0s; }
.reel-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.reel-card.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu.active ~ .nav-actions {
        display: flex;
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        flex-direction: column;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .gallery-slideshow-wrapper {
        height: 50vh;
        min-height: 300px;
    }

    .gallery-slide-caption {
        left: 24px;
        bottom: 24px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .price-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .carousel-arrow {
        display: none;
    }

    .reviews-carousel-wrapper {
        padding: 0;
    }

    .stats-strip-inner {
        gap: 24px;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-height: 70px;
    }

    .section {
        padding: 70px 0;
    }

    .hero-logo {
        max-width: 260px;
    }

    .nav-logo img {
        height: 42px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow-left { left: 12px; }
    .gallery-arrow-right { right: 12px; }

    .gallery-slide-caption {
        left: 16px;
        bottom: 16px;
    }

    .stats-strip-inner {
        flex-direction: column;
        gap: 12px;
    }

    .stats-strip-divider {
        width: 40px;
        height: 1px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .team-card {
        padding: 24px 12px;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
    }

    .review-card {
        padding: 24px;
    }

    .review-text {
        font-size: 1rem;
    }
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
    overflow: hidden;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding-right: 60px;
}

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

/* ============================================
   REEL CARDS (replaces broken embeds)
   ============================================ */
.reel-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.reel-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.reel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.reel-card:hover .reel-overlay {
    opacity: 1;
}

.reel-play {
    width: 56px;
    height: 56px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

/* ============================================
   TEAM - Redesigned with Initials
   ============================================ */
.team-initial {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.85;
    transition: all var(--transition);
}

.team-card:hover .team-initial {
    opacity: 1;
    background: rgba(201, 169, 110, 0.1);
    transform: scale(1.05);
}

.team-divider {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto;
    opacity: 0.3;
}

/* ============================================
   HERO GRAIN OVERLAY
   ============================================ */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   DARK MAP
   ============================================ */
.contact-map iframe {
    filter: invert(90%) hue-rotate(180deg) saturate(0.3) brightness(0.7);
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background: rgba(201, 169, 110, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(201, 169, 110, 0.3);
    color: var(--text-primary);
}
