/*
Theme Name: Classic Cuts Barbershop
Theme URI: https://barber.local
Description: Premium barbershop theme - Classic Cuts, Austin TX
Author: GetLocalWeb
Author URI: https://getlocalweb.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-barber
*/

/* ==========================================================================
   CSS VARIABLES - Dark Masculine Theme with Gold Accents
   ========================================================================== */

:root {
    /* Primary Colors - Deep Charcoal & Black */
    --primary: #1a1a1a;
    --primary-dark: #0d0d0d;
    --primary-light: #2d2d2d;
    
    /* Accent - Gold/Brass */
    --accent: #c9a96e;
    --accent-dark: #a8893f;
    --accent-light: #d4bc8a;
    --accent-glow: rgba(201, 169, 110, 0.4);
    
    /* Secondary - Warm Browns */
    --brown: #8b7355;
    --brown-light: #a08060;
    --brown-dark: #6b5a45;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f5f3f0;
    --cream: #faf8f5;
    --light-gray: #e8e4df;
    --medium-gray: #9a9590;
    --dark-gray: #4a4540;
    --text: #2a2520;
    --text-light: #6a6560;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
    --gradient-hero: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 40%, #2d2d2d 100%);
    --gradient-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.24);
    --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.3);
    --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-accent: 'Bebas Neue', 'Impact', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Hide Astra default header & footer */
.ast-primary-header,
.ast-mobile-header-wrap,
#ast-desktop-header,
.site-header,
header.site-header,
.ast-above-header,
.ast-below-header,
.ast-footer-overlay,
.site-footer,
footer.site-footer,
.ast-small-footer,
.ast-footer-copyright {
    display: none !important;
}

.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container #primary {
    padding: 0;
    margin: 0;
}

.site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#page {
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   HEADER - Sleek Dark Header
   ========================================================================== */

.barber-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    transition: all var(--transition);
}

.barber-header.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-nav a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width var(--transition);
}

.header-nav a:hover {
    color: var(--white);
}

.header-nav a:hover::after {
    width: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.header-phone:hover {
    color: var(--accent);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-gold);
    color: var(--primary-dark) !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
    color: var(--primary-dark) !important;
}

.header-cta:hover::before {
    transform: translateX(100%);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

@media (max-width: 1024px) {
    .header-nav,
    .header-phone {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 999;
    padding: 120px 2rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    color: var(--white);
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* ==========================================================================
   HERO SECTION - Cinematic Dark Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: 140px 0 100px;
    overflow: hidden;
}

/* Animated Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Floating Gold Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(60px);
    animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    right: -150px;
    top: 20%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    left: 10%;
    bottom: 10%;
    animation-delay: -4s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
}

/* Barber Pole Animation */
.barber-pole {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 300px;
    background: linear-gradient(
        180deg,
        #fff 0%, #fff 25%,
        #c9a96e 25%, #c9a96e 50%,
        #1a1a1a 50%, #1a1a1a 75%,
        #c9a96e 75%, #c9a96e 100%
    );
    background-size: 100% 60px;
    border-radius: 15px;
    animation: barber-spin 2s linear infinite;
    opacity: 0.15;
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

@keyframes barber-spin {
    0% { background-position: 0 0; }
    100% { background-position: 0 60px; }
}

.hero-inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    color: var(--white);
}

/* Establishment Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease both;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '✂';
    font-size: 1.1rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transform: scaleX(0);
    animation: underline-grow 0.8s ease 1s forwards;
}

@keyframes underline-grow {
    to { transform: scaleX(1); }
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.5);
    color: var(--primary-dark);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

/* Hero Stats with Gold Accents */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 169, 110, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.hero-stat .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.hero-stat .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Image with Decorative Frame */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-gold);
    border-radius: calc(var(--radius-xl) + 3px);
    z-index: -1;
    opacity: 0.5;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

/* Floating Review Card */
.hero-review {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float-card 3s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-review-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
}

.hero-review-content .stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hero-review-content .text {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
}

/* Experience Badge */
.hero-experience {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--primary-dark);
    color: var(--accent);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--accent);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 169, 110, 0.6); }
}

.hero-experience .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-experience .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.trust-item .icon {
    font-size: 1.5rem;
}

.trust-item strong {
    color: var(--primary);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services {
    padding: 7rem 0;
    background: var(--cream);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--gradient-gold);
}

.service-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.service-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.service-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ABOUT / BARBERS SECTION
   ========================================================================== */

.about {
    padding: 7rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='none' stroke='%23c9a96e' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-image-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-image-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content {
    color: var(--white);
}

.about-content .section-label {
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--accent);
}

.about-content .section-title {
    color: var(--white);
}

.about-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-features .icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-weight: 700;
}

.about-features strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.about-features span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.gallery {
    padding: 7rem 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item span {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: var(--white);
    font-weight: 600;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
    padding: 7rem 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--accent);
}

.author-info strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing {
    padding: 7rem 0;
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
    color: var(--text);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 968px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
}

/* ==========================================================================
   BOOKING / CONTACT SECTION
   ========================================================================== */

.booking {
    padding: 7rem 0;
    background: var(--white);
}

.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.booking-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.booking-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.booking-contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.booking-contact-item .icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.booking-contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.booking-contact-item span,
.booking-contact-item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.booking-contact-item a:hover {
    color: var(--accent);
}

/* Booking Form */
.booking-form-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.booking-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
}

.booking-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all var(--transition);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.5);
}

.form-submit:hover::before {
    transform: translateX(100%);
}

@media (max-width: 968px) {
    .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */

.location {
    padding: 7rem 0;
    background: var(--off-white);
}

.location-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    background: var(--light-gray);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.info-card h4 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.info-item a {
    color: var(--text);
}

.info-item a:hover {
    color: var(--accent);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--light-gray);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .location-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.barber-footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-4px);
}

.footer-column h4 {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.85rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-item .icon {
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

@media (max-width: 968px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 2rem;
    text-align: center;
}

.error-404-content {
    max-width: 600px;
}

.error-404-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: scissors-snip 1.5s ease-in-out infinite;
}

@keyframes scissors-snip {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.05); }
    75% { transform: rotate(10deg) scale(1.05); }
}

.error-404-content h1 {
    font-family: var(--font-heading);
    font-size: 10rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 60px var(--accent-glow);
}

.error-404-content h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.error-404-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.error-404-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal-page {
    padding: 160px 0 100px;
    background: var(--cream);
    min-height: 100vh;
}

.legal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.legal-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.legal-card h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.legal-card h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.85rem;
}

.legal-card p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.legal-card ul,
.legal-card ol {
    color: var(--text);
    margin-bottom: 1.75rem;
    padding-left: 1.75rem;
}

.legal-card li {
    margin-bottom: 0.6rem;
    line-height: 1.8;
}

.legal-card a {
    color: var(--accent-dark);
}

.legal-card a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE HERO
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-content { order: 1; }
    .hero-image { order: 2; max-width: 550px; margin: 0 auto; }
    .hero-text { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-review { left: 50%; transform: translateX(-50%); bottom: -40px; }
    .hero-experience { right: 10px; top: 10px; }
    .barber-pole { display: none; }
}

@media (max-width: 640px) {
    .hero { padding: 120px 0 80px; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .trust-bar-inner { gap: 2rem; }
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: var(--shadow-gold);
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.5);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-dark { background: var(--primary); }
.bg-cream { background: var(--cream); }
