/* ============================================
   DIMENSION ARCHITECTS — 3D & ANIMATION CSS
   ============================================ */

/* ---- Hero Geometric Shapes ---- */
.hero-geo {
    position: absolute;
    top: 0; left: 0; right: 0;
    bottom: 48px;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.geo-shape {
    position: absolute;
    border: 1px solid rgba(183, 141, 101, 0.25);
}

.geo-s1 {
    width: 70px; height: 70px;
    top: 12%; left: 3%;
    animation: spinFloat 10s linear infinite;
}
.geo-s2 {
    width: 150px; height: 150px;
    bottom: 12%; left: 5%;
    border-radius: 50%;
    border-color: rgba(183, 141, 101, 0.15);
    animation: spinFloat 20s linear infinite reverse;
}
.geo-s3 {
    width: 50px; height: 50px;
    top: 15%; right: 6%;
    transform: rotate(45deg);
    animation: spinFloat 7s linear infinite;
}
.geo-s4 {
    width: 100px; height: 100px;
    bottom: 15%; right: 5%;
    animation: spinFloat 14s linear infinite reverse;
}
.geo-s5 {
    width: 22px; height: 22px;
    top: 45%; left: 8%;
    background: rgba(183, 141, 101, 0.2);
    border: none;
    border-radius: 50%;
    animation: floatBall 5s ease-in-out infinite;
}
.geo-s6 {
    width: 12px; height: 12px;
    top: 30%; right: 10%;
    background: rgba(183, 141, 101, 0.25);
    border: none;
    animation: floatBall 7s ease-in-out infinite reverse;
}
.geo-s7 {
    width: 220px; height: 1px;
    top: 60%;
    left: -60px;
    border: none;
    background: linear-gradient(90deg, transparent, rgba(183,141,101,0.35), transparent);
    animation: lineSlide 7s ease-in-out infinite;
}
.geo-s8 {
    width: 150px; height: 1px;
    top: 38%;
    right: -40px;
    border: none;
    background: linear-gradient(270deg, transparent, rgba(183,141,101,0.3), transparent);
    animation: lineSlideR 9s ease-in-out infinite;
}
.geo-s9 {
    width: 35px; height: 35px;
    top: 70%; right: 15%;
    border: 2px solid rgba(183,141,101,0.2);
    transform: rotate(45deg);
    animation: spinFloat 11s linear infinite;
}
.geo-s10 {
    width: 5px; height: 60px;
    top: 20%; left: 15%;
    border: none;
    background: linear-gradient(transparent, rgba(183,141,101,0.3), transparent);
    animation: floatBall 6s ease-in-out infinite;
}

@keyframes spinFloat {
    0%   { transform: translateY(0)    rotate(0deg);   }
    50%  { transform: translateY(-25px) rotate(180deg); }
    100% { transform: translateY(0)    rotate(360deg); }
}

@keyframes floatBall {
    0%, 100% { transform: translateY(0)    scale(1);   opacity: 0.4; }
    50%       { transform: translateY(-30px) scale(1.4); opacity: 0.9; }
}

@keyframes lineSlide {
    0%        { transform: translateX(-100px); opacity: 0; }
    20%, 80%  { opacity: 1; }
    100%      { transform: translateX(700px);  opacity: 0; }
}

@keyframes lineSlideR {
    0%        { transform: translateX(100px);  opacity: 0; }
    20%, 80%  { opacity: 1; }
    100%      { transform: translateX(-700px); opacity: 0; }
}

/* ============================================
   3D FLIP CARDS — Facts Section
   ============================================ */
.flip-card {
    perspective: 1200px;
    min-height: 300px;
}

.flip-card-inner {
    width: 100%;
    height: 300px;
    transition: transform 0.85s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    border-radius: 2px;
}

.flip-card-front {
    background: var(--light);
}

.flip-card-front .fc-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 36px;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(183,141,101,0.2), 0 0 0 6px rgba(183,141,101,0.06);
    transition: all 0.4s ease;
}

.flip-card-back {
    background: linear-gradient(145deg, #c4a07a 0%, #9a6f44 45%, #5c3c1e 100%);
    transform: rotateY(180deg);
    text-align: center;
}

.flip-card-back .back-icon {
    font-size: 44px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 18px;
}

.flip-card-back p {
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
}

.flip-card-front .fc-hint {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    margin-top: 10px;
}

/* ============================================
   STATS BANNER — Dark Gold Section
   ============================================ */
.stats-banner {
    background: linear-gradient(135deg, #0d0503 0%, #1e0c05 45%, #0d0503 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 15% 50%, rgba(183,141,101,0.07) 0%, transparent 100%),
        radial-gradient(ellipse 55% 80% at 85% 50%, rgba(183,141,101,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.stats-banner .container { position: relative; z-index: 1; }

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.stat-num {
    font-family: 'Teko', sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(183,141,101,0.35);
    transition: text-shadow 0.3s ease;
}

.stat-plus {
    font-family: 'Teko', sans-serif;
    font-size: 44px;
    color: var(--primary);
    margin-left: 4px;
    opacity: 0.7;
}

.stat-item:hover .stat-num {
    text-shadow: 0 0 60px rgba(183,141,101,0.9), 0 0 120px rgba(183,141,101,0.3);
}

.stat-lbl {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    margin: 15px auto;
    height: 70px;
    background: linear-gradient(transparent, rgba(183,141,101,0.4), transparent);
}

/* ============================================
   3D PROJECT CARDS
   ============================================ */
.project-3d-wrap {
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    cursor: pointer;
}

.project-3d-wrap:hover {
    transform: perspective(900px) translateZ(22px) scale(1.015) !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(183,141,101,0.25) !important;
}

.project-3d-wrap img {
    transition: transform 0.7s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-3d-wrap:hover img {
    transform: scale(1.12);
}

.proj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px;
}

.proj-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 3px 10px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
    width: fit-content;
}

.project-3d-wrap:hover .proj-badge {
    opacity: 1;
    transform: translateY(0);
}

.proj-title {
    color: white;
    font-size: 22px;
    margin: 0;
    transform: translateY(6px);
    transition: transform 0.4s ease;
}

.project-3d-wrap:hover .proj-title {
    transform: translateY(0);
}

/* ============================================
   3D ICON BOXES — Features Section
   ============================================ */
.icon-3d-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(145deg, #c4a07a, #8B6240);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 26px;
    color: white;
    box-shadow: 5px 5px 15px rgba(183,141,101,0.35), -2px -2px 8px rgba(255,255,255,0.15);
    transform: perspective(600px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.d-flex:hover .icon-3d-box {
    transform: perspective(600px) rotateY(15deg) rotateX(-5deg) translateZ(8px);
    box-shadow: 8px 8px 28px rgba(183,141,101,0.5), -2px -2px 10px rgba(255,255,255,0.2);
}

/* ============================================
   SERVICE CARDS — 3D Hover
   ============================================ */
.service-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    border-radius: 3px;
}

.service-item:hover {
    transform: perspective(1000px) rotateX(-4deg) rotateY(2deg) translateZ(12px) !important;
    box-shadow: 0 28px 55px rgba(0,0,0,0.3), 0 0 0 1px rgba(183,141,101,0.2) !important;
}

/* ============================================
   ABOUT COUNTER BOX — 3D
   ============================================ */
.counter-box-3d {
    box-shadow: inset 0 0 20px rgba(183,141,101,0.08), 6px 6px 20px rgba(183,141,101,0.18);
    transform: perspective(600px) rotateY(-8deg);
    transition: all 0.45s ease;
}

.counter-box-3d:hover {
    transform: perspective(600px) rotateY(8deg) scale(1.04);
    box-shadow: inset 0 0 30px rgba(183,141,101,0.15), 12px 12px 35px rgba(183,141,101,0.3);
}

/* ============================================
   FACTS SECTION — 3D hover fallback
   ============================================ */
.fact-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.fact-item:hover {
    transform: perspective(800px) translateZ(15px) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12) !important;
}

/* ============================================
   CTA STRIP — Between Projects & Team
   ============================================ */
.cta-strip {
    background: linear-gradient(135deg, #B78D65 0%, #8B6240 50%, #5C3D1E 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.cta-strip::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    top: -210px; right: -80px;
    animation: slowSpin 25s linear infinite;
}

.cta-strip::after {
    content: '';
    position: absolute;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    bottom: -110px; left: 8%;
    animation: slowSpin 15s linear infinite reverse;
}

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.cta-strip .container { position: relative; z-index: 1; }

/* ============================================
   TILT CARDS — JS-assisted mouse tracking
   ============================================ */
.tilt-target {
    transition: transform 0.08s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

/* ============================================
   SCROLL REVEAL ENHANCEMENT
   ============================================ */
@keyframes rise3d {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(12deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* ============================================
   SECTION TITLE GLOW
   ============================================ */
.section-title {
    text-shadow: 0 0 25px rgba(183,141,101,0.25);
}

/* ============================================
   HERO HEADLINE SHIMMER
   ============================================ */
@keyframes shimmerText {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

/* ============================================
   GSAP INIT STATES — handled inline by GSAP
   (gsap.from uses immediateRender:true by default,
    so no CSS opacity:0 needed here — it caused
    GSAP to read destination as 0 and animate 0→0)
   ============================================ */

/* ============================================
   HERO PARTICLE CANVAS
   ============================================ */
#hero-particles {
    opacity: 0.9;
}

/* ============================================
   PAGE LOAD FADE IN
   ============================================ */
body {
    animation: pageLoad 0.5s ease-out forwards;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================
   SCROLL INDICATOR (hero)
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(transparent, rgba(183,141,101,0.8));
    animation: scrollLine 1.8s ease-in-out infinite;
}

.scroll-indicator i {
    color: rgba(183,141,101,0.7);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { opacity: 0; transform: scaleY(0) translateY(-100%); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: scaleY(1) translateY(0); }
}

/* ============================================
   PROJECT CATEGORY NAV TABS
   ============================================ */
.project-nav .nav-link {
    background: var(--light);
    color: var(--dark);
    border-radius: 2px;
    border-left: 4px solid transparent;
    margin-bottom: 10px;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 20px;
}

.project-nav .nav-link i {
    color: var(--primary);
    width: 22px;
    transition: color 0.3s;
}

.project-nav .nav-link:hover {
    background: #f0e8df;
    border-left-color: var(--primary);
    transform: translateX(6px);
    color: var(--dark);
}

.project-nav .nav-link.active {
    background: var(--primary);
    color: #fff !important;
    border-left-color: #5c3d1e;
    transform: translateX(0);
    box-shadow: 0 8px 25px rgba(183,141,101,0.35);
}

.project-nav .nav-link.active i,
.project-nav .nav-link.active h5 {
    color: #fff !important;
}

.project-nav .nav-link h5 {
    font-size: 15px;
    margin: 0;
    color: inherit;
    font-weight: 500;
}

.tab-content > .tab-pane {
    animation: tabReveal 0.45s ease;
}

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

/* ============================================
   HOVER GLOW on primary buttons
   ============================================ */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
        rgba(255,255,255,0.25) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* ============================================
   HERO BANNER — KEN BURNS + ENHANCEMENTS
   ============================================ */
/* Ken Burns zoom on carousel images */
.header-carousel .owl-carousel-item > img {
    animation: kenBurns 12s ease-in-out infinite alternate;
    transform-origin: center center;
}
@keyframes kenBurns {
    0%   { transform: scale(1)    translate(0, 0); }
    100% { transform: scale(1.09) translate(-1.2%, -0.8%); }
}

/* Cinematic gradient overlay on hero slides */
.owl-carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(10,10,26,0.75) 0%,
        rgba(10,10,26,0.45) 45%,
        rgba(10,10,26,0.15) 100%);
    z-index: 2;
}
.owl-carousel-inner { z-index: 3; position: relative; }

/* Floating hero achievement badges */
.hero-badges {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-badge {
    background: rgba(10,10,26,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(183,141,101,0.45);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    color: #fff;
    min-width: 100px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay: 1.3s; }
.hero-badge:nth-child(3) { animation-delay: 2.6s; }
@keyframes badgeFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.hero-badge:hover {
    background: rgba(183,141,101,0.3);
    box-shadow: 0 12px 36px rgba(183,141,101,0.3);
}
.hb-num {
    display: block;
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #FFD700;
    line-height: 1;
    text-shadow: 0 0 12px rgba(255,215,0,0.5);
}
.hb-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Gold vertical accent line beside hero text */
.hero-text-accent {
    position: absolute;
    left: -20px;
    top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #FFD700, rgba(183,141,101,0.2));
    border-radius: 2px;
    animation: accentPulse 2.5s ease-in-out infinite;
}
@keyframes accentPulse {
    0%,100% { opacity: 0.7; }
    50%      { opacity: 1; box-shadow: 0 0 12px rgba(255,215,0,0.7); }
}

/* Gold text gradient on hero h1 */
.hero-gold-text {
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: goldShimmer 4s ease-in-out infinite;
}
@keyframes goldShimmer {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}

/* Hero "Est. 1985" badge at bottom left */
.hero-est-badge {
    position: absolute;
    bottom: 80px;
    left: 40px;
    z-index: 10;
    background: rgba(10,10,26,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(183,141,101,0.4);
    border-radius: 8px;
    padding: 8px 16px;
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: badgeFloat 5s ease-in-out infinite;
}
.hero-est-badge span { color: #FFD700; font-weight: 700; }

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 767px) {
    .stat-num  { font-size: 56px; }
    .stat-plus { font-size: 34px; }
    .stat-divider { display: none; }
    .flip-card { min-height: 260px; }
    .flip-card-inner { height: 260px; }
}

/* ============================================
   HERO WRAPPER — HEIGHT CONTROL (fixes Owl height cascade)
   ============================================ */
.hero-wrapper {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}
/* Cascade height through all Owl internal layers */
.header-carousel,
.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item,
.header-carousel .owl-carousel-item {
    height: 100% !important;
}
.header-carousel .owl-carousel-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 768px) {
    .hero-wrapper {
        height: 60vh;
        min-height: 400px;
        max-height: none;
    }
}

/* ============================================
   HERO — EXTRA ANIMATION ELEMENTS
   ============================================ */

/* Animated sweep progress bar at bottom */
.hero-progress-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #FFD700, #b78d65, #FFD700);
    background-size: 200% 100%;
    z-index: 20;
    box-shadow: 0 0 10px rgba(255,215,0,0.7);
    animation: heroProgress 5.5s linear infinite;
}
@keyframes heroProgress {
    0%   { width: 0%; }
    100% { width: 100%; }
}

/* Diagonal scan line sweeping across hero */
.hero-scanline {
    position: absolute;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255,215,0,0.0) 20%,
        rgba(255,215,0,0.5) 50%,
        rgba(255,215,0,0.0) 80%,
        transparent 100%);
    z-index: 6;
    pointer-events: none;
    filter: blur(2px);
    animation: scanSweep 9s ease-in-out infinite 1s;
}
@keyframes scanSweep {
    0%   { left: -3%; opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { left: 103%; opacity: 0; }
}

/* Second scan line (offset, thinner) */
.hero-scanline-2 {
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25), transparent);
    z-index: 6;
    pointer-events: none;
    animation: scanSweep 9s ease-in-out infinite 4.5s;
}

/* Gold corner bracket accents */
.hero-corner {
    position: absolute;
    width: 50px; height: 50px;
    z-index: 9;
    pointer-events: none;
}
.hero-corner.tl {
    top: 24px; left: 24px;
    border-top: 2px solid rgba(255,215,0,0.65);
    border-left: 2px solid rgba(255,215,0,0.65);
    animation: cornerBreathe 2.8s ease-in-out infinite;
}
.hero-corner.tr {
    top: 24px; right: 90px;
    border-top: 2px solid rgba(255,215,0,0.35);
    border-right: 2px solid rgba(255,215,0,0.35);
    animation: cornerBreathe 2.8s ease-in-out infinite 0.9s;
}
.hero-corner.bl {
    bottom: 24px; left: 24px;
    border-bottom: 2px solid rgba(255,215,0,0.35);
    border-left: 2px solid rgba(255,215,0,0.35);
    animation: cornerBreathe 2.8s ease-in-out infinite 1.8s;
}
.hero-corner.br {
    bottom: 24px; right: 90px;
    border-bottom: 2px solid rgba(255,215,0,0.65);
    border-right: 2px solid rgba(255,215,0,0.65);
    animation: cornerBreathe 2.8s ease-in-out infinite 1.4s;
}
@keyframes cornerBreathe {
    0%,100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.12); box-shadow: 0 0 8px rgba(255,215,0,0.3); }
}

/* Vignette + bottom glow overlay */
.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%),
        linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 30%);
    z-index: 3;
    pointer-events: none;
}

/* Horizontal grid lines (blueprint feel) */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 79px,
            rgba(183,141,101,0.04) 80px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 119px,
            rgba(183,141,101,0.04) 120px
        );
}

/* Slide label pill (top right) */
.hero-slide-label {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 30px;
    padding: 6px 20px;
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Teko', sans-serif;
    animation: labelFadeIn 1s ease 0.5s both;
}
.hero-slide-label span { color: #FFD700; }
@keyframes labelFadeIn {
    from { opacity:0; transform: translateX(-50%) translateY(-10px); }
    to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

/* Animated dot-grid pattern on hero */
.hero-dot-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(183,141,101,0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: dotGridShift 20s linear infinite;
}
@keyframes dotGridShift {
    0%   { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Floating ring overlay */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(183,141,101,0.15);
    z-index: 3;
    pointer-events: none;
    animation: heroRingExpand 6s ease-out infinite;
}
.hero-ring.hr1 { width:300px; height:300px; bottom:-80px; left:-60px; animation-delay:0s; }
.hero-ring.hr2 { width:200px; height:200px; top:10%; right:15%; animation-delay:2s; }
.hero-ring.hr3 { width:160px; height:160px; bottom:15%; right:25%; animation-delay:4s; }
@keyframes heroRingExpand {
    0%   { transform: scale(0.85); opacity: 0.8; }
    50%  { transform: scale(1.08); opacity: 0.4; }
    100% { transform: scale(0.85); opacity: 0.8; }
}
