@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #07111f;
    --navy-2: #0b1628;
    --navy-3: #101f35;
    --gold: #d4af37;
    --gold-soft: #f8dc75;
    --white: #ffffff;
    --text: #edf2f7;
    --muted: #aab6c6;
    --muted-2: #7f8b9b;
    --border: rgba(212, 175, 55, 0.22);
    --border-strong: rgba(212, 175, 55, 0.48);
    --glass: rgba(255, 255, 255, 0.055);
    --glass-2: rgba(255, 255, 255, 0.085);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 18px 45px rgba(212, 175, 55, 0.27);
    --container: 1180px;
    --radius: 24px;
    --header-height: 88px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 34%),
        linear-gradient(180deg, #06101d 0%, #07111f 45%, #081525 100%);
    color: var(--text);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

/* REUSABLE */
.section {
    position: relative;
    padding: 96px 20px;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(92%, var(--container));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-kicker,
.luxury-kicker {
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

h1,
h2,
h3,
.brand span {
    font-family: 'Cinzel', serif;
}

h1 {
    font-size: clamp(2.45rem, 8vw, 6.7rem);
    line-height: 0.98;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.08;
    color: var(--white);
    text-transform: uppercase;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.2;
}

p {
    color: var(--muted);
    line-height: 1.8;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(212, 175, 55, 0.34);
}

.btn:focus-visible {
    outline: 3px solid rgba(248, 220, 117, 0.55);
    outline-offset: 4px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.11);
}

/* HEADER */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(5, 13, 25, 0.82);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.site-header.scrolled {
    background: rgba(5, 13, 25, 0.96);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

/* Desktop header layout */
.navbar {
    max-width: var(--container);
    min-height: 96px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 240px 1fr 190px;
    align-items: center;
    gap: 24px;
}

/* Logo wrapper */
.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: start;
    width: 240px;
    height: 96px;
    overflow: visible;
}

.brand-logo-only {
    gap: 0;
}

/* BIG readable logo */
.brand-logo {
    width: 220px;
    height: 82px;
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
    padding: 0;
    background: transparent;
    filter:
        drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 14px rgba(212, 175, 55, 0.16));
}

/* Keep old span hidden if it still exists accidentally */
.brand span {
    display: none;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-soft);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    justify-self: end;
    min-width: 150px;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 132px 20px 88px;
    text-align: center;
    isolation: isolate;
}

.parallax-bg {
    position: absolute;
    inset: -8% 0;
    z-index: -3;
    background-image: url("images/hero-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0) scale(1.08);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 50% 32%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72) 68%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.22), rgba(7, 17, 31, 0.92)),
        linear-gradient(90deg, rgba(7, 17, 31, 0.75), rgba(7, 17, 31, 0.18), rgba(7, 17, 31, 0.78));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
    opacity: 0.22;
    pointer-events: none;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 24px;
    color: #f5f7fb;
    text-shadow: 0 20px 65px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    width: min(760px, 100%);
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

.hero-stats div {
    padding: 18px 12px;
    border-right: 1px solid rgba(212, 175, 55, 0.16);
}

.hero-stats div:last-child {
    border-right: 0;
}

.hero-stats strong {
    display: block;
    color: var(--gold-soft);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
}

.hero-stats span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: 30px;
    height: 50px;
    transform: translateX(-50%);
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 999px;
    opacity: 0.85;
}

.scroll-indicator span {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 5px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--gold);
    animation: scrollDot 1.7s infinite;
}

@keyframes scrollDot {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 18px);
        opacity: 0;
    }
}

/* SERVICES */
.services-section {
    overflow: hidden;
}

.services-accordion-shell {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

/* Featured service */
.featured-service {
    position: relative;
    display: grid;
    gap: 22px;
    padding: 26px 18px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.featured-service::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(248, 220, 117, 0.12), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 38%);
    pointer-events: none;
}

.featured-service > * {
    position: relative;
}

.service-badge-main {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-service h3 {
    max-width: 680px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: clamp(1.55rem, 5vw, 2.7rem);
}

.featured-service p {
    max-width: 680px;
}

.featured-price-list {
    display: grid;
    gap: 10px;
}

.featured-price-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 15px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.featured-price-list span {
    color: var(--muted);
    font-weight: 750;
}

.featured-price-list strong {
    color: var(--gold-soft);
    font-size: 1.05rem;
}

.service-main-btn {
    width: 100%;
}

/* Accordion */
.service-accordion-list {
    display: grid;
    gap: 12px;
}

.service-accordion {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.028));
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.service-accordion.is-open {
    border-color: rgba(212, 175, 55, 0.48);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
}

.service-accordion-trigger {
    width: 100%;
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 0;
    background: transparent;
    color: var(--white);
    text-align: left;
    cursor: pointer;
}

.service-index {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-soft);
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 0.92rem;
}

.service-title-group {
    display: grid;
    gap: 3px;
}

.service-title-group strong {
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    line-height: 1.25;
}

.service-title-group small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.service-plus {
    position: relative;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.service-plus::before,
.service-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--gold-soft);
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease;
}

.service-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.service-accordion.is-open .service-plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.service-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease;
}

.service-accordion.is-open .service-accordion-panel {
    max-height: 900px;
}

.service-mini-list {
    display: grid;
    gap: 9px;
    padding: 0 14px 16px;
}

.service-mini-list a {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 13px 13px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-mini-list a:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.42);
    background: rgba(212, 175, 55, 0.075);
}

.service-mini-list span {
    color: var(--text);
    font-weight: 750;
    line-height: 1.35;
}

.service-mini-list strong {
    color: var(--gold-soft);
    white-space: nowrap;
}

.service-mini-list em {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(248, 220, 117, 0.12);
    color: var(--gold-soft);
    border: 1px solid rgba(212, 175, 55, 0.24);
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 900;
}

/* Products */
.products-showcase {
    position: relative;
    padding: 26px 18px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.13), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.products-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(248, 220, 117, 0.1), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.045), transparent 38%);
    pointer-events: none;
}

.products-showcase > * {
    position: relative;
}

.products-heading {
    margin-bottom: 20px;
}

.products-heading h3 {
    color: var(--white);
    font-size: clamp(1.45rem, 4.8vw, 2.35rem);
    margin-bottom: 10px;
}

.products-drawer-grid {
    display: grid;
    gap: 12px;
}

.product-drawer {
    border: 1px solid rgba(212, 175, 55, 0.17);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
    overflow: hidden;
    transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.product-drawer:hover {
    border-color: rgba(212, 175, 55, 0.38);
}

.product-drawer.is-open {
    border-color: rgba(212, 175, 55, 0.52);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.035));
}

.product-drawer-trigger {
    width: 100%;
    min-height: 104px;
    display: grid;
    grid-template-columns: 78px 1fr auto 34px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 0;
    background: transparent;
    color: var(--white);
    text-align: left;
    cursor: pointer;
}

.product-drawer-trigger img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.04);
}

.product-summary {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.product-summary strong {
    color: var(--white);
    font-size: 0.98rem;
    line-height: 1.25;
}

.product-summary small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.product-price {
    display: grid;
    justify-items: end;
    gap: 2px;
    white-space: nowrap;
}

.product-price del {
    color: var(--muted-2);
    font-size: 0.75rem;
    font-weight: 700;
}

.product-price b {
    color: var(--gold-soft);
    font-size: 0.98rem;
}

.product-plus {
    position: relative;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.product-plus::before,
.product-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 2px;
    background: var(--gold-soft);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.product-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.product-drawer.is-open .product-plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.product-drawer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease;
}

.product-drawer.is-open .product-drawer-panel {
    max-height: 380px;
}

.product-drawer-panel p {
    padding: 0 14px 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-drawer-panel ul {
    display: grid;
    gap: 8px;
    padding: 0 14px 14px;
}

.product-drawer-panel li {
    color: rgba(237, 242, 247, 0.86);
    font-size: 0.88rem;
    line-height: 1.45;
}

.product-drawer-panel li::before {
    content: "✦";
    color: var(--gold-soft);
    margin-right: 8px;
}

.product-drawer-panel a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin: 0 14px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    font-weight: 900;
    font-size: 0.88rem;
}

@media (max-width: 430px) {
    .product-drawer-trigger {
        grid-template-columns: 70px 1fr 30px;
    }

    .product-drawer-trigger img {
        width: 70px;
        height: 70px;
    }

    .product-price {
        grid-column: 2 / 3;
        justify-items: start;
    }

    .product-plus {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }
}

/* Service responsive */
@media (min-width: 700px) {
    .featured-service {
        padding: 34px;
    }

    .featured-price-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-main-btn {
        width: fit-content;
    }

    .service-mini-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-mini-list a {
        grid-template-columns: 1fr auto;
    }

    .service-mini-list em {
        grid-column: auto;
        width: auto;
        min-width: 58px;
    }

    /* Product drawer tablet layout */
    .products-drawer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-drawer-trigger {
        grid-template-columns: 86px 1fr auto 34px;
    }

    .product-drawer-trigger img {
        width: 86px;
        height: 86px;
    }
}

@media (min-width: 980px) {
    .featured-service {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        padding: 42px;
    }

    .featured-service .service-main-btn {
        grid-column: 1 / -1;
    }

    .service-accordion-trigger {
        padding: 20px 22px;
    }

    .service-title-group strong {
        font-size: 1.22rem;
    }

    .service-mini-list {
        padding: 0 20px 20px;
    }

    /* Product drawer desktop layout */
    .products-drawer-grid {
        grid-template-columns: repeat(5, 1fr);
        align-items: start;
    }

    .product-drawer {
        position: relative;
    }

    .product-drawer-trigger {
        min-height: auto;
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 10px;
        padding: 14px;
    }

    .product-drawer-trigger img {
        width: 100%;
        height: 180px;
    }

    .product-price {
        justify-items: start;
    }

    .product-plus {
        position: absolute;
        top: 14px;
        right: 14px;
        background: rgba(7, 17, 31, 0.72);
    }

    .product-drawer-panel p {
        font-size: 0.86rem;
    }

    .product-drawer-panel li {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .service-accordion-trigger {
        grid-template-columns: auto 1fr auto;
        padding: 14px 12px;
        gap: 10px;
    }

    .service-index {
        width: 38px;
        height: 38px;
        font-size: 0.82rem;
    }

    .service-title-group strong {
        font-size: 0.98rem;
    }

    .service-title-group small {
        font-size: 0.76rem;
    }

    .service-plus {
        width: 32px;
        height: 32px;
    }

    /* Product drawer mobile layout */
    .product-drawer-trigger {
        grid-template-columns: 70px 1fr 30px;
    }

    .product-drawer-trigger img {
        width: 70px;
        height: 70px;
    }

    .product-price {
        grid-column: 2 / 3;
        justify-items: start;
    }

    .product-plus {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }
}
/* GALLERY */
.gallery-section {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018), transparent);
}

.gallery-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.gallery-item {
    position: relative;
    min-height: 260px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.04);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: saturate(0.9) contrast(1.04);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.5));
    opacity: 0.55;
    transition: opacity 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.05) contrast(1.1);
}

.gallery-item:hover::after {
    opacity: 0.2;
}


/* MEET THE BARBERS — PREMIUM MOBILE-FIRST REDESIGN */
.bb-barbers {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 8%, rgba(212, 175, 55, 0.08), transparent 34%),
        radial-gradient(circle at 10% 42%, rgba(255, 255, 255, 0.035), transparent 32%),
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.018) 50%, transparent 100%);
}

.bb-barbers-shell {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.bb-section-intro {
    max-width: 820px;
    margin: 0 auto 36px;
    text-align: center;
}

.bb-kicker {
    color: var(--gold-soft);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bb-section-intro h2 {
    color: var(--white);
    font-size: clamp(2rem, 9vw, 4.2rem);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bb-section-intro p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* =========================
   FOUNDER FEATURE
========================= */
.bb-founder {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 42%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.bb-founder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.18;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.bb-founder > * {
    position: relative;
}

/* Founder photo */
.bb-founder-photo-wrap {
    position: relative;
    padding: 14px 14px 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.14), transparent 45%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.12), rgba(7, 17, 31, 0.42));
}

.bb-founder-photo-stage {
    width: 100%;
    height: clamp(330px, 92vw, 520px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 22px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 55%),
        linear-gradient(180deg, rgba(212, 175, 55, 0.075), rgba(5, 13, 25, 0.74));
    overflow: hidden;
}

.bb-founder-photo-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    padding: 8px;
    filter: saturate(1.04) contrast(1.04);
}

/* Founder floating badge */
.bb-founder-floating-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 14px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    background: rgba(5, 13, 25, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.bb-founder-floating-card span {
    color: var(--gold-soft);
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.bb-founder-floating-card strong {
    color: var(--white);
    font-size: 0.68rem;
    text-align: right;
}

/* Founder content */
.bb-founder-content {
    padding: 24px 18px 26px;
}

.bb-gold-pill,
.bb-specialty {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    font-size: 0.64rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bb-founder-content h3 {
    max-width: 100%;
    color: var(--white);
    font-size: clamp(1.65rem, 8vw, 3.6rem);
    line-height: 1.04;
    margin-bottom: 14px;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.bb-founder-lead {
    margin-bottom: 22px;
    color: rgba(237, 242, 247, 0.86);
    font-size: 0.95rem;
}

.bb-founder-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.bb-founder-metrics div {
    padding: 14px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.bb-founder-metrics strong {
    display: block;
    color: var(--gold-soft);
    font-family: 'Cinzel', serif;
    font-size: 1.08rem;
    line-height: 1.1;
}

.bb-founder-metrics span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 5px;
}

.bb-skill-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.bb-skill-strip span,
.bb-profile-tags span {
    display: inline-flex;
    padding: 8px 10px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.09);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.2;
}

.bb-founder-story {
    position: relative;
    padding-left: 16px;
    margin-bottom: 24px;
    border-left: 2px solid rgba(212, 175, 55, 0.48);
}

.bb-founder-story p {
    color: rgba(237, 242, 247, 0.82);
    font-size: 0.92rem;
}

.bb-founder-actions {
    display: grid;
    gap: 14px;
    align-items: center;
}

.bb-founder-actions a,
.bb-profile-drawer a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    font-weight: 950;
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.bb-signature {
    color: rgba(248, 220, 117, 0.78);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-align: center;
}

/* =========================
   TEAM LINEUP
========================= */
.bb-team-heading {
    margin: 52px 0 22px;
}

.bb-team-heading h3 {
    color: var(--white);
    font-size: clamp(1.55rem, 6vw, 2.8rem);
    text-transform: uppercase;
}

.bb-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}

.bb-profile-card {
    position: relative;
    display: grid;
    align-self: start;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.bb-profile-image-area {
    position: relative;
    padding: 14px 14px 0;
    background:
        radial-gradient(circle at 50% 16%, rgba(212, 175, 55, 0.14), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(7, 17, 31, 0.32));
}

.bb-profile-image-stage {
    width: 100%;
    height: clamp(330px, 92vw, 480px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 22px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 54%),
        linear-gradient(180deg, rgba(212, 175, 55, 0.07), rgba(5, 13, 25, 0.76));
    overflow: hidden;
}

.bb-profile-image-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    padding: 8px;
    filter: saturate(1.04) contrast(1.04);
}

.bb-profile-badge {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 14px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 999px;
    background: rgba(5, 13, 25, 0.82);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

.bb-profile-badge span {
    color: var(--gold-soft);
    font-size: 0.64rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bb-profile-badge strong {
    color: var(--white);
    font-size: 0.68rem;
    text-align: right;
}

.bb-profile-body {
    padding: 24px 18px;
}

.bb-profile-body h3 {
    color: var(--white);
    font-size: clamp(1.32rem, 6vw, 2rem);
    line-height: 1.12;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.bb-profile-body p {
    margin-bottom: 18px;
    color: rgba(237, 242, 247, 0.82);
    font-size: 0.92rem;
}

.bb-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.bb-profile-toggle {
    position: relative;
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 15px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-soft);
    font-weight: 950;
    cursor: pointer;
    overflow: hidden;
}

.bb-profile-toggle::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 58px;
    bottom: 10px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.bb-profile-toggle:hover::before {
    transform: scaleX(1);
}

.bb-profile-toggle span {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.09);
}

.bb-profile-toggle span::before,
.bb-profile-toggle span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: var(--gold-soft);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.bb-profile-toggle span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.bb-profile-card.bb-open .bb-profile-toggle span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.bb-profile-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease;
}

.bb-profile-card.bb-open .bb-profile-drawer {
    max-height: 900px;
}

.bb-profile-drawer-inner {
    padding-top: 18px;
}

.bb-profile-drawer h4 {
    color: var(--gold-soft);
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.bb-profile-drawer ul {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.bb-profile-drawer li {
    color: rgba(237, 242, 247, 0.84);
    font-size: 0.88rem;
    line-height: 1.45;
}

.bb-profile-drawer li::before {
    content: "✦";
    color: var(--gold-soft);
    margin-right: 8px;
}

.bb-profile-drawer a {
    width: 100%;
    margin-top: 4px;
}

/* =========================
   RESPONSIVE FIXES
========================= */

/* Small mobile */
@media (max-width: 390px) {
    .bb-founder-photo-stage,
    .bb-profile-image-stage {
        height: 315px;
    }

    .bb-founder-floating-card,
    .bb-profile-badge {
        left: 22px;
        right: 22px;
        display: grid;
        border-radius: 16px;
        text-align: center;
    }

    .bb-founder-floating-card strong,
    .bb-profile-badge strong {
        text-align: center;
    }

    .bb-founder-content,
    .bb-profile-body {
        padding: 22px 16px;
    }
}

/* Tablet */
@media (min-width: 760px) {
    .bb-founder-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .bb-founder-actions {
        grid-template-columns: auto 1fr;
    }

    .bb-signature {
        text-align: left;
    }

    .bb-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .bb-profile-card {
        align-self: start;
        height: auto;
    }

    .bb-profile-image-stage {
        height: 430px;
    }
}

/* Desktop */
@media (min-width: 1100px) {
    .bb-founder {
        grid-template-columns: 0.88fr 1.12fr;
        align-items: center;
    }

    .bb-founder-photo-wrap {
        height: 100%;
        display: grid;
        align-items: center;
        border-right: 1px solid rgba(212, 175, 55, 0.16);
    }

    .bb-founder-photo-stage {
        height: 560px;
    }

    .bb-founder-content {
        padding: 52px;
    }

    .bb-profile-image-stage {
        height: 440px;
    }

    .bb-team-grid {
        gap: 26px;
        align-items: start;
    }

    .bb-profile-card {
        align-self: start;
    }
}
/* WHY */
.why-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.why-card {
    padding: 28px;
}

.why-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.24);
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* HOURS */
.hours-section {
    padding-top: 70px;
}

.hours-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 38px 24px;
    text-align: center;
}

.hours-card h2 {
    margin-bottom: 32px;
}

.hours-list {
    display: grid;
    gap: 12px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.hours-list div:last-child {
    border-bottom: 0;
}

.hours-list span {
    color: var(--muted);
}

.hours-list strong {
    color: var(--gold-soft);
}

/* LOCATION */
.location-section {
    overflow: hidden;
}

.location-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 28px;
    align-items: center;
}

.location-content {
    position: relative;
    padding: 30px 22px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.11), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
    box-shadow: var(--shadow);
}

.location-content h2 {
    margin-bottom: 18px;
}

.location-content p {
    margin-bottom: 10px;
}

.location-address {
    color: var(--white);
    font-weight: 800;
    font-size: 1.05rem;
}

.location-actions {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.location-actions .btn {
    width: 100%;
}

.map-card {
    position: relative;
    min-height: 360px;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.google-map {
    width: 100%;
    min-height: 336px;
    height: 100%;
    border: 0;
    border-radius: 18px;
    filter: grayscale(18%) contrast(1.05) brightness(0.92);
}

@media (min-width: 760px) {
    .location-grid {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .location-content {
        padding: 38px;
    }

    .location-actions {
        display: flex;
        flex-wrap: wrap;
    }

    .location-actions .btn {
        width: auto;
    }

    .map-card {
        min-height: 430px;
    }

    .google-map {
        min-height: 406px;
    }
}

@media (max-width: 480px) {
    .location-content {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .map-card {
        min-height: 340px;
        padding: 10px;
        border-radius: 22px;
    }

    .google-map {
        min-height: 318px;
        border-radius: 16px;
    }
}

/* FINAL CTA */
.final-cta {
    position: relative;
    min-height: 540px;
    padding: 110px 20px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0.92)),
        url("images/gallery-8.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.04);
}

.final-cta-content {
    position: relative;
    max-width: 760px;
    z-index: 2;
}

.final-cta h2 {
    margin-bottom: 18px;
}

.final-cta p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
}

/* FOOTER */
.site-footer {
    max-width: var(--container);
    margin: 0 auto;
    padding: 40px 20px 110px;
    display: grid;
    gap: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.site-footer strong {
    color: var(--gold-soft);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

.site-footer p {
    font-size: 0.94rem;
}

.credit {
    color: rgba(212, 175, 55, 0.72);
}

/* MOBILE WHATSAPP */
.mobile-whatsapp {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1200;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.36);
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.18, 0.8, 0.28, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

/* TABLET */
@media (min-width: 700px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .about-grid,
    .location-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .site-footer {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

/* DESKTOP */
@media (min-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item {
        min-height: 300px;
    }

    .gallery-item img {
        min-height: 300px;
    }

    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mobile-whatsapp {
        display: none;
    }
}

/* MOBILE */
@media (max-width: 820px) {
   :root {
    --header-height: 96px;
}

.navbar {
    min-height: 96px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
    gap: 12px;
}

.brand {
    width: 230px;
    height: 96px;
    justify-content: flex-start;
}

.brand-logo {
    width: 220px;
    height: 82px;
    object-fit: contain;
    object-position: left center;
}

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 16px;
        right: 16px;
        display: grid;
        gap: 6px;
        padding: 18px;
        border: 1px solid rgba(212, 175, 55, 0.24);
        border-radius: 22px;
        background: rgba(5, 13, 25, 0.96);
        box-shadow: var(--shadow);
        transform: translateY(-16px);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        display: block;
        padding: 14px 12px;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        min-height: 100svh;
        padding: 112px 18px 76px;
    }

    .hero-buttons {
        display: grid;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .hero-stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    }

    .hero-stats div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 76px 18px;
    }

    .service-card {
        min-height: auto;
    }

    .hours-list div {
        display: grid;
        text-align: left;
    }

    .location-actions {
        display: grid;
    }

    .location-actions .btn {
        width: 100%;
    }

    .final-cta-bg {
        background-attachment: scroll;
    }
}

/* REDUCED MOTION ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .parallax-bg {
        transform: none !important;
    }
}

/* =========================================================
   FINAL HEADER LOGO FIX — RAJ CUT CREATION
   Only affects header logo sizing and header spacing
========================================================= */

/* Desktop header */
.site-header .navbar {
    max-width: 1280px;
    min-height: 104px;
    padding: 0 32px;
    grid-template-columns: 300px 1fr 190px;
    gap: 28px;
}

/* Logo clickable area */
.site-header .brand {
    width: 300px;
    height: 104px;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

/* Actual logo image */
.site-header .brand-logo {
    width: 280px;
    height: 92px;
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
    padding: 0;
    background: transparent;
    filter:
        drop-shadow(0 10px 22px rgba(0, 0, 0, 0.42))
        drop-shadow(0 0 16px rgba(212, 175, 55, 0.18));
}

/* Hide text if old span still exists */
.site-header .brand span {
    display: none !important;
}

/* Keep nav centered */
.site-header .nav-links {
    justify-content: center;
}

/* Keep Book Now aligned */
.site-header .nav-btn {
    justify-self: end;
    min-width: 150px;
}

/* Tablet */
@media (max-width: 980px) {
    .site-header .navbar {
        min-height: 100px;
        grid-template-columns: 260px 1fr 170px;
        padding: 0 24px;
    }

    .site-header .brand {
        width: 260px;
        min-width: 260px;
        height: 100px;
    }

    .site-header .brand-logo {
        width: 245px;
        height: 88px;
    }
}

/* Mobile */
@media (max-width: 820px) {
    :root {
        --header-height: 104px;
    }

    .site-header .navbar {
        min-height: 104px;
        grid-template-columns: 1fr auto;
        padding: 0 16px;
        gap: 12px;
    }

    .site-header .brand {
        width: 280px;
        min-width: 0;
        height: 104px;
        justify-content: flex-start;
    }

    .site-header .brand-logo {
        width: 270px;
        height: 92px;
        object-fit: contain;
        object-position: left center;
    }

    .site-header .menu-toggle {
        width: 50px;
        height: 50px;
        flex: 0 0 auto;
    }

    .site-header .nav-links {
        top: 104px;
    }
}

/* Small phones */
@media (max-width: 430px) {
    .site-header .navbar {
        min-height: 98px;
        padding: 0 12px;
    }

    .site-header .brand {
        width: 245px;
        height: 98px;
    }

    .site-header .brand-logo {
        width: 235px;
        height: 86px;
    }

    .site-header .menu-toggle {
        width: 48px;
        height: 48px;
    }

    .site-header .nav-links {
        top: 98px;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .site-header .brand {
        width: 215px;
    }

    .site-header .brand-logo {
        width: 210px;
        height: 82px;
    }
}
/* =========================================================
   FINAL PRODUCT / SERVICE TEXT HIERARCHY FIX
   Only improves readability and color contrast
========================================================= */

/* Product title - strongest */
.product-summary strong {
    color: #ffffff !important;
    font-weight: 950 !important;
    letter-spacing: 0.01em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

/* Product short subtitle - brighter but below title */
.product-summary small {
    color: rgba(237, 242, 247, 0.82) !important;
    font-weight: 650;
}

/* Product drawer paragraph */
.product-drawer-panel p {
    color: rgba(237, 242, 247, 0.86) !important;
    font-weight: 550;
}

/* Product drawer bullet points */
.product-drawer-panel li {
    color: rgba(246, 248, 252, 0.9) !important;
    font-weight: 650;
}

/* Gold bullet star */
.product-drawer-panel li::before {
    color: #f8dc75 !important;
    font-weight: 950;
}

/* Old product price */
.product-price del {
    color: rgba(170, 182, 198, 0.62) !important;
    font-weight: 850;
}

/* Current product price */
.product-price b {
    color: #f8dc75 !important;
    font-weight: 950;
    text-shadow: 0 8px 22px rgba(212, 175, 55, 0.22);
}

/* Service row titles */
.service-booking-row span,
.package-booking-row span {
    color: rgba(255, 255, 255, 0.94) !important;
    font-weight: 850 !important;
}

/* Service/package prices */
.service-booking-row strong,
.package-booking-row strong {
    color: #f8dc75 !important;
    font-weight: 950 !important;
}

/* Accordion category titles */
.service-title-group strong {
    color: #ffffff !important;
    font-weight: 950 !important;
}

/* Accordion category descriptions */
.service-title-group small {
    color: rgba(237, 242, 247, 0.78) !important;
    font-weight: 600;
}

/* =========================================================
   MEET THE BARBERS — FINAL TEAM CARD ACTION + BADGE FIX
   Only affects team barber cards
========================================================= */

.bb-profile-image-area {
    position: relative;
}

/* Fix the ugly stretched experience strip */
.bb-profile-badge {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 16px !important;
    width: auto !important;
    min-width: 168px;
    max-width: calc(100% - 44px);
    transform: translateX(-50%) !important;
    display: inline-grid !important;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    padding: 9px 14px !important;
    border: 1px solid rgba(248, 220, 117, 0.55) !important;
    border-radius: 999px !important;
    background:
        linear-gradient(135deg, rgba(5, 13, 25, 0.92), rgba(15, 29, 48, 0.92)) !important;
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: center !important;
    z-index: 4;
}

.bb-profile-badge strong {
    color: #f8dc75 !important;
    font-family: 'Cinzel', serif;
    font-size: 1.08rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap;
}

.bb-profile-badge span {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.64rem !important;
    font-weight: 950 !important;
    line-height: 1.05 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* New action area: Choose Barber first, View Profile second */
.bb-profile-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

/* Primary action */
.bb-profile-actions .bb-barber-select-btn {
    width: 100% !important;
    min-height: 50px !important;
    margin: 0 !important;
    border: 1px solid rgba(248, 220, 117, 0.72) !important;
    border-radius: 999px !important;
    background:
        linear-gradient(135deg, #ffe68a 0%, #d4af37 58%, #b5831f 100%) !important;
    color: #07111f !important;
    font-size: 0.86rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.03em;
    box-shadow:
        0 16px 38px rgba(212, 175, 55, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.38) !important;
}

/* Selected state should still look clear */
.bb-profile-actions .bb-barber-select-btn.is-selected {
    border-color: rgba(248, 220, 117, 0.5) !important;
    background: rgba(212, 175, 55, 0.12) !important;
    color: #f8dc75 !important;
    box-shadow: none !important;
}

/* Secondary detail button */
.bb-profile-actions .bb-profile-toggle {
    width: 100%;
    min-height: 48px;
    display: grid;
    grid-template-columns: 1fr 34px;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: #f8dc75;
    font-size: 0.84rem;
    font-weight: 950;
    letter-spacing: 0.02em;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
}

.bb-profile-actions .bb-profile-toggle span {
    position: relative;
    width: 34px;
    height: 34px;
    justify-self: end;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.09);
}

/* Cleaner spacing because drawer no longer has button */
.bb-profile-drawer-inner {
    padding-top: 16px;
}

.bb-profile-drawer ul:last-child {
    margin-bottom: 0;
}

@media (min-width: 520px) {
    .bb-profile-actions {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .bb-profile-actions .bb-profile-toggle {
        min-height: 50px;
    }
}

@media (max-width: 390px) {
    .bb-profile-badge {
        bottom: 14px !important;
        min-width: 155px;
        padding: 8px 12px !important;
        grid-template-columns: auto auto;
    }

    .bb-profile-badge strong {
        font-size: 1rem !important;
    }

    .bb-profile-badge span {
        font-size: 0.58rem !important;
    }

    .bb-profile-actions {
        gap: 9px;
    }
}

/* =========================================================
   LOCATION SECTION — TWO BRANCH COMPACT PREMIUM UPDATE
   Keeps current map size, adds branch cards
========================================================= */

.location-grid-branches {
    align-items: stretch;
}

.branch-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.branch-mini-card {
    position: relative;
    padding: 16px 15px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 36%),
        rgba(255, 255, 255, 0.045);
    overflow: hidden;
}

.branch-mini-card.is-main {
    border-color: rgba(248, 220, 117, 0.42);
}

.branch-mini-card span {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-soft);
    font-size: 0.64rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.branch-mini-card h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.08rem;
    text-transform: uppercase;
}

.branch-mini-card .location-address {
    margin-bottom: 12px;
    color: rgba(237, 242, 247, 0.9);
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.55;
}

.branch-map-link {
    display: inline-flex;
    color: var(--gold-soft);
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: none;
}

.branch-map-link:hover {
    color: var(--white);
}

.branch-map-main {
    min-height: 360px;
}

.branch-map-main .google-map {
    min-height: 336px;
}

/* Decorative logo pin overlay only */
.map-brand-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -74%);
    border: 1px solid rgba(248, 220, 117, 0.6);
    border-radius: 50%;
    background:
        radial-gradient(circle at top, rgba(248, 220, 117, 0.22), rgba(5, 13, 25, 0.96));
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.42),
        0 0 0 7px rgba(212, 175, 55, 0.12);
    pointer-events: none;
}

.map-brand-pin::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 17px;
    height: 17px;
    transform: translateX(-50%) rotate(45deg);
    border-right: 1px solid rgba(248, 220, 117, 0.6);
    border-bottom: 1px solid rgba(248, 220, 117, 0.6);
    background: rgba(5, 13, 25, 0.96);
}

.map-brand-pin img {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.45));
}

@media (max-width: 480px) {
    .branch-mini-card {
        padding: 14px;
        border-radius: 16px;
    }

    .branch-mini-card h3 {
        font-size: 1rem;
    }

    .branch-mini-card .location-address {
        font-size: 0.88rem;
    }

    .map-brand-pin {
        width: 52px;
        height: 52px;
    }

    .map-brand-pin img {
        width: 40px;
        height: 32px;
    }
}

/* =========================================================
   LOCATION MAP — HIDE MY MAPS TOP BAR + REMOVE FAKE CENTER PIN
========================================================= */

.branch-map-main {
    position: relative;
    min-height: 360px;
    padding: 0 !important;
    overflow: hidden;
}

.branch-map-main .google-map {
    position: absolute;
    left: 0;
    top: -64px;
    width: 100%;
    height: calc(100% + 64px);
    min-height: 424px;
    border: 0;
}

/* Hide old fake overlay pin if it still exists */
.map-brand-pin {
    display: none !important;
}

@media (max-width: 480px) {
    .branch-map-main {
        min-height: 330px;
    }

    .branch-map-main .google-map {
        top: -64px;
        height: calc(100% + 64px);
        min-height: 394px;
    }
}

/* =========================================================
   LOCATION MAP — SHOW MAP ONLY, HIDE GOOGLE MY MAPS HEADER
========================================================= */

.branch-map-main {
    position: relative;
    min-height: 340px;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 24px;
}

.my-map-crop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

/* Push iframe upward to hide My Maps title/account header */
.my-map-crop .google-map {
    position: absolute;
    left: 0;
    top: -64px;
    width: 100%;
    height: calc(100% + 64px);
    min-height: 404px;
    border: 0;
}

/* Remove our old fake center logo pin */
.map-brand-pin,
.map-logo-pin {
    display: none !important;
}

@media (max-width: 480px) {
    .branch-map-main {
        min-height: 315px;
    }

    .my-map-crop .google-map {
        top: -64px;
        height: calc(100% + 64px);
        min-height: 379px;
    }
}

/* =========================================================
   SELLING-DAY MOBILE PERFORMANCE STABILITY PATCH
   Purpose: keep premium look, reduce mobile scroll lag.
   Safe: mobile/touch only, no layout redesign.
========================================================= */

@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    html {
        scroll-behavior: auto;
    }

    body {
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    /* Stop expensive mobile parallax repainting even if JS sets inline transform */
    .parallax-bg {
        transform: scale(1.06) !important;
        will-change: auto !important;
        backface-visibility: hidden;
    }

    /* Fixed background is expensive on phones */
    .final-cta-bg {
        background-attachment: scroll !important;
        transform: none !important;
    }

    /* Disable blur-heavy glass rendering on mobile */
    .site-header,
    .hero-stats,
    .bb-founder-floating-card,
    .bb-profile-badge,
    .booking-overlay,
    .booking-drawer,
    .booking-drawer-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Keep depth but reduce GPU-heavy shadow stacks */
    :root {
        --shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
        --shadow-gold: 0 10px 24px rgba(212, 175, 55, 0.22);
    }

    .featured-service,
    .products-showcase,
    .gallery-item,
    .bb-founder,
    .bb-profile-card,
    .why-card,
    .hours-card,
    .location-content,
    .map-card,
    .branch-mini-card,
    .service-accordion,
    .product-drawer,
    .booking-drawer,
    .booking-section {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28) !important;
    }

    .btn,
    .booking-floating-btn,
    .booking-send-btn,
    .booking-add-btn,
    .bb-profile-actions .bb-barber-select-btn,
    .bb-founder-actions a,
    .bb-profile-drawer a {
        box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18) !important;
    }

    /* Phones do not need hover lift animations */
    .btn:hover,
    .booking-add-btn:hover,
    .product-booking-btn:hover,
    .gallery-item:hover img,
    .service-mini-list a:hover,
    .product-drawer:hover,
    .booking-link:hover {
        transform: none !important;
    }

    .gallery-item img {
        transform: none !important;
        transition: none !important;
        filter: saturate(0.96) contrast(1.02);
    }

    .gallery-item:hover::after {
        opacity: 0.55;
    }

    /* Make reveal instant on mobile so scroll does not stutter */
    .reveal,
    .reveal.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .delay-1,
    .delay-2,
    .delay-3,
    .delay-4 {
        transition-delay: 0s !important;
    }

    /* Reduce transition cost but keep essential open/close animations */
    .service-accordion,
    .product-drawer,
    .bb-profile-card,
    .btn,
    .booking-add-btn,
    .product-drawer-trigger,
    .service-accordion-trigger,
    .bb-profile-toggle {
        transition-duration: 0.16s !important;
    }

    .product-drawer-panel,
    .service-accordion-panel,
    .bb-profile-drawer {
        transition-duration: 0.22s !important;
    }

    /* Map iframe is heavy; keep it visible but stop it stealing scroll gestures */
    .branch-map-main .google-map,
    .map-card .google-map {
        pointer-events: none;
        filter: grayscale(10%) contrast(1.02) brightness(0.94) !important;
    }

    .map-card {
        contain: layout paint;
    }
}

@media (max-width: 480px) {
    .section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .hero::after {
        opacity: 0.12;
    }

    .scroll-indicator {
        display: none;
    }

    .products-showcase,
    .featured-service,
    .bb-founder,
    .bb-profile-card,
    .location-content,
    .map-card {
        border-radius: 22px;
    }
}

