*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --onyx: #0A0A0F;
    --charcoal: #141418;
    --panel: #1C1C22;
    --gold: #C9922A;
    --gold-lt: #E8B84B;
    --champagne: #F0DEB4;
    --cream: #FAF7F2;
    --slate: #8A8A95;
    --white: #FFFFFF;
    --green: #22C55E;
    --r: 2px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--onyx);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

/* ──── SCROLLBAR ──── */
::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--charcoal)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px
}

/* ──── NAV ──── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 28px;
    background: rgba(10, 10, 15, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 146, 42, 0.15);
    transition: background .3s;
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px
}

.logo-mark {
    width: 50px;
    height: 50px;
    background: #a0711a00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 0 20px rgba(201, 146, 42, 0.3);
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    border-left: 1px solid rgba(201, 146, 42, 0.4);
    padding-left: 12px;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    color: rgba(240, 222, 180, .7);
    transition: .2s
}

.nav-links a:hover {
    color: var(--gold)
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), #a0711a);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 40px;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(201, 146, 42, 0.35);
    transition: all .2s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(201, 146, 42, 0.5) !important
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--champagne);
    border-radius: 2px;
    transition: .3s
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px 28px 32px;
    z-index: 199;
    border-bottom: 1px solid rgba(201, 146, 42, 0.15);
    flex-direction: column;
    gap: 20px;
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    font-size: 16px;
    color: rgba(240, 222, 180, .8);
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid rgba(201, 146, 42, 0.08)
}

/* ──── HERO ──── */
.hero {
    min-height: 100vh;
    background: var(--onyx);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

/* Ambient glow blobs */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 146, 42, .1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 146, 42, .07) 0%, transparent 70%);
    bottom: 100px;
    left: -80px;
    pointer-events: none;
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 28px 40px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    gap: 60px;
}

.hero-left {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold)
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-h1 strong {
    font-weight: 700;
    display: block
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold)
}

.hero-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--slate);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #a0711a);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(201, 146, 42, 0.4);
    transition: all .25s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 146, 42, 0.55)
}

.btn-ghost {
    background: transparent;
    color: var(--champagne);
    padding: 14px 32px;
    border-radius: 40px;
    border: 1px solid rgba(240, 222, 180, 0.25);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: .5px;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(240, 222, 180, .1);
}

.stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-lbl {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--slate);
    text-transform: uppercase;
    margin-top: 4px
}

/* Hero right — slider */
.hero-right {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.hero-slider-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 146, 42, 0.12);
    position: relative;
}

.hero-slide {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 15, .8) 0%, rgba(10, 10, 15, 0) 60%);
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(201, 146, 42, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 146, 42, 0.25);
    padding: 8px 18px;
    border-radius: 40px;
    color: var(--champagne);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;
}

/* Gold accent bar below hero */
.gold-bar {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
}

/* ──── SECTION COMMON ──── */
.section {
    padding: 100px 0
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold)
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.section-heading em {
    font-style: italic;
    color: var(--gold)
}

.section-sub {
    font-size: 15px;
    color: var(--slate);
    font-weight: 300;
    max-width: 540px;
    line-height: 1.75
}

/* ──── SERVICES ──── */
.services-section {
    background: var(--charcoal)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    border: 1px solid rgba(201, 146, 42, .1);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
}

.service-card {
    background: var(--panel);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background .2s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .3s;
}

.service-card:hover {
    background: #20202a
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 146, 42, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    transition: background .2s;
}

.service-card:hover .service-icon {
    background: rgba(201, 146, 42, .2)
}

.service-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white)
}

.service-desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.6
}

/* ──── PRODUCTS ──── */
.products-section {
    background: var(--onyx)
}

.product-swiper-wrap {
    margin-top: 56px;
    position: relative
}

.product-card {
    background: var(--panel);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 146, 42, .1);
}

.product-img-main {
    width: 100%;
    height: 240px;
    background: var(--charcoal);
    overflow: hidden;
    position: relative;
}

.product-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.product-card:hover .product-img-main img {
    transform: scale(1.04)
}

.product-thumbs {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, .3);
}

.thumb {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: border-color .15s;
    flex-shrink: 0;
}

.thumb.active,
.thumb:hover {
    border-color: var(--gold)
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-body {
    padding: 20px 20px 24px
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 20px
}

.wa-btn {
    background: var(--green);
    color: #fff;
    border: none;
    width: 100%;
    padding: 11px 0;
    border-radius: 40px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .3px;
}

.wa-btn:hover {
    background: #16a34a;
    transform: translateY(-1px)
}

/* swiper overrides */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
    background: rgba(20, 20, 24, .85);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 15px !important;
    font-weight: 700 !important
}

.swiper-pagination-bullet {
    background: var(--slate) !important;
    opacity: 1 !important
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important
}

/* ──── VISION / MISSION ──── */
.vm-section {
    background: var(--charcoal)
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px
}

.vm-card {
    background: var(--panel);
    border-radius: 16px;
    padding: 48px 36px;
    border: 1px solid rgba(201, 146, 42, .1);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

.vm-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.vm-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.vm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.vm-text {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.8
}

/* ──── GALLERY ──── */
.gallery-section {
    background: var(--onyx)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 56px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}

.gallery-item:nth-child(1) img {
    height: 452px
}

.gallery-item:hover img {
    transform: scale(1.05)
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 15, .85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity .25s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-caption-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--champagne);
    letter-spacing: .3px;
}

/* ──── CLIENTS ──── */
.clients-section {
    background: var(--charcoal);
    padding: 60px 0
}

.clients-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--slate);
    text-align: center;
    margin-bottom: 36px;
}

.clients-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.client-chip {
    background: var(--panel);
    border: 1px solid rgba(201, 146, 42, .1);
    border-radius: 40px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--champagne);
    transition: border-color .2s, color .2s;
}

.client-chip:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* ──── CEO ──── */
.ceo-section {
    background: var(--onyx)
}

.ceo-inner {
    background: var(--panel);
    border-radius: 20px;
    border: 1px solid rgba(201, 146, 42, .1);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    overflow: hidden;
    margin-top: 56px;
}

.ceo-avatar-col {
    background: linear-gradient(160deg, #1a1218, #0f0d0f);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-right: 1px solid rgba(201, 146, 42, .1);
    min-width: 260px;
}

.ceo-avatar-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #6b4810);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
    box-shadow: 0 0 40px rgba(201, 146, 42, .25);
    position: relative;
}

.ceo-avatar-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(201, 146, 42, .3);
}

.founder-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.ceo-bio-col {
    padding: 48px 48px
}

.ceo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.ceo-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px
}

.ceo-divider {
    width: 60px;
    height: 1px;
    background: rgba(201, 146, 42, .4);
    margin-bottom: 24px
}

.ceo-bio-text {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.9;
    margin-bottom: 28px
}

.ceo-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--champagne);
    padding-left: 20px;
    border-left: 2px solid var(--gold);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* ──── FOOTER ──── */
.footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(201, 146, 42, .15);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 146, 42, .1);
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.footer-brand-sub {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.75;
    max-width: 280px
}

.footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 14px;
    transition: color .2s;
}

.footer-item:hover {
    color: var(--champagne)
}

.footer-item i {
    color: var(--gold);
    width: 16px;
    text-align: center;
    font-size: 14px
}

.footer-rc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 146, 42, .08);
    letter-spacing: 2px;
    margin-top: 8px;
}

.copyright {
    text-align: center;
    padding-top: 32px;
    font-size: 12px;
    color: rgba(138, 138, 149, .6);
    letter-spacing: .5px;
}

/* ──── WHATSAPP FLOAT ──── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 300;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, .4);
    transition: all .2s;
    cursor: pointer;
    animation: wa-pulse 3s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(34, 197, 94, .6)
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(34, 197, 94, .4)
    }

    50% {
        box-shadow: 0 8px 32px rgba(34, 197, 94, .6), 0 0 0 8px rgba(34, 197, 94, .08)
    }
}

/* ──── SCROLL REVEAL ──── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

/* ──── RESPONSIVE ──── */
@media(max-width:1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1
    }

    .gallery-item:nth-child(1) img {
        height: 260px
    }

    .gallery-item img {
        height: 200px
    }

    .vm-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .ceo-inner {
        grid-template-columns: 1fr
    }

    .ceo-avatar-col {
        border-right: none;
        border-bottom: 1px solid rgba(201, 146, 42, .1);
        padding: 40px
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero-main {
        flex-direction: column;
        padding: 32px 20px 40px;
        gap: 40px
    }

    .hero-right {
        width: 100%
    }

    .hero-slide {
        height: 300px
    }

    .hero-stats {
        gap: 24px
    }

    .section {
        padding: 64px 0
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .gallery-item:nth-child(1) img,
    .gallery-item img {
        height: 160px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-brand-desc {
        max-width: 100%
    }

    .footer-item {
        justify-content: center
    }

    .ceo-bio-col {
        padding: 28px 24px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
        animation: none !important
    }
}

/* ──── WELCOME POPUP ──── */
.wp-overlay {
    position: fixed;
    inset: 0;
    z-index: 8500;
    background: rgba(5, 5, 8, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

.wp-overlay.wp-open {
    opacity: 1;
    visibility: visible;
}

.wp-card {
    background: var(--panel);
    border: 1px solid rgba(201, 146, 42, .22);
    border-radius: 24px;
    padding: 52px 44px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 48px 96px rgba(0, 0, 0, .65), 0 0 0 1px rgba(201, 146, 42, .08);
    transform: translateY(32px) scale(.97);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.wp-overlay.wp-open .wp-card {
    transform: translateY(0) scale(1);
}

.wp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--slate);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, transform .25s;
}

.wp-close:hover {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    transform: rotate(90deg);
}

.wp-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 26px;
}

.wp-logo {
    width: 68px;
    height: 68px;
    background: rgba(201, 146, 42, .1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    box-shadow: 0 0 28px rgba(201, 146, 42, .18);
}

.wp-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.wp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
}

.wp-name span {
    color: var(--gold);
}

.wp-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.wp-divider {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 28px;
}

.wp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.wp-title em {
    font-style: italic;
    color: var(--gold);
}

.wp-body {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 32px;
}

.wp-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.wp-cta {
    justify-content: center;
    width: 100%;
}

.wp-footer {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(138, 138, 149, .45);
}

@media(max-width:480px) {
    .wp-card {
        padding: 40px 22px 32px;
        border-radius: 20px;
    }

    .wp-title {
        font-size: 1.55rem;
    }

    .wp-body {
        font-size: 13px;
    }
}

/* ──── VIDEOS ──── */
.videos-section {
    background: var(--charcoal)
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px
}

.video-card {
    background: var(--panel);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 146, 42, .1);
    transition: transform .25s, box-shadow .25s;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .55)
}

.video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.vid-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, .3);
    border: none;
    cursor: pointer;
    transition: background .2s;
    padding: 0
}

.vid-play-btn:hover {
    background: rgba(10, 10, 15, .45)
}

.vid-play-btn.vid-hidden {
    display: none
}

.play-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), #a0711a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(201, 146, 42, .55);
    transition: transform .2s, box-shadow .2s;
}

.play-icon i {
    margin-left: 5px
}

.vid-play-btn:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(201, 146, 42, .75)
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 20px
}

.vid-meta-icon {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0
}

.video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white)
}

@media(max-width:900px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

@media(max-width:480px) {
    .play-icon {
        width: 56px;
        height: 56px;
        font-size: 20px
    }
}

/* ──── LIGHTBOX ──── */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5, 5, 8, .96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.lb-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lb-stage {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 6px;
    cursor: zoom-in;
}

.lb-stage.dragging {
    cursor: grabbing
}

#lbImg {
    display: block;
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    transform-origin: center center;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    opacity: 0;
    transition: opacity .2s;
    border-radius: 4px;
}

.lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .25s;
    z-index: 9001;
}

.lb-close:hover {
    background: rgba(255, 255, 255, .2);
    transform: rotate(90deg);
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    z-index: 9001;
}

.lb-nav:hover {
    background: rgba(201, 146, 42, .5);
    border-color: var(--gold);
}

.lb-prev {
    left: 18px
}

.lb-next {
    right: 18px
}

.lb-caption {
    position: fixed;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(240, 222, 180, .85);
    font-size: 13px;
    letter-spacing: .5px;
    background: rgba(10, 10, 15, .75);
    padding: 7px 22px;
    border-radius: 40px;
    white-space: nowrap;
    max-width: 80vw;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    font-family: 'DM Sans', sans-serif;
}

.lb-hint {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(138, 138, 149, .65);
    font-size: 11px;
    letter-spacing: 1px;
    pointer-events: none;
    transition: opacity .3s;
    opacity: .8;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

@media(max-width:600px) {
    .lb-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .lb-prev {
        left: 8px
    }

    .lb-next {
        right: 8px
    }

    #lbImg {
        max-width: 96vw;
        max-height: 82vh;
    }
}