*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #0c0a08;
    color: #f5f0e8;
    overflow-x: hidden
}

:root {
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-pale: #f5e9c8;
    --dark: #0c0a08;
    --dark2: #161210;
    --dark3: #1f1a14;
    --cream: #f5f0e8;
    --muted: #a89880;
}

img,
video {
    max-width: 100%;
    display: block
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #161210
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.65); /* toned down so button stands out */
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    animation: pulse-bar 2s ease-in-out infinite;
    box-shadow: 0 -4px 30px rgba(220, 38, 38, .5);
}

/* styled inner button */
.btn-sticky {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(135deg, #d33e3e, #ffbc00);
    color: #0c0a08;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: .04em;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    transition: transform .3s, box-shadow .3s;
    border: none;
    cursor: pointer;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .35);
}

@media(min-width:768px) {
    .sticky-cta {
        left: auto;
        right: 2rem;
        bottom: 2rem;
        border-radius: 50px;
        padding: 1.1rem 2.2rem;
        width: auto;
        box-shadow: 0 8px 40px rgba(220, 38, 38, .6)
    }
}
.sticky-cta a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    letter-spacing: .03em
}

.sticky-cta .phone-icon {
    font-size: 1.3rem;
    color: #ffd700;
    animation: ring 1.5s ease-in-out infinite
}

@media(min-width:768px) {
    .sticky-cta {
        left: auto;
        right: 2rem;
        bottom: 2rem;
        border-radius: 50px;
        padding: 1.1rem 2.2rem;
        width: auto;
        box-shadow: 0 8px 40px rgba(220, 38, 38, .6)
    }
}

@keyframes pulse-bar {

    0%,
    100% {
        box-shadow: 0 -4px 30px rgba(220, 38, 38, .5)
    }

    50% {
        box-shadow: 0 -4px 50px rgba(220, 38, 38, .9), 0 0 0 6px rgba(220, 38, 38, .15)
    }
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0)
    }

    10%,
    30% {
        transform: rotate(-15deg)
    }

    20%,
    40% {
        transform: rotate(15deg)
    }

    50% {
        transform: rotate(0)
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* fallback background image in case video can't play */
    background: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
}

/* video element should cover entire hero area */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-bg {
    /* kept only for legacy reference, no longer used in markup */
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgb(12 10 8) 0%, rgb(12 10 8 / 64%) 50%, rgb(0 0 0) 100%);;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    max-width: 820px
}

.hero-eyebrow {
    display: inline-block;
    letter-spacing: .35em;
    font-size: .72rem;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: .35rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp .8s .2s forwards;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.01em;
    color: #fff;
    opacity: 0;
    animation: fadeUp .9s .4s forwards;
}

.hero h1 em {
    color: var(--gold-light);
    font-style: italic
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, .78);
    margin: 1.5rem auto;
    max-width: 520px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp .9s .6s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeUp .9s .8s forwards
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0c0a08;
    padding: 1.1rem 2.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    letter-spacing: .04em;
    transition: all .3s;
    box-shadow: 0 8px 30px rgba(201, 168, 76, .4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(201, 168, 76, .55)
}

.hero-note {
    margin-top: 1.5rem;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    opacity: 0;
    animation: fadeUp .9s 1s forwards
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite
}

.scroll-hint span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: auto
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(90deg, #1a1208, #201a0e, #1a1208);
    border-top: 1px solid rgba(201, 168, 76, .2);
    border-bottom: 1px solid rgba(201, 168, 76, .2);
    padding: 2.2rem 1rem;
}

.stats-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
}

@media(min-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.stat-item {
    text-align: center;
    position: relative
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(201, 168, 76, .2);
    display: none;
}

@media(min-width:768px) {
    .stat-item:not(:last-child)::after {
        display: block
    }
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .3rem
}

/* ===== SECTION COMMONS ===== */
.section {
    padding: 6rem 1.5rem
}

.section-tag {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
}

.section-title em {
    color: var(--gold-light);
    font-style: italic
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: .8rem 0 1.5rem
}

/* ===== PROBLEM ===== */
.problem {
    background: #111009
}

.problem-inner {
    max-width: 1100px;
    margin: auto;
    text-align: center
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem
}

.prob-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all .3s;
}

.prob-card:hover {
    background: rgba(201, 168, 76, .05);
    border-color: rgba(201, 168, 76, .4);
    transform: translateY(-5px)
}

.prob-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem
}

.prob-card p {
    color: var(--muted);
    font-size: .9rem;
    margin-top: .4rem;
    line-height: 1.6
}

/* ===== TEAM / STAFF ===== */
.staff {
    background: linear-gradient(135deg, #0e0c09 0%, #1a1408 50%, #0e0c09 100%)
}

.staff-inner {
    max-width: 1100px;
    margin: auto
}

.staff-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem
}

@media(min-width:768px) {
    .staff-layout {
        grid-template-columns: 1.1fr 1fr
    }
}

.staff-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6)
}

.staff-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center
}

.staff-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 10, 8, .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 50px;
    padding: .6rem 1.4rem;
    white-space: nowrap;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

.staff-content .section-title {
    margin-bottom: .6rem
}

.staff-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}

.staff-feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem
}

.feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201, 168, 76, .2), rgba(201, 168, 76, .05));
    border: 1px solid rgba(201, 168, 76, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: .95rem;
}

.feat-text h5 {
    font-weight: 600;
    font-size: .95rem;
    color: var(--cream)
}

.feat-text p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: .15rem
}

/* ===== SERVICES ===== */
.services {
    background: #0c0a08
}

.services-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 1.5rem;
    margin-top: 3.5rem
}

.svc-card {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s;
    text-align: left;
}

.svc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, .3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.svc-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform .5s
}

.svc-card:hover .svc-img {
    transform: scale(1.05)
}

.svc-body {
    padding: 1.5rem
}

.svc-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream)
}

.svc-body p {
    font-size: .85rem;
    color: var(--muted);
    margin: .4rem 0 1rem;
    line-height: 1.6
}

.svc-price {
    color: var(--gold-light);
    font-weight: 700;
    font-size: .95rem
}

/* ===== GOLD CTA BAR ===== */
.cta-bar {
    display: inline-flex; /* keeps icon/text centred */
    align-items: center;
    justify-content: center; /* ensure horizontal centering */
    gap: .8rem;
    width: 100%;
    background: linear-gradient(90deg, #c9a84c, #e8c96a, #c9a84c);
    padding: 3rem 1.5rem;
    text-align: center;
    color: #0c0a08;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    transition: opacity .2s;
}

.cta-bar:hover {
    opacity: .8;
}

/* ===== BENEFITS ===== */
.benefits {
    background: #111009
}

.benefits-inner {
    max-width: 1100px;
    margin: auto
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem
}

@media(min-width:768px) {
    .benefits-layout {
        grid-template-columns: 1fr 1fr
    }
}

.benefits-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5)
}

.benefits-img img {
    width: 100%;
    height: 440px;
    object-fit: cover
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.benefit-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start
}

.b-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .3);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
}

.b-text h4 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--cream)
}

.b-text p {
    font-size: .85rem;
    color: var(--muted);
    margin-top: .25rem;
    line-height: 1.6
}

/* ===== REVIEWS ===== */
.reviews {
    background: #0c0a08
}

.reviews-inner {
    max-width: 1100px;
    margin: auto;
    text-align: center
}

.stars {
    display: flex;
    gap: .3rem;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin: .8rem 0
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    margin-top: 3rem
}

.reviews-grid img{
    border-radius: 10px;
}

.rev-card {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    overflow: hidden;
}

.rev-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top
}

/* ===== HYGIENE ===== */
.hygiene {
    background: #0d1810
}

.hygiene-inner {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media(min-width:768px) {
    .hygiene-inner {
        grid-template-columns: 1fr auto
    }
}

.hygiene-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.hygiene-list li {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .95rem;
    color: var(--cream)
}

.hygiene-list li i {
    color: #4ade80;
    font-size: 1.1rem
}

.hygiene-badge {
    background: rgba(74, 222, 128, .08);
    border: 2px solid rgba(74, 222, 128, .2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    flex-shrink: 0;
}

.hygiene-badge i {
    font-size: 3.5rem;
    color: #4ade80;
    display: block;
    margin-bottom: 1rem
}

.hygiene-badge p {
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #4ade80
}

/* ===== OFFER ===== */
.offer {
    background: radial-gradient(ellipse at 50% 0%, #1e1508 0%, #0c0a08 70%);
    border-top: 1px solid rgba(201, 168, 76, .15);
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.offer-inner {
    max-width: 700px;
    margin: auto;
    text-align: center
}

.offer-badge {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: .4rem 1.2rem;
    border-radius: 50px;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.offer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1
}

.offer-sub {
    font-size: 1.1rem;
    color: var(--muted);
    margin: 1.2rem 0 2rem;
    line-height: 1.6
}

.timer-box {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 16px;
    padding: 1rem 1.8rem;
    margin-bottom: 2.5rem;
}

.t-seg {
    text-align: center
}

.t-seg span:first-child {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1
}

.t-seg span:last-child {
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted)
}

.t-colon {
    font-size: 2rem;
    color: var(--gold);
    align-self: center;
    padding-bottom: .3rem
}

.offer-slots {
    font-size: .85rem;
    color: var(--muted);
    margin-top: 1.5rem
}

.offer-slots strong {
    color: #ef4444
}

/* ===== FAQ ===== */
.faq {
    background: #111009
}

.faq-inner {
    max-width: 780px;
    margin: auto
}

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.faq-item {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--cream);
    padding: 1.3rem 1.5rem;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--gold-light)
}

.faq-q i {
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .3s
}

.faq-q.open i {
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7
}

.faq-a.open {
    max-height: 300px
}

.faq-a-inner {
    padding: .2rem 1.5rem 1.3rem
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 50%, var(--gold-light) 100%);
    padding: 6rem 1.5rem;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #0c0a08;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(12, 10, 8, .7);
    font-size: 1.1rem;
    margin-bottom: 3rem
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: #0c0a08;
    color: var(--gold-light);
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    letter-spacing: .04em;
    transition: all .3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.btn-dark:hover {
    background: #fff;
    color: #0c0a08;
    transform: translateY(-3px)
}

.final-meta {
    margin-top: 2rem;
    font-size: .82rem;
    color: rgba(12, 10, 8, .55);
    letter-spacing: .08em
}

/* ===== GALLERY ===== */
.gallery {
    background: #111009;
    padding: 6rem 1.5rem
}

.gallery-inner {
    max-width: 1200px;
    margin: auto
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem
}

/* Masonry-style grid */
.gallery-grid {
    columns: 2;
    column-gap: 12px;
}

@media(min-width:640px) {
    .gallery-grid {
        columns: 3;
        column-gap: 14px
    }
}

@media(min-width:1024px) {
    .gallery-grid {
        columns: 4;
        column-gap: 16px
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

@media(min-width:640px) {
    .gallery-item {
        margin-bottom: 14px
    }
}

@media(min-width:1024px) {
    .gallery-item {
        margin-bottom: 16px
    }
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .6)
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease, filter .3s ease;
    filter: brightness(.92);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1)
}

/* Gold overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, .15), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.gallery-item:hover::after {
    opacity: 1
}

/* Zoom icon */
.gallery-item .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, .7);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform .3s ease;
    z-index: 2;
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1)
}

/* ===== LIGHTBOX ===== */
#lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 4, 3, .97);
    align-items: center;
    justify-content: center;
}

#lb-overlay.active {
    display: flex
}

.lb-wrap {
    position: relative;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-wrap img {
    max-width: 88vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 76, .25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .8);
    transition: opacity .25s ease;
    user-select: none;
    -webkit-user-select: none;
}

.lb-wrap img.fading {
    opacity: 0
}

/* Counter */
.lb-counter {
    position: absolute;
    bottom: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

/* Close */
.lb-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 100000;
    transition: background .2s, transform .2s;
}

.lb-close:hover {
    background: rgba(220, 38, 38, .7);
    transform: rotate(90deg)
}

/* Arrows */
.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 100000;
    transition: background .2s, transform .2s;
    -webkit-tap-highlight-color: transparent;
}

.lb-arrow:hover {
    background: rgba(201, 168, 76, .2)
}

.lb-arrow.prev {
    left: .8rem
}

.lb-arrow.next {
    right: .8rem
}

.lb-arrow.prev:hover {
    transform: translateY(-50%) translateX(-3px)
}

.lb-arrow.next:hover {
    transform: translateY(-50%) translateX(3px)
}

/* Swipe hint on mobile */
.lb-swipe-hint {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .35);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    pointer-events: none;
}

@media(min-width:768px) {
    .lb-swipe-hint {
        display: none
    }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

/* ===== DARK CTA BAR 2 ===== */
.dark-cta {
    background: #0c0a08;
    padding: 5rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, .1)
}

.dark-cta p {
    letter-spacing: .25em;
    font-size: .72rem;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    border: 2px solid var(--gold);
    color: var(--cream);
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: #0c0a08
}