/* ============================================================
   Mr. Cutts — assets/css/main.css
   Premium Barbershop Theme Styles
   ============================================================ */

/* === 1. CSS CUSTOM PROPERTIES === */
:root {
    /* Colors — defaults; overridden by Customizer */
    --color-primary:  #1a1a1a;
    --color-accent:   #c9a96e;
    --color-accent-hover: #b8935a;
    --color-text:     #333333;
    --color-bg:       #ffffff;
    --color-section:  #f8f6f3;
    --color-dark:     #111111;
    --color-dark-2:   #1e1e1e;
    --color-light:    #ffffff;
    --color-muted:    #888888;
    --color-border:   #e8e4e0;

    /* Typography */
    --font-heading:   'Playfair Display', Georgia, serif;
    --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad:    5rem 0;
    --container-max:  1200px;
    --container-pad:  1.5rem;

    /* Borders */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
    --shadow-md:  0 8px 24px rgba(0,0,0,.12);
    --shadow-lg:  0 20px 50px rgba(0,0,0,.18);

    /* Transitions */
    --trans-fast:   0.15s ease;
    --trans-normal: 0.3s ease;
    --trans-slow:   0.5s ease;

    /* Header */
    --header-height: 72px;
}

/* === 2. LAYOUT === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: var(--section-pad);
    position: relative;
}
.section--light { background: var(--color-section); }
.section--dark  { background: var(--color-primary); color: var(--color-light); }
.section--white { background: var(--color-bg); }

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.section-badge--light {
    color: var(--color-accent);
    background: rgba(201,169,110,0.15);
    border-color: rgba(201,169,110,0.4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.section-title--light { color: var(--color-light); }

.section-desc {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 600px;
    line-height: 1.7;
}
.section-header--center .section-desc { margin: 0 auto; }
.section-desc--light { color: rgba(255,255,255,0.7); }

/* === 3. TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
}
p { margin-bottom: 1rem; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

/* === 4. BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--trans-normal);
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn--sm  { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn--md  { padding: 0.75rem 1.6rem; font-size: 0.95rem; }
.btn--lg  { padding: 0.9rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
    background: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}

.btn--accent {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    font-weight: 700;
}
.btn--accent:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-light);
}

.btn--ghost {
    background: transparent;
    color: var(--color-light);
    border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-light);
}

/* === 5. STARS === */
.stars { letter-spacing: 2px; }
.star--full  { color: #f5c842; }
.star--half  { color: #f5c842; opacity: 0.6; }
.star--empty { color: #cccccc; }

/* === 6. BADGES === */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
}
.badge--open   { background: rgba(34,197,94,0.15); color: #16a34a; border: 1px solid rgba(34,197,94,0.3); }
.badge--closed { background: rgba(239,68,68,0.15);  color: #dc2626; border: 1px solid rgba(239,68,68,0.3); }
.badge--lg { font-size: 0.9rem; padding: 0.5rem 1.2rem; }

.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}
.badge-dot--pulse {
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}

/* Live badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #16a34a;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    font-weight: 600;
    margin-top: 0.5rem;
}
.live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #16a34a;
    animation: pulse-dot 2s infinite;
}

/* === 7. HEADER === */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--trans-normal);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.site-logo-wrap { flex-shrink: 0; }
.site-logo, .site-logo a { display: block; line-height: 1; }
.site-logo img, .site-logo svg { height: 52px; width: auto; display: block; }
.footer-logo img, .footer-logo svg { height: 44px; filter: brightness(0) invert(1); }

/* Navigation */
.primary-nav { display: flex; align-items: center; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-menu li a {
    display: block;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: color var(--trans-fast), background var(--trans-fast);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--color-accent);
    background: rgba(201,169,110,0.08);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--trans-normal);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-phone { font-size: 0.8rem !important; }

/* === 8. HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17,17,17,0.88) 0%,
        rgba(17,17,17,0.65) 50%,
        rgba(17,17,17,0.75) 100%
    );
}

/* Decorative stripes */
.hero-stripe {
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    opacity: 0.08;
    animation: stripe-slide 8s linear infinite;
}
.hero-stripe--1 { left: 15%; background: linear-gradient(to bottom, transparent, var(--color-accent), transparent); }
.hero-stripe--2 { right: 20%; background: linear-gradient(to bottom, transparent, white, transparent); animation-delay: -4s; animation-direction: reverse; }
@keyframes stripe-slide {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 3rem var(--container-pad);
}

.hero-badge { margin-bottom: 1.5rem; }

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-headline span { color: var(--color-accent); }

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.hero-rating .stars { font-size: 1.1rem; }
.rating-value { font-weight: 700; color: var(--color-accent); font-size: 1.1rem; }
.rating-count { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 1.25rem 2rem;
    max-width: 680px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
    padding: 0 1.75rem;
    flex: 1;
    min-width: 100px;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    animation: scroll-bounce 2s ease-in-out infinite;
    transition: color var(--trans-fast);
    z-index: 2;
}
.scroll-indicator:hover { color: var(--color-accent); }
@keyframes scroll-bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* === 9. ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual { position: relative; }
.about-image-wrap {
    aspect-ratio: unset;
    max-width: 480px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem 1rem 1rem;
}

.about-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding-bottom: 16px;
    padding-right: 14px;
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Decorative gold offset frame behind the photo */
.about-photo-frame {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-accent);
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}

/* "10+ Years" badge pinned to bottom-left */
.about-photo-badge {
    position: absolute;
    bottom: -4px;
    left: -16px;
    z-index: 3;
    background: var(--color-primary);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 110px;
}
.about-photo-badge__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}
.about-photo-badge__text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
    white-space: nowrap;
}

/* Floating cards */
.about-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    z-index: 10;
}
.about-card--rating {
    top: -20px; right: -20px;
    text-align: center;
}
.about-card__stars { font-size: 1rem; color: #f5c842; letter-spacing: 2px; }
.about-card__label { font-size: 0.75rem; font-weight: 600; color: var(--color-muted); margin-top: 2px; }
.about-card--location {
    bottom: -20px; left: -20px;
    display: flex; align-items: center; gap: 0.5rem;
}

/* Highlights */
.about-text { margin: 1.5rem 0; }
.about-highlights { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0; }
.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.highlight:hover { border-color: var(--color-accent); box-shadow: 0 4px 16px rgba(201,169,110,0.12); }
.highlight__icon { font-size: 1.5rem; flex-shrink: 0; }
.highlight strong { display: block; font-weight: 600; font-size: 0.95rem; color: var(--color-primary); }
.highlight span   { font-size: 0.85rem; color: var(--color-muted); }

/* Barber pole decoration */
.barber-pole {
    position: absolute;
    top: 50%; right: -28px;
    transform: translateY(-50%);
    width: 14px; height: 120px;
    border-radius: 7px;
    background: var(--color-border);
    overflow: hidden;
}
.barber-pole__stripe {
    position: absolute;
    width: 100%; height: 30px;
    animation: barber-scroll 3s linear infinite;
}
.barber-pole__stripe--1 { background: #dc2626; top: 0; }
.barber-pole__stripe--2 { background: white;   top: 30px; }
.barber-pole__stripe--3 { background: #1e40af; top: 60px; }
@keyframes barber-scroll {
    from { transform: translateY(0); }
    to   { transform: translateY(90px); }
}

/* === 10. SERVICES SECTION === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-card {
    background: var(--color-dark-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    position: relative;
    transition: transform var(--trans-normal), border-color var(--trans-normal), box-shadow var(--trans-normal);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans-normal);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,169,110,0.3);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--popular {
    border-color: rgba(201,169,110,0.4);
    background: linear-gradient(145deg, #222 0%, #1a1a1a 100%);
}
.service-card--popular::before { transform: scaleX(1); }

.service-card__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.service-card__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.6rem;
}

.service-card__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    margin-top: auto;
}

.service-card__price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-accent);
}
.price-suffix {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    margin-left: 2px;
}

.service-card__book {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: gap var(--trans-fast);
}
.service-card__book:hover { gap: 0.6rem; }

.services-footer {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.services-footer p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }

/* === 11. GALLERY SECTION === */
.gallery-masonry {
    columns: 3;
    column-gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery-item--featured { break-inside: avoid; }

.gallery-item__btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--trans-slow);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--trans-normal);
}

.gallery-item__btn:hover .gallery-item__img { transform: scale(1.06); }
.gallery-item__btn:hover .gallery-item__overlay { opacity: 1; }

/* Placeholder gallery */
.gallery-placeholder__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.gallery-placeholder__item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.gallery-placeholder__icon { font-size: 2.5rem; opacity: 0.5; }
.gallery-placeholder__label { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.gallery-placeholder__note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}
.gallery-placeholder__note a { color: var(--color-accent); }

.section-meta { margin-top: 0.5rem; }
.gallery-footer { text-align: center; margin-top: 2rem; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}
.lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
}
.lightbox__img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    box-shadow: var(--shadow-lg);
}
.lightbox__close {
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    color: white;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--trans-fast);
    z-index: 2;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 48px; height: 48px;
    font-size: 1.8rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--trans-fast);
}
.lightbox__arrow:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav .lightbox__arrow:first-child { left: -60px; }
.lightbox__nav .lightbox__arrow:last-child  { right: -60px; }

/* === 12. TESTIMONIALS SECTION === */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}
.rating-summary__score {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}
.rating-summary__details { display: flex; flex-direction: column; gap: 0.4rem; }
.rating-summary__details .stars { font-size: 1.3rem; }
.rating-summary__count { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* Carousel */
.testimonials-carousel { overflow: hidden; margin: 0 -0.75rem; }
.testimonials-track {
    display: flex;
    transition: transform var(--trans-slow);
    gap: 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: calc(33.333% - 1.5rem);
    margin: 0 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color var(--trans-normal), box-shadow var(--trans-normal);
}
.testimonial-card:hover {
    border-color: rgba(201,169,110,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testimonial-avatar-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.testimonial-avatar-initials {
    width: 100%; height: 100%;
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

.testimonial-card__meta { flex: 1; min-width: 0; }
.testimonial-card__name {
    display: block;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.testimonial-card__time { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.testimonial-card__source { margin-left: auto; flex-shrink: 0; }

.testimonial-card__stars .stars { font-size: 0.95rem; }

.testimonial-card__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    flex: 1;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0;
    quotes: "\201C" "\201D";
}
.testimonial-card__text::before { content: open-quote; color: var(--color-accent); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-right: 4px; }

/* Carousel controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}
.testimonials-arrow {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--trans-fast), border-color var(--trans-fast);
    line-height: 1;
}
.testimonials-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.testimonials-dots { display: flex; gap: 0.5rem; }
.testimonials-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: background var(--trans-fast), transform var(--trans-fast);
}
.testimonials-dot--active {
    background: var(--color-accent);
    transform: scale(1.4);
}

.testimonials-cta { text-align: center; margin-top: 2.5rem; }

/* === 13. HOURS SECTION === */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hours-status { margin: 1rem 0 1.5rem; }

.hours-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    transition: background var(--trans-fast);
}
.hours-item:last-child { border-bottom: none; }
.hours-item--today {
    background: rgba(201,169,110,0.08);
    border-left: 3px solid var(--color-accent);
}
.hours-day { display: flex; align-items: center; gap: 0.6rem; color: var(--color-text); }
.hours-day strong { color: var(--color-primary); }
.today-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(201,169,110,0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
}
.hours-time { font-weight: 600; color: var(--color-primary); }
.hours-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Location panel */
.hours-map { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.5rem; border: 1px solid var(--color-border); }
.location-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.location-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-section);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}
.location-info__icon { flex-shrink: 0; margin-top: 2px; }
.location-info__item strong { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); margin-bottom: 0.25rem; }
.location-info__item p { font-size: 0.9rem; color: var(--color-text); margin: 0; }
.location-info__item a { color: var(--color-accent); font-weight: 500; }

/* === 14. CONTACT SECTION === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: border-color var(--trans-normal), transform var(--trans-fast);
}
.contact-card--clickable { cursor: pointer; text-decoration: none; color: inherit; }
.contact-card--clickable:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-2px); }
.contact-card--social { background: rgba(24,119,242,0.1); border-color: rgba(24,119,242,0.2); }
.contact-card__icon { flex-shrink: 0; margin-top: 2px; }
.contact-card h3 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin: 0 0 0.15rem; }
.contact-card p:last-child { margin: 0; }
.contact-card__link { font-size: 0.82rem; color: var(--color-accent); font-weight: 600; }
.contact-open-status { margin-top: 0.5rem; }

/* Contact form */
.contact-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
    -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: #1e1e1e; color: white; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-align: center; margin: 0; }

.form-success {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: var(--radius-md);
    color: #bbf7d0;
}
.form-success svg { flex-shrink: 0; color: #4ade80; margin-top: 2px; }
.form-success strong { display: block; font-size: 1rem; margin-bottom: 0.3rem; }

.form-error {
    padding: 0.85rem 1.25rem;
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: var(--radius-sm);
    color: #fca5a5;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* === 15. FOOTER === */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.8); }

.footer-map { border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-main { padding: 4rem 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand {}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin: 1.25rem 0; line-height: 1.6; max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
}
.footer-social a:hover { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); }

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}
.footer-list li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.footer-list a { color: rgba(255,255,255,0.6); transition: color var(--trans-fast); }
.footer-list a:hover { color: var(--color-accent); }

.footer-hours .hours-time { color: var(--color-accent); font-weight: 600; display: block; }
.footer-links li { display: block; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-rating a { color: rgba(255,255,255,0.4); transition: color var(--trans-fast); }
.footer-rating a:hover { color: var(--color-accent); }

/* === 16. ANIMATIONS === */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"]  { transform: translateX(30px); }
[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* === 17. RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual  { order: -1; max-width: 400px; margin: 0 auto; }
    .hours-grid    { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid  { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    .testimonial-card { flex: 0 0 calc(50% - 1.5rem); min-width: calc(50% - 1.5rem); }
    .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
    :root { --section-pad: 3.5rem 0; --header-height: 64px; }

    .hamburger { display: flex; }
    .header-actions .header-phone { display: none; }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0;
        background: white;
        border-bottom: 1px solid var(--color-border);
        padding: 1rem;
        transform: translateY(-110%);
        transition: transform var(--trans-normal);
        box-shadow: var(--shadow-lg);
    }
    .primary-nav.open { transform: translateY(0); }
    .nav-menu { flex-direction: column; align-items: stretch; gap: 0.25rem; }
    .nav-menu li a { text-align: center; padding: 0.85rem; }

    .hero-stats { gap: 0; }
    .hero-stat  { padding: 0 1rem; }

    .services-grid { grid-template-columns: 1fr 1fr; }
    .gallery-masonry { columns: 2; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .contact-form-wrap { padding: 1.75rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    :root { --section-pad: 2.5rem 0; }

    .hero-stats       { flex-wrap: wrap; }
    .hero-stat-divider { display: none; }
    .hero-stat         { flex: 0 0 50%; }

    .services-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 1; }

    .testimonial-card { flex: 0 0 calc(100% - 1.5rem); min-width: calc(100% - 1.5rem); }

    .lightbox__nav .lightbox__arrow:first-child { left: -48px; }
    .lightbox__nav .lightbox__arrow:last-child  { right: -48px; }
}

/* === 18. UTILITIES & ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
::selection { background: var(--color-accent); color: var(--color-primary); }

/* Smooth scroll offset for fixed header */
[id] { scroll-margin-top: calc(var(--header-height) + 1rem); }

/* === GALLERY STATIC NOTE === */
.gallery-static-note {
    text-align: center;
    margin-top: 1.5rem;
}
.gallery-static-note .live-badge {
    font-size: 0.78rem;
}

/* Gallery item label on overlay */
.gallery-item__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-top: 0.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Fixed height on gallery images so object-position crops work */
.gallery-item__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item--featured .gallery-item__img {
    height: 420px;
}

/* =============================================
   WHATSAPP FLOATING ACTION BUTTON
============================================= */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9990;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    animation: wa-enter 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
    animation-delay: 1.5s;
    opacity: 0;
}
@keyframes wa-enter {
    from { opacity:0; transform:scale(0.5) translateY(20px); }
    to   { opacity:1; transform:scale(1) translateY(0); }
}
.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.whatsapp-fab__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Pulsing ring */
.whatsapp-fab__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2.5s ease-out infinite;
    animation-delay: 2s;
    z-index: 0;
}
@keyframes wa-pulse {
    0%   { transform:scale(1); opacity:0.6; }
    70%  { transform:scale(1.6); opacity:0; }
    100% { transform:scale(1.6); opacity:0; }
}

/* Tooltip that appears on hover */
.whatsapp-fab__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-50%) translateX(6px);
}
.whatsapp-fab__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a1a;
    border-right: 0;
}
.whatsapp-fab:hover .whatsapp-fab__tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 520px) {
    .whatsapp-fab {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }
    .whatsapp-fab__icon { width: 26px; height: 26px; }
    .whatsapp-fab__tooltip { display: none; }
}
