:root {
    --primary: #d4af61;
    --primary-dark: #b8944f;
    --dark: #111111;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text: #ffffff;
    --text-secondary: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --navbar-height: 180px;
    --banner-height: 36px;
}

section[id], header[id] {
    scroll-margin-top: calc(var(--navbar-height) + var(--banner-height));
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #1f1f1f 0%, #252525 40%, #1c1c1c 100%);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(212,175,97,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.25;
    z-index: -1;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

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

.section {
     padding: 40px 0;
}

#pricing ::selection,
.price-item ::selection{
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 3px;
    color: var(--text);
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(212, 175, 97, 0.2);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
}

/* =========================
LOGO - UPGRADED
========================= */

.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0,0,0,0.6)) drop-shadow(0 2px 16px rgba(212, 175, 97, 0.55));
    mix-blend-mode: screen;
    transition: var(--transition);
}

.logo:hover img {
    filter: drop-shadow(0 0 16px rgba(0,0,0,0.75)) drop-shadow(0 2px 24px rgba(212, 175, 97, 0.72));
}

/* =========================
NAVBAR - REDESIGNED
========================= */

/* =========================
   PORTFOLIO NOTICE BANNER
   ========================= */

.portfolio-notice {
    background: linear-gradient(90deg, #d4af61 0%, #c59d5f 100%);
    color: #111;
    padding: 8px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.portfolio-notice .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-label {
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-text {
    font-size: 0.8rem;
}

/* Adjust navbar position for sticky banner */
.navbar {
     position: fixed;
     top: 36px;
     left: 0;
     width: 100%;
     z-index: 1000;
     transition: var(--transition);
     background: rgba(0, 0, 0, 0.12);
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
     border-bottom: none;
     padding: 10px 0;
 }

/* When scrolled, navbar moves under banner */
.nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 40px;
     position: relative;
 }

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 97, 0.18);
    animation: navbarGlow 0.3s ease;
}

@keyframes navbarGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 97, 0); }
    50% { box-shadow: 0 0 20px 0 rgba(212, 175, 97, 0.2); }
    100% { box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.3); }
}

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

/* =========================
LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

/* =========================
NAV LINKS
========================= */

.nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.93rem;
    letter-spacing: 0.5px;
    opacity: 1;
    transition: var(--transition);
    position: relative;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    border-radius: 2px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 6px rgba(212, 175, 97, 0.5);
}

.nav-link:hover::before {
    height: 14px;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(212, 175, 97, 0.08);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(212, 175, 97, 0.1);
}

.nav-link.active::before {
    height: 16px;
}

.nav-link.active::after {
    display: none;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

/* =========================
HAMBURGER
========================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(212, 175, 97, 0.1);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    border-radius: 1px;
    transition: var(--transition);
}

/* hamburger animation state */
.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================
HERO
========================= */

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 50% 35%, rgba(212, 175, 97, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../uvodnyobrazok.png') center/cover no-repeat;
    z-index: 0;
    animation: heroFloat 30s infinite alternate ease-in-out;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.35) 0%,
        rgba(17, 17, 17, 0.65) 100%
    );
    z-index: 1;
}

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

/* Zvýraznené slovo v nadpise */
.text-accent {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: var(--primary);
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 97, 0.4);
    color: #fff;
    padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
    border-radius: 50px;
    font-size: clamp(0.75rem, 2.2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(6px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 9vw, 5rem);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.05;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #f0f0f0;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 97, 0.3); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 97, 0.5); }
}

.hero-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #e0e0e0;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    font-weight: 500;
}

.hero-hours-badge i {
    color: var(--primary);
}

.hero-content {
    text-align: center;
    width: min(90%, 1200px);
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
    position: relative;
    animation: contentFadeIn 1.5s ease-out;
    margin: 0 auto;
}

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

/* Mobile Hero adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        margin-bottom: 25px;
        max-width: 90%;
    }
    
    .hero-badge {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
        padding: 6px 14px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .hero-actions {
        gap: 10px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
}

/* =========================
BUTTONS - UPGRADED
========================= */

.btn-primary {
    background: linear-gradient(135deg, #c59d5f 0%, #d4af61 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    box-shadow: 0 0 20px rgba(197,157,95,0.35);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8944f 0%, #c59d5f 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 97, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

/* =========================
SERVICES
========================= */

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

.service-card {
    background: var(--dark-gray);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 97, 0.2), 0 0 20px rgba(212, 175, 97, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.price {
     font-size: 1.5rem;
     color: var(--primary);
     font-weight: 600;
 }

/* =========================
 PRICE LIST
 ========================= */

.price-list {
    max-width: 900px;
    margin: 0 auto;
}

.price-category {
    margin-bottom: 30px;
}

.price-category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light-gray);
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-item,
.price-item *{
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-user-modify: read-only !important;
}

.price-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-gray);
    padding: 12px 18px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

.price-item:focus,
.price-item:active{
    outline: none !important;
    background: var(--dark-gray) !important;
    border-color: var(--light-gray) !important;
    transform: none !important;
}

.price-item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 97, 0.1), transparent);
    transition: width 0.3s ease;
}

.price-item:hover{
    border-color: var(--primary);
    transform: translateX(3px);
}

.price-item:hover::before{
    width: 100%;
}

.price-item-info {
    flex: 1;
    user-select: none;
    -webkit-user-select: none;
}

.price-item-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--text);
    text-transform: uppercase;
}

.price-item-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.price-item-meta {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.price-item-cost {
     font-size: clamp(1.1rem, 3vw, 1.5rem);
     color: var(--primary);
     font-weight: 700;
     white-space: nowrap;
     margin-left: 15px;
     user-select: none;
     -webkit-user-select: none;
 }

/* =========================
BARBERS
========================= */

.barbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.barber-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: 0.3s ease;
}

.barber-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212, 175, 97, 0.15);
}

.barber-card img {
    width: 100%;
    height: clamp(250px, 40vw, 350px);
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(20%);
}

.barber-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.barber-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.95) 40%);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s ease;
}

.barber-card:hover .barber-overlay {
    opacity: 1;
    transform: translateY(0);
}

.barber-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 5px;
    text-transform: uppercase;
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.barber-overlay p {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 5px;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.barber-overlay span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

/* =========================
   GALLERY
   ========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 3vw, 20px);
    grid-auto-rows: 280px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 175, 97, 0.2);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--primary);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 1;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* =========================
  ABOUT  (O nás)
  ========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.about-stat h4 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    letter-spacing: 1px;
}

.about-stat span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0 15px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-feature span {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-stats {
        justify-content: center;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* =========================
  SCROLL REVEAL  (replaces AOS)
  ========================= */

.reveal-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
  REDUCED MOTION
  ========================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-init {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero {
        animation: none !important;
    }

    .scroll-indicator,
    .scroll-indicator span::before {
        animation: none !important;
    }
}

/* =========================
  REVIEWS
  ========================= */

.reviews-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
    border: 1px solid #444;
    background: transparent;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #c59d5f;
    border-color: #c59d5f;
    color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 20px);
    margin-bottom: 30px;
}

/* Expanded state: scrollable container */
.reviews-grid.expanded {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

.reviews-grid.expanded::-webkit-scrollbar {
    width: 8px;
}

.reviews-grid.expanded::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 4px;
}

.reviews-grid.expanded::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.reviews-grid.expanded::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Mobile: horizontal scroll for reviews */
@media (max-width: 768px) {
    .reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--dark);
        -webkit-overflow-scrolling: touch;
    }
    
    .reviews-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .reviews-grid::-webkit-scrollbar-track {
        background: var(--dark);
    }
    
    .reviews-grid::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }
    
    .reviews-grid .review-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .reviews-grid.expanded {
        flex-wrap: wrap;
        overflow-x: visible;
        overflow-y: auto;
        max-height: 60vh;
    }
    
    .reviews-grid.expanded .review-card {
        flex: 1 1 280px;
    }
}

.review-card {
    background: var(--dark-gray);
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card.hidden-review {
    display: none !important;
}

.review-card::before {
    content: "\"";
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(212, 175, 97, 0.15);
}

.review-card p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 15px;
    font-style: italic;
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.review-author strong {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
}

.review-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Toggle button */
.toggle-reviews {
    display: block;
    margin: 30px auto 0;
    padding: 14px 32px;
    border: none;
    background: #c59d5f;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.toggle-reviews:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

/* Reviews actions container */
.reviews-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Google review button */
.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #4285f4;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border: none;
    font-size: 0.95rem;
}

.btn-google-review:hover {
    background: #3367d6;
    transform: translateY(-2px);
    color: white;
}

.btn-google-review img {
    height: 16px;
    filter: brightness(0) invert(1);
}

/* =========================
 BOOKING SECTION
 ========================= */

.booking-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(30px, 6vw, 60px);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.map-container {
    border: 1px solid var(--light-gray);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: clamp(250px, 50vh, 400px);
    border: none;
}

/* =========================
CONTACT FORM
========================= */

.contact-form-container {
    background: linear-gradient(145deg, var(--dark-gray) 0%, var(--light-gray) 100%);
    padding: 60px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px;
    background: var(--dark);
    border: 2px solid transparent;
    border-radius: 6px;
    color: var(--text);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* =========================
FOOTER
========================= */

.footer {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--dark) 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(30px, 5vw, 60px);
    margin-bottom: 50px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 97, 0.3));
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: var(--transition);
    padding-left: 15px;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

@media (max-width: 768px) {
    .footer-links {
        justify-content: center;
        text-align: center;
    }
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-social h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--dark);
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    color: var(--text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 97, 0.3);
}

.footer-cta {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--light-gray);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 97, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.footer-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--primary);
}

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

/* =========================
 BACK TO TOP
 ========================= */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

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

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

/* =========================
    COOKIE CONSENT
    ========================= */

/* =========================
LOADER
========================= */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 140px;
    animation: pulse 1.5s infinite ease-in-out;
}

/* =========================
ANIMATIONS
========================= */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

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

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

@keyframes heroFloat {
    0%, 100% {
        background-position: center;
    }
    50% {
        background-position: center 3%;
    }
}

/* =========================
   MEDIA QUERIES
   ========================= */

@media (max-width: 1024px) {
    .about-grid, .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-cta {
        padding: 30px 0;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }
    
    .barbers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: fixed;
        right: 16px;
        top: 36px;
        transform: none;
        z-index: 1003;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        gap: 4px;
        padding: 100px 24px 48px;
        transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
    }
    
    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        left: 0;
    }
    
    .nav-link {
        font-size: clamp(1rem, 4vw, 1.15rem);
        border-radius: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: center;
        display: block;
        transition: background 0.2s, color 0.2s;
        letter-spacing: 1.5px;
        padding: 16px 20px;
    }
    
    .nav-link.active::before {
        left: 10px;
    }
    
    .nav-link.active {
        font-weight: 600;
    }
    
    .logo img {
        height: clamp(70px, 10vw, 90px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        letter-spacing: clamp(1px, 3vw, 3px);
        margin-top: 20px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
        
        .section {
            padding: clamp(40px, 8vw, 65px) 0;
        }
        
        .section-title {
            font-size: clamp(1.8rem, 6vw, 2.2rem);
        }
        
.footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .reviews-filter {
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        
        .navbar {
            padding: 8px 0;
            background: rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(6px);
            border-bottom: none;
        }
        
        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.6);
            border-bottom: 1px solid rgba(212, 175, 97, 0.15);
        }
        
        .nav-container {
            height: auto;
            padding: 0 16px;
        }
        
        .hero-badge {
            font-size: clamp(0.75rem, 2.5vw, 0.85rem);
            padding: clamp(6px, 2vw, 8px) clamp(12px, 4vw, 16px);
        }
        
        .hero-hours-badge {
            font-size: clamp(0.75rem, 2.5vw, 0.85rem);
            padding: clamp(4px, 2vw, 6px) clamp(12px, 4vw, 16px);
        }
        
        .btn-primary {
            padding: clamp(10px, 3vw, 12px) clamp(18px, 5vw, 22px);
            font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        }
        
        .barber-card img {
            height: clamp(200px, 50vw, 280px);
        }
        
        .barber-card:last-child:nth-child(odd) {
            max-width: 250px;
            justify-self: center;
        }
    }

    /* =========================
     COOKIE CONSENT
     ========================= */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--primary);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-btn:hover {
    background: var(--primary-dark);
}

/* Mobile cookie consent */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
    }
}

/* Portfolio notice mobile */
@media (max-width: 768px) {
    .portfolio-notice {
        font-size: 0.7rem;
        padding: 4px 0;
    }
    
    .portfolio-label {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .portfolio-text {
        font-size: 0.65rem;
    }
    
    .navbar {
        top: 24px;
    }
    
    :root {
        --banner-height: 24px;
    }
}

/* Large screen centering for hero */
@media (min-width: 1400px) {
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(90%, 1200px);
        max-width: 800px;
        margin: 0;
        padding: 0 20px;
    }
}
