
/* ============================================
   ClassicCut Barbershop - Premium Design v4.0
   Distinctive Art Deco Visual Aesthetic
   Focus: Unique Design, Not Animations
   ============================================ */

:root {
    /* Rich Color Palette */
    --black: #0a0908;
    --charcoal: #1a1714;
    --espresso: #2a2420;
    --leather: #3d3530;
    --walnut: #4a4038;
    
    /* Gold Spectrum */
    --gold: #c9a962;
    --gold-light: #dcc07a;
    --gold-dark: #a88b4a;
    --brass: #b5a642;
    
    /* Neutrals */
    --cream: #f5f0e8;
    --ivory: #fffef9;
    --stone: #d4c8b8;
    --ash: #9a8a7a;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

/* ============================================
   BASE STYLES
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--stone);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
}

/* Subtle Grain Texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 10000;
}

::selection { background: var(--gold); color: var(--black); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.1;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

.text-gold { color: var(--gold); }

/* Layout */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--space-lg); }
section { padding: 50px 0 140px; position: relative; scroll-margin-top: 80px; }

/* ============================================
   DECORATIVE ELEMENTS - Art Deco Style
   ============================================ */

/* Ornamental Divider */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}
.ornament::before,
.ornament::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* Corner Frames */
.corner-frame {
    position: relative;
}
.corner-frame::before,
.corner-frame::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    opacity: 0.3;
}
.corner-frame::before {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
}
.corner-frame::after {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
}

/* ============================================
   SECTION HEADERS - Distinctive Style
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-lg);
}

.section-title {
    margin-bottom: var(--space-lg);
}

.section-text {
    color: var(--ash);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS - Premium Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    position: relative;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.25);
}
.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 40px rgba(201, 169, 98, 0.35);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: rgba(201, 169, 98, 0.1);
}

.btn-lg { padding: 16px 32px; font-size: 0.75rem; white-space: nowrap; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   HEADER - Refined Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: var(--charcoal);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Art Deco Frame */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.05em;
}

/* Logo with Font Awesome icon - Premium Art Deco Style */
.logo i {
    color: var(--gold);
    font-size: 1.1rem;
    padding: 12px;
    border: 1px solid var(--gold);
    transform: rotate(-45deg);
    position: relative;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--espresso) 100%);
    box-shadow:
        inset 0 0 0 2px var(--charcoal),
        inset 0 0 0 3px var(--gold-dark),
        0 2px 8px rgba(0,0,0,0.3);
}
.logo i::before {
    display: block;
    transform: rotate(45deg);
}
.logo i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow:
        -8px 0 0 var(--gold-dark),
        8px 0 0 var(--gold-dark),
        0 -8px 0 var(--gold-dark),
        0 8px 0 var(--gold-dark);
}

/* Logo with custom SVG */
.logo .logo-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.logo strong { color: var(--gold); }

/* Logo Image Variant - for custom logo images */
.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Logo with gold border frame */
.logo--framed img {
    padding: 8px;
    border: 1px solid var(--gold);
    background: var(--charcoal);
}

/* Logo with diamond frame (Art Deco style) */
.logo--diamond img {
    padding: 10px;
    border: 1px solid var(--gold);
    transform: rotate(0deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: var(--charcoal);
    height: 50px;
}

/* Logo Photo Variant - circular photo with gold ring */
.logo--photo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 3px var(--charcoal), 0 0 0 4px var(--gold-dark);
}

/* Logo Photo - square with gold corners */
.logo--photo-square img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border: 1px solid var(--gold);
    position: relative;
}

/* Logo Photo - hexagon shape */
.logo--photo-hex img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: none;
    background: var(--gold);
    padding: 2px;
}

/* Logo Photo - shield/badge shape */
.logo--photo-shield img {
    width: 42px;
    height: 50px;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
    border: 2px solid var(--gold);
}

/* Logo Photo - with initials fallback */
.logo--photo .logo-initials {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--charcoal);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: var(--space-xl);
}

.nav-list a {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--stone);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-list a:hover { color: var(--cream); }
.nav-list a:hover::after { opacity: 1; }

.header-cta {
    padding: 12px 28px;
    font-size: 0.65rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}
.mobile-toggle span {
    width: 26px;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Mobile Toggle Active State - X icon */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   HERO - Dramatic Split Design with Image
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--black);
    overflow: hidden;
}

/* Background Pattern - Art Deco Grid */
.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Diagonal Accent - Charcoal color */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--charcoal);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}


/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) 0;
}

/* Hero Image Area */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
}

/* Outer Frame - Art Deco Style */
.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px solid var(--gold);
    opacity: 0.3;
}

/* Corner Accents */
.hero-image-frame::after {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 50px;
    height: 50px;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
}

.hero-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--espresso);
    border: 1px solid var(--leather);
    overflow: hidden;
}

/* Inner Frame */
.hero-image-inner::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    pointer-events: none;
    z-index: 2;
}

/* Gradient Overlay */
.hero-image-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 9, 8, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder Styling */
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, var(--espresso) 0%, var(--leather) 50%, var(--espresso) 100%);
}

.hero-image-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
}

.hero-image-placeholder span {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0.3;
}

/* Decorative Accent - Bottom Right Corner */
.hero-image-accent {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

/* Years Badge - Large Square Corner Style */
.hero-image-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    background: var(--gold);
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    max-width: 140px;
    max-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 10px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hero-image-badge::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(10, 9, 8, 0.2);
}

/* Corner accent lines */
.hero-image-badge::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.hero-image-badge__number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-image-badge__text {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--black);
    opacity: 0.8;
    line-height: 1.3;
    max-width: 100px;
}

/* Badge with Frame */
.hero-badge {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-xl);
    background: rgba(201, 169, 98, 0.05);
}

.hero-badge i {
    margin-right: 10px;
}

.hero-title {
    margin-bottom: var(--space-lg);
    line-height: 1.05;
}

.hero-title .text-gold {
    display: block;
    font-style: italic;
    font-weight: 300;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--stone);
    margin-bottom: var(--space-2xl);
    line-height: 1.9;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.hero-hours {
    color: var(--ash);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.hero-hours i { color: var(--gold); }

/* ============================================
   SERVICES - Elegant Card Grid
   ============================================ */
.services {
    background: var(--charcoal);
    position: relative;
}

/* Art Deco Divider - Top */
.services::before {
    content: '◆';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.6rem;
    background: var(--black);
    padding: 4px 14px;
    border: 1px solid var(--gold);
    z-index: 10;
}

/* Horizontal Line */
.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

/* Services Tabs Layout */
.services-tabs {
    max-width: 100%;
    margin: 0 auto;
}

/* Tab Navigation */
.services-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid var(--leather);
    color: var(--ash);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--cream);
}

.tab-btn:hover i {
    opacity: 0.8;
}

.tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.tab-btn.active i {
    color: var(--black);
    opacity: 1;
}

/* Tab Content */
.services-tabs-content {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Services Grid inside Tabs */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* Service Card - Framed Design */
.service-card {
    background: var(--espresso);
    padding: 32px 20px;
    text-align: center;
    border: 1px solid var(--leather);
    position: relative;
    transition: all 0.4s ease;
}

/* Inner Frame */
.service-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201, 169, 98, 0.08);
    pointer-events: none;
    transition: border-color 0.4s ease;
}

/* Top Accent Line */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    border-color: rgba(201, 169, 98, 0.15);
}

.service-card:hover::after {
    opacity: 1;
    width: 50px;
}

/* Empty Card - Placeholder */
.service-card--empty {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

.service-card--empty::before,
.service-card--empty::after {
    display: none;
}

/* Featured Card */
.service-featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, var(--leather) 0%, var(--espresso) 100%);
}
.service-featured::after { opacity: 1; }

.service-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    font-family: var(--font-accent);
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--ash);
    font-size: 0.8rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.service-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
}

/* ============================================
   BARBERS - Portrait Cards
   ============================================ */
.barbers {
    background: var(--charcoal);
    position: relative;
}

/* Art Deco Divider - Top */
.barbers::before {
    content: '◆';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.6rem;
    background: var(--charcoal);
    padding: 4px 14px;
    border: 1px solid var(--gold);
    z-index: 10;
}

/* Horizontal Line */
.barbers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

.barbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.barber-card {
    background: var(--charcoal);
    border: none;
    overflow: visible;
    transition: all 0.4s ease;
}

.barber-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Barber Frame - Art Deco Style */
.barber-frame {
    position: relative;
    padding: 20px;
    margin-bottom: var(--space-md);
}

/* Outer Frame Border */
.barber-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.barber-card:hover .barber-frame::before {
    opacity: 0.6;
}

/* Corner Accents - Top Left */
.barber-corner-tl {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    z-index: 5;
}

/* Corner Accents - Bottom Right */
.barber-corner-br {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    z-index: 5;
}

.barber-image {
    height: 340px;
    background: var(--espresso);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--leather);
}

/* Inner Frame */
.barber-image::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    pointer-events: none;
    z-index: 2;
    transition: border-color 0.4s ease;
}

.barber-card:hover .barber-image::before {
    border-color: rgba(201, 169, 98, 0.3);
}

/* Gradient Overlay */
.barber-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(10, 9, 8, 0.6), transparent);
    z-index: 1;
}

.barber-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--espresso) 0%, var(--leather) 50%, var(--espresso) 100%);
}

.barber-placeholder i {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
}

.barber-info {
    padding: var(--space-lg);
    text-align: center;
    position: relative;
}

/* Decorative Line */
.barber-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.barber-info h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.barber-info span {
    display: block;
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
}

.barber-info p {
    color: var(--ash);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   GALLERY - Art Deco Framed Slider
   ============================================ */
.gallery {
    background: var(--black);
    position: relative;
    overflow: visible;
}

/* Art Deco Divider - Top */
.gallery::before {
    content: '◆';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.6rem;
    background: var(--charcoal);
    padding: 4px 14px;
    border: 1px solid var(--gold);
    z-index: 10;
}

/* Horizontal Line */
.gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

/* Minimal Section Header - Badge Only */
.section-header--minimal {
    margin-bottom: 30px;
}

/* Gallery Wrapper with Arrows */
.gallery-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
}

/* Gallery Arrow Buttons */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
}

.gallery-arrow::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(10, 9, 8, 0.2);
    pointer-events: none;
}

.gallery-arrow i {
    font-size: 1.2rem;
    color: var(--black);
    transition: transform 0.3s ease;
}

.gallery-arrow:hover {
    background: var(--gold-light);
}

.gallery-arrow:hover i {
    color: var(--black);
}

.gallery-arrow--prev {
    left: 0;
}

.gallery-arrow--next {
    right: 0;
}

.gallery-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-arrow:disabled:hover {
    background: var(--gold);
}

.gallery-arrow:disabled:hover i {
    color: var(--black);
}

/* Gallery Slider */
.gallery-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 0 20px;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: var(--space-lg);
    padding: 0 40px;
    width: max-content;
}

/* Gallery Slide - Same Size */
.gallery-slide {
    flex-shrink: 0;
    width: 380px;
    height: 520px;
    padding: 20px;
    scroll-snap-align: center;
}

/* Gallery Frame - Art Deco Style */
.gallery-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Outer Frame Border */
.gallery-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.gallery-slide:hover .gallery-frame::before {
    opacity: 0.6;
}

/* Corner Accents - Top Left */
.gallery-corner-tl {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    z-index: 5;
}

/* Corner Accents - Bottom Right */
.gallery-corner-br {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    z-index: 5;
}

/* Gallery Inner - Image Container */
.gallery-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--espresso);
    border: 1px solid var(--leather);
    overflow: hidden;
}

/* Inner Frame */
.gallery-inner::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    pointer-events: none;
    z-index: 2;
    transition: border-color 0.4s ease;
}

.gallery-slide:hover .gallery-inner::before {
    border-color: rgba(201, 169, 98, 0.3);
}

/* Gradient Overlay */
.gallery-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 9, 8, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Placeholder Styling */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, var(--espresso) 0%, var(--leather) 50%, var(--espresso) 100%);
    transition: all 0.4s ease;
}

.gallery-slide:hover .gallery-placeholder {
    filter: brightness(0.85);
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.2;
}

.gallery-placeholder span {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0.3;
}

/* Image styling when added */
.gallery-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Social Links */
.gallery-social {
    text-align: center;
    padding: var(--space-md) var(--space-lg) 0;
}

.gallery-social-text {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ash);
    margin-bottom: var(--space-md);
}

.gallery-social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.gallery-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.gallery-social-link i {
    font-size: 1.1rem;
}

.gallery-social-link:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============================================
   TESTIMONIALS - Quote Cards
   ============================================ */
.testimonials {
    background: var(--black);
    position: relative;
}

/* Art Deco Divider - Top */
.testimonials::before {
    content: '◆';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.6rem;
    background: var(--black);
    padding: 4px 14px;
    border: 1px solid var(--gold);
    z-index: 10;
}

/* Horizontal Line */
.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--charcoal);
    padding: 40px;
    border: 1px solid var(--leather);
    position: relative;
    transition: all 0.4s ease;
}

/* Inner Frame */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201, 169, 98, 0.08);
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
}

.testimonial-card:hover::before {
    border-color: rgba(201, 169, 98, 0.15);
}

.testimonial-featured {
    border-color: var(--gold);
    background: var(--espresso);
}

.testimonial-featured::before {
    border-color: rgba(201, 169, 98, 0.15);
}

/* Testimonial Header - Stars and Source */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* Empty stars (unfilled) */
.testimonial-stars i.star-empty {
    color: var(--leather);
    opacity: 0.5;
}

/* Source Icon (Google, Yelp, etc.) */
.testimonial-source {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.testimonial-source i {
    font-size: 0.9rem;
    color: var(--gold);
}

/* Google-specific styling - Gold to match design */
.testimonial-google .testimonial-source {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.3);
}

.testimonial-google .testimonial-source i {
    color: var(--gold);
}

/* Manual reviews - quote icon styling */
.testimonial-manual .testimonial-source {
    background: rgba(154, 138, 122, 0.1);
    border-color: rgba(154, 138, 122, 0.2);
}

.testimonial-manual .testimonial-source i {
    color: var(--ash);
    opacity: 0.8;
}

/* Hide source icon only if no specific type class */
.testimonial-card:not(.testimonial-google):not(.testimonial-manual) .testimonial-source {
    display: none;
}

/* Testimonial Text */
.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--stone);
    margin-bottom: var(--space-lg);
    line-height: 1.9;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
}

/* Decorative Quote Line */
.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

.testimonial-author {
    padding-top: var(--space-sm);
    border-top: 1px solid var(--leather);
}

.testimonial-author strong {
    display: block;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.7rem;
    color: var(--ash);
    font-family: var(--font-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Reviews Mode Toggle */
.reviews-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.reviews-toggle__label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ash);
}

.reviews-toggle__buttons {
    display: flex;
    gap: 0;
    border: 1px solid var(--gold);
    border-radius: 2px;
    overflow: hidden;
}

.reviews-toggle__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--ash);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reviews-toggle__btn:not(:last-child) {
    border-right: 1px solid var(--gold);
}

.reviews-toggle__btn i {
    font-size: 0.9rem;
}

.reviews-toggle__btn:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--gold);
}

.reviews-toggle__btn.active {
    background: var(--gold);
    color: var(--black);
}

.reviews-toggle__btn.active i {
    color: var(--black);
}

/* Reviews Status Indicator */
.reviews-status {
    margin-top: var(--space-md);
    text-align: center;
}

.reviews-status__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: var(--font-accent);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 2px;
}

.reviews-status__badge i {
    font-size: 0.8rem;
}

/* Google Live Reviews - Gold accent */
.reviews-status__badge--google {
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* Demo Mode - Gold with dashed border */
.reviews-status__badge--demo {
    background: rgba(201, 169, 98, 0.1);
    border: 1px dashed var(--gold);
    color: var(--gold);
}

/* Custom Reviews (from JS) - Gold subtle */
.reviews-status__badge--custom {
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: var(--gold);
}

/* Manual Reviews (from HTML) - Muted */
.reviews-status__badge--manual {
    background: rgba(154, 138, 122, 0.1);
    border: 1px solid rgba(154, 138, 122, 0.3);
    color: var(--ash);
}

/* Error State */
.reviews-status__badge--error {
    background: rgba(180, 100, 100, 0.1);
    border: 1px solid rgba(180, 100, 100, 0.3);
    color: #b46464;
}

/* ============================================
   BOOKING - Split Layout
   ============================================ */
.booking {
    background: var(--charcoal);
    position: relative;
    overflow: visible;
}

/* Art Deco Divider - Top */
.booking::before {
    content: '◆';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.6rem;
    background: var(--black);
    padding: 4px 14px;
    border: 1px solid var(--gold);
    z-index: 10;
}

/* Horizontal Line */
.booking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

.booking-grid {
    position: relative;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.booking-info .section-badge { margin-bottom: var(--space-md); }
.booking-info .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}
.booking-info .section-title::after { left: 0; transform: none; }
.booking-info > p {
    color: var(--ash);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
    line-height: 1.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--stone);
    padding: 20px 28px;
    background: var(--espresso);
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--leather);
}

.contact-item i {
    color: var(--gold);
    width: 24px;
    font-size: 1.1rem;
}

/* Booking Form - Framed */
.booking-form-wrapper {
    background: var(--espresso);
    padding: 52px;
    border: 1px solid var(--gold);
    position: relative;
}

/* Inner Frame */
.booking-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    pointer-events: none;
}

/* Second Inner Frame */
.booking-form-wrapper::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    pointer-events: none;
}

/* Booking Corner Accents - All Four Corners */
.booking-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 5;
}

/* Diamond shape in each corner */
.booking-corner::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* Corner lines */
.booking-corner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Top Left */
.booking-corner--tl {
    top: -4px;
    left: -4px;
}
.booking-corner--tl::before {
    top: 0;
    left: 0;
}
.booking-corner--tl::after {
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    top: 4px;
    left: 4px;
}

/* Top Right */
.booking-corner--tr {
    top: -4px;
    right: -4px;
}
.booking-corner--tr::before {
    top: 0;
    right: 0;
}
.booking-corner--tr::after {
    border-right: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    top: 4px;
    right: 4px;
}

/* Bottom Left */
.booking-corner--bl {
    bottom: -4px;
    left: -4px;
}
.booking-corner--bl::before {
    bottom: 0;
    left: 0;
}
.booking-corner--bl::after {
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    bottom: 4px;
    left: 4px;
}

/* Bottom Right */
.booking-corner--br {
    bottom: -4px;
    right: -4px;
}
.booking-corner--br::before {
    bottom: 0;
    right: 0;
}
.booking-corner--br::after {
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    bottom: 4px;
    right: 4px;
}

.booking-form h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 1.7rem;
    position: relative;
}

.booking-form h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: var(--space-md) auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group { margin-bottom: var(--space-md); }

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid var(--leather);
    background: var(--charcoal);
    color: var(--cream);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input::placeholder { color: var(--ash); }

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a962' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 80px 0 32px;
    border-top: 1px solid var(--gold);
    position: relative;
}

.footer::before {
    content: '— CLASSICCUT —';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black);
    padding: 4px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

/* Footer Brand */
.footer-brand .logo { margin-bottom: var(--space-md); }
.footer-brand p {
    color: var(--ash);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 280px;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--leather);
    color: var(--ash);
    font-size: 1rem;
}

.footer-social__link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
}

/* Footer Links */
.footer-links h4 {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-lg);
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

/* Footer Hours */
.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    color: var(--ash);
    font-size: 0.85rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--leather);
}

.footer-hours li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-hours li span:first-child {
    color: var(--stone);
}

.footer-hours li span:last-child {
    color: var(--cream);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ash);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 4px;
    width: 16px;
}

.footer-contact a {
    color: var(--ash);
}

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

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--leather);
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-bottom__links a {
    color: var(--ash);
    font-size: 0.8rem;
}

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

.footer-divider {
    color: var(--gold);
    font-size: 0.5rem;
    opacity: 0.5;
}

/* Author Badge */
.author-badge {
    display: inline-flex;
    font-size: 0.7rem;
    overflow: hidden;
    border-radius: 2px;
}

.author-badge__label {
    padding: 8px 14px;
    background: var(--leather);
    color: var(--ash);
}

.author-badge__name {
    padding: 8px 14px;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 9, 8, 0.98);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.mobile-menu-nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    transition: color 0.3s ease;
}

.mobile-menu-nav a:hover {
    color: var(--gold);
}

.mobile-menu-cta {
    padding: 16px 40px;
}

/* Services Grid Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    /* Hero Diagonal Accent - Tablet */
    .hero::before {
        width: 50%;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .hero-content { max-width: 100%; text-align: center; padding: var(--space-lg); }
    .hero-image { order: -1; }
    .hero-image-frame { max-width: 400px; margin: 0 auto; }
    .hero-image-badge { right: 50%; transform: translateX(50%); top: -20px; }
    .hero-actions { justify-content: center; }
    .hero-hours { justify-content: center; }
    .barbers-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-slide { width: 300px; height: 380px; }
    .gallery-wrapper { padding: 0 60px; }
    .gallery-arrow { width: 48px; height: 48px; }
    .booking-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Base Mobile Styles */
    section { padding: 60px 0; }
    .container { padding: 0 var(--space-md); }
    
    /* Header Mobile */
    .nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .header { padding: var(--space-sm) 0; }
    .header.scrolled { padding: var(--space-xs) 0; }
    .logo { font-size: 1.3rem; }
    .logo i { padding: 8px; font-size: 0.9rem; }
    
    /* Hero Mobile */
    .hero { padding-top: 70px; min-height: auto; padding-bottom: var(--space-xl); }
    /* Hero Diagonal Accent - Mobile: Full width subtle background */
    .hero::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
        opacity: 0.7;
    }
    .hero-content { padding: var(--space-sm); }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero-text { font-size: 1rem; margin-bottom: var(--space-lg); }
    .hero-badge { padding: 10px 20px; font-size: 0.6rem; margin-bottom: var(--space-md); }
    .hero-image-frame { max-width: 280px; }
    .hero-image-frame::before { inset: -8px; }
    .hero-image-frame::after { top: -12px; left: -12px; width: 25px; height: 25px; }
    .hero-image-accent { bottom: -12px; right: -12px; width: 25px; height: 25px; }
    .hero-image-badge {
        width: 85px;
        height: 85px;
        min-width: 85px;
        min-height: 85px;
        max-width: 85px;
        max-height: 85px;
        right: 10px;
        top: 10px;
        transform: none;
        padding: 6px;
    }
    .hero-image-badge::before { inset: 6px; }
    .hero-image-badge::after { width: 20px; height: 20px; top: -8px; right: -8px; }
    .hero-image-badge__number { font-size: 2.2rem; }
    .hero-image-badge__text { font-size: 0.5rem; max-width: 80px; }
    .hero-actions { flex-direction: column; align-items: center; gap: var(--space-sm); }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    .hero-hours { font-size: 0.7rem; flex-wrap: wrap; justify-content: center; text-align: center; }
    
    /* Section Headers Mobile */
    .section-header { margin-bottom: 40px; }
    .section-badge { padding: 10px 20px; font-size: 0.6rem; }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.2rem); }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    .service-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: var(--space-md);
    }
    .service-card::before { inset: 4px; }
    .service-card::after { display: none; }
    .service-card--empty { display: none; }
    .service-card h3 { font-size: 1rem; margin-bottom: 4px; }
    .service-card p { font-size: 0.75rem; margin-bottom: 0; display: none; }
    .service-price {
        font-size: 1.4rem;
        margin-left: auto;
        flex-shrink: 0;
    }
    .service-badge {
        top: auto;
        bottom: -1px;
        left: auto;
        right: 10px;
        transform: none;
        padding: 4px 10px;
        font-size: 0.45rem;
    }
    .services-tabs-nav {
        gap: 4px;
        padding: 0 var(--space-xs);
    }
    .tab-btn {
        padding: 12px 16px;
        font-size: 0.55rem;
        flex: 1;
        justify-content: center;
    }
    .tab-btn span { display: none; }
    .tab-btn i { font-size: 1.1rem; }
    
    /* Barbers Mobile */
    .barbers-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
        gap: var(--space-xl);
    }
    .barber-frame { padding: 15px; }
    .barber-image { height: 280px; }
    .barber-corner-tl, .barber-corner-br { width: 30px; height: 30px; }
    .barber-corner-tl { top: -6px; left: -6px; }
    .barber-corner-br { bottom: -6px; right: -6px; }
    .barber-info { padding: var(--space-md); }
    .barber-info h3 { font-size: 1.3rem; }
    
    /* Gallery Mobile */
    .gallery-slide { width: 260px; height: 320px; padding: 15px; }
    .gallery-corner-tl { width: 25px; height: 25px; top: -12px; left: -12px; }
    .gallery-corner-br { width: 25px; height: 25px; bottom: -12px; right: -12px; }
    .gallery-frame::before { inset: -8px; }
    .gallery-wrapper { padding: 0 45px; }
    .gallery-arrow { width: 36px; height: 36px; }
    .gallery-arrow i { font-size: 0.8rem; }
    .gallery-social { padding: var(--space-sm) var(--space-md) 0; }
    .gallery-social-links { flex-direction: column; gap: var(--space-sm); }
    .gallery-social-link { justify-content: center; padding: 12px 20px; }
    
    /* Testimonials Mobile */
    .testimonials-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .testimonial-card { padding: 28px 24px; }
    .testimonial-card::before { inset: 6px; }
    .testimonial-text { font-size: 0.95rem; padding-left: 16px; }
    .testimonial-source { width: 28px; height: 28px; }
    .testimonial-source i { font-size: 0.8rem; }
    
    /* Booking Mobile */
    .booking-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .booking-info { text-align: center; }
    .booking-info .section-badge { display: inline-block; }
    .booking-info .section-title { text-align: center; }
    .booking-info .section-title::after { left: 50%; transform: translateX(-50%); }
    .booking-info > p { text-align: center; }
    .contact-details { gap: var(--space-sm); justify-content: center; }
    .contact-item { padding: 16px 20px; font-size: 0.9rem; }
    .contact-item i { font-size: 1rem; }
    .booking-form-wrapper { padding: 28px 20px; }
    .booking-form-wrapper::before { inset: 12px; }
    .booking-form-wrapper::after { inset: 6px; }
    .booking-corner { width: 20px; height: 20px; }
    .booking-corner::before { width: 6px; height: 6px; }
    .booking-form h3 { font-size: 1.4rem; margin-bottom: var(--space-lg); }
    .form-row { grid-template-columns: 1fr; }
    .form-group input, .form-group select { padding: 16px 18px; font-size: 0.95rem; }
    .btn-full { padding: 16px 24px; }
    
    /* Footer Mobile - Compact 2-column layout */
    .footer { padding: 40px 0 20px; }
    .footer::before { font-size: 0.45rem; padding: 3px 8px; letter-spacing: 0.15em; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        margin-bottom: 24px;
    }
    
    /* Footer Brand - Full width on top */
    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--leather);
        margin-bottom: 8px;
    }
    .footer-brand .logo {
        justify-content: center;
        margin-bottom: var(--space-xs);
        font-size: 1.2rem;
    }
    .footer-brand .logo i {
        padding: 6px;
        font-size: 0.8rem;
    }
    .footer-brand p {
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--space-sm);
        font-size: 0.8rem;
        line-height: 1.6;
    }
    .footer-social {
        justify-content: center;
        gap: 8px;
    }
    .footer-social__link {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    
    /* Footer Links - Compact */
    .footer-links {
        text-align: left;
    }
    .footer-links h4 {
        font-size: 0.55rem;
        margin-bottom: var(--space-sm);
        letter-spacing: 0.2em;
    }
    .footer-links h4::after {
        display: none;
    }
    .footer-links ul {
        gap: 6px;
    }
    .footer-links a {
        font-size: 0.8rem;
    }
    
    /* Footer Hours - Compact */
    .footer-hours li {
        font-size: 0.75rem;
        padding-bottom: 6px;
        gap: var(--space-xs);
    }
    .footer-hours li span:last-child {
        font-size: 0.65rem;
    }
    
    /* Footer Contact - Compact */
    .footer-contact li {
        font-size: 0.8rem;
        gap: 8px;
    }
    .footer-contact li i {
        font-size: 0.8rem;
        width: 14px;
    }
    
    /* Footer Bottom - Compact */
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 16px;
    }
    .footer-bottom p { font-size: 0.75rem; }
    .footer-bottom__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
    }
    .footer-bottom__links a {
        font-size: 0.7rem;
    }
    .author-badge {
        font-size: 0.6rem;
    }
    .author-badge__label,
    .author-badge__name {
        padding: 6px 10px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    /* Hero Diagonal Accent - Extra Small: Simplified */
    .hero::before {
        height: 40%;
        clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
        opacity: 0.5;
    }
    .hero-image-frame { max-width: 240px; }
    .hero-title { font-size: 2rem; }
    .gallery-slide { width: 220px; height: 280px; }
    .gallery-wrapper { padding: 0 40px; }
    .gallery-arrow { width: 32px; height: 32px; }
    .barbers-grid { max-width: 300px; }
    .barber-image { height: 240px; }
    .service-card { padding: 20px 16px; }
    .service-price { font-size: 1.2rem; }
}

/* ============================================
   ADDITIONAL PAGES
   ============================================ */
.page-hero { padding: 160px 0 80px; background: var(--charcoal); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { color: var(--ash); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); text-align: center; }
.error-content { max-width: 500px; }
.error-code { font-family: var(--font-display); font-size: 10rem; color: var(--gold); line-height: 1; opacity: 0.3; }
.error-page h1 { font-size: 2.5rem; margin: 16px 0; }
.error-page p { color: var(--ash); margin-bottom: 32px; }
.error-actions { display: flex; gap: 16px; justify-content: center; }

.legal-page { padding: 160px 0 80px; background: var(--black); }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 8px; }
.last-updated { color: var(--ash); font-size: 0.9rem; margin-bottom: 40px; }
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.5rem; margin: 32px 0 12px; color: var(--gold); }
.legal-content p { color: var(--stone); line-height: 1.9; margin-bottom: 16px; }

.coming-soon-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); text-align: center; }
.coming-soon-content { max-width: 550px; }
.coming-soon-page .logo { justify-content: center; margin-bottom: 48px; }
.coming-soon-page .badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border: 1px solid var(--gold); color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 24px; }
.coming-soon-page h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.coming-soon-page p { color: var(--ash); margin-bottom: 32px; }
.subscribe-form { display: flex; gap: 12px; max-width: 400px; margin: 0 auto 32px; }
.subscribe-form input { flex: 1; padding: 14px 20px; border: 1px solid var(--leather); background: var(--charcoal); color: var(--cream); font-size: 1rem; }
.subscribe-form input:focus { outline: none; border-color: var(--gold); }
.social-links { display: flex; gap: 16px; justify-content: center; }
.social-links a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--charcoal); color: var(--ash); border: 1px solid var(--leather); transition: all 0.3s ease; }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

.maintenance-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); text-align: center; }
.maintenance-content { max-width: 500px; }
.maintenance-page .logo { justify-content: center; margin-bottom: 48px; }
.maintenance-icon { width: 100px; height: 100px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.maintenance-icon i { font-size: 2.5rem; color: var(--gold); }
.maintenance-page h1 { font-size: 2.5rem; margin-bottom: 16px; }
.maintenance-page p { color: var(--ash); margin-bottom: 32px; }
.maintenance-info { display: flex; flex-direction: column; gap: 12px; }
.info-item { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--stone); }
.info-item i { color: var(--gold); }

.contact-section { padding: 80px 0; background: var(--black); }
.contact-section .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-section .contact-info h2 { margin-bottom: 16px; }
.contact-section .contact-info > p { color: var(--ash); margin-bottom: 32px; }

@media (max-width: 768px) {
    .contact-section .contact-grid { grid-template-columns: 1fr; }
    .error-code { font-size: 6rem; }
    .error-actions { flex-direction: column; }
    .subscribe-form { flex-direction: column; }
}