/* ---------- Tokens ---------- */
:root {
    --hh-midnight: #040715;
    --hh-constellation: #0B1F3F;
    --hh-ember: #FF7B2E;
    --hh-flare: #FFB25C;
    --hh-aqua: #2EE6D5;
    --hh-indigo: #284D8F;
    --hh-fog: #E8EEF5;
    --hh-text: #F5F8FF;
    --hh-muted: rgba(236, 241, 255, 0.72);
    --hh-grid: rgba(255, 135, 64, 0.06);
    --hh-card-bg: linear-gradient(180deg, rgba(10, 14, 32, 0.9), rgba(8, 9, 22, 0.82));
    --hh-card-border: rgba(255, 255, 255, 0.14);
    --hh-radius: 18px;
    --hh-shadow: 0 22px 55px rgba(4, 7, 21, 0.55);
    --hh-fast: 160ms;
    --hh-med: 320ms;
    --hh-ease: cubic-bezier(.22, .61, .36, 1);
}

@font-face {
    font-family: "HHInter";
    src: url("../fonts/InterVariable.woff2") format("woff2");
    font-weight: 100 900;
    font-display: swap;
}

/* ---------- Base ---------- */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 15% -10%, rgba(255, 123, 46, 0.28), transparent 45%), radial-gradient(circle at 80% 0%, rgba(68, 126, 255, 0.35), transparent 55%), linear-gradient(180deg, #040715 0%, #060b1d 55%, #02030a 100%);
    color: var(--hh-text);
    font-family: "HHInter", "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative;
    overflow-x: hidden;
    cursor: url('../images/drone-cursor.png') 16 16, auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: rgba(255, 189, 125, 0.9);
    text-decoration: none;
    transition: color var(--hh-fast);
    cursor: url('../images/drone-cursor.png') 16 16, pointer;
}

a:hover,
a:focus {
    color: var(--hh-text);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 1;
    transform: none;
    transition: all 0.8s ease;
}

.reveal.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Lightbox ---------- */
.hh-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 7, 21, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--hh-med);
}

.hh-lightbox.open {
    display: flex;
    opacity: 1;
}

.hh-lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.hh-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--hh-text);
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hh-section {
    padding: 74px 0;
    position: relative;
    --section-accent: var(--hh-ember);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 14px;
    line-height: 1.08;
    color: var(--hh-text);
}

p {
    margin: 0 0 18px;
    color: var(--hh-muted);
}

/* ---------- Global overlays ---------- */
.hh-global-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

.hh-diagonal-grid {
    position: absolute;
    inset: -60px;
    background-image: repeating-linear-gradient(120deg, var(--hh-grid) 0, var(--hh-grid) 2px, transparent 2px, transparent 70px);
    opacity: .7;
    filter: blur(.6px);
}

.hh-sparkles {
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
}

.hh-sparkles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--hh-flare);
    opacity: 0;
    box-shadow: 0 0 16px rgba(255, 178, 92, .85);
    animation: hh-sparkle 6s linear infinite;
}

@keyframes hh-sparkle {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(.45);
    }

    12% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(160px, -90px, 0) scale(1.2);
    }
}

/* ---------- Header ---------- */
.hh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(6, 9, 27, 0.92), rgba(6, 9, 27, 0.45));
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: saturate(140%) blur(14px);
    transition: background var(--hh-med), border-color var(--hh-med);
}

.hh-scrolled .hh-header {
    background: rgba(6, 9, 27, 0.96);
    border-bottom-color: rgba(255, 189, 125, 0.45);
}

.hh-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.hh-logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--hh-text);
    text-decoration: none;
    position: relative;
    z-index: 100;
}

.hh-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 123, 46, 0.45), rgba(4, 7, 21, 0.65));
    border: 1px solid rgba(255, 189, 125, 0.45);
    box-shadow: 0 18px 42px rgba(4, 7, 21, 0.55), 0 0 18px rgba(255, 178, 92, 0.55);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.hh-logo-badge::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(255, 189, 125, 0.45) 0%, rgba(255, 123, 46, 0.0) 68%);
    opacity: .85;
}

.hh-logo-badge img {
    width: 64px;
    height: auto;
    position: relative;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 12px rgba(255, 178, 92, 0.6));
}

.hh-logo-wordmark {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .82rem;
    line-height: 1.2;
    color: rgba(245, 248, 255, 0.92);
}

.hh-logo-wordmark span {
    font-size: .72rem;
    letter-spacing: .28em;
    color: rgba(255, 215, 164, 0.85);
}


.hh-burger {
    display: none;
    width: auto;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 9999;
}

/* --- Mobile Menu Toggle --- */
@media (max-width: 980px) {
    .hh-burger {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 10px;
    }
}

.hh-burger span {
    display: block;
    width: 32px;
    height: 3px;
    margin: 5px 0;
    background: #FF7B2E;
    transition: transform var(--hh-fast) var(--hh-ease), opacity var(--hh-fast);
    border-radius: 2px;
}

.hh-burger-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--hh-text);
    text-transform: uppercase;
    display: block;
    margin-top: 0;
}

.hh-burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hh-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.hh-burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hh-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.hh-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hh-link {
    color: var(--hh-muted);
    padding: 10px 14px;
    border-radius: 12px;
    position: relative;
    font-weight: 600;
    letter-spacing: .04em;
    transition: color var(--hh-fast), transform var(--hh-fast) var(--hh-ease);
}

.hh-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--hh-ember), var(--hh-flare), var(--hh-indigo));
    transition: width var(--hh-med) var(--hh-ease);
}

.hh-link:hover,
.hh-link:focus {
    color: var(--hh-text);
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(255, 178, 92, 0.65);
}

.hh-link:hover::after,
.hh-link:focus::after {
    width: calc(100% - 24px);
}

.hh-has-sub {
    position: relative;
}

.hh-has-sub>.hh-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(6, 8, 24, 0.98);
    padding: 14px;
    border-radius: 14px;
    box-shadow: var(--hh-shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1001;
}

@media (min-width:981px) {

    .hh-has-sub:hover>.hh-sub,
    .hh-has-sub:focus-within>.hh-sub {
        display: flex;
        animation: hh-fade-in var(--hh-fast) var(--hh-ease);
    }
}

@keyframes hh-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hh-sub a {
    color: var(--hh-muted);
    padding: 9px 12px;
    border-radius: 10px;
    transition: background var(--hh-fast), color var(--hh-fast);
    display: block;
}

.hh-sub a:hover,
.hh-sub a:focus {
    background: rgba(255, 123, 46, 0.18);
    color: var(--hh-text);
}

.hh-cta {
    background: linear-gradient(120deg, var(--hh-ember), var(--hh-flare));
    color: var(--hh-midnight);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .08em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(255, 123, 46, 0.45);
    transition: transform var(--hh-fast) var(--hh-ease), box-shadow var(--hh-med);
}

.hh-cta::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    box-shadow: 0 0 32px rgba(255, 178, 92, 0.5);
    opacity: .8;
    filter: blur(10px);
    animation: hh-highlight-glow 3.2s ease-in-out infinite;
}

.hh-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-120%) skewX(-15deg);
    animation: hh-cta-glint 4s ease-in-out infinite;
}

.hh-cta:hover,
.hh-cta:focus {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 20px 44px rgba(255, 123, 46, 0.6);
}

.hh-ghost {
    border: 1px solid rgba(255, 189, 125, 0.65);
    padding: 12px 24px;
    border-radius: 999px;
    color: var(--hh-text);
    position: relative;
    overflow: hidden;
    background: rgba(255, 189, 125, 0.08);
    transition: background var(--hh-fast), transform var(--hh-fast);
}

.hh-ghost::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 123, 46, 0.22), rgba(46, 230, 213, 0));
    opacity: .8;
}

.hh-ghost:hover,
.hh-ghost:focus {
    background: rgba(255, 123, 46, 0.18);
    transform: translateY(-1px);
}

@keyframes hh-orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hh-cta-glint {
    0% {
        transform: translateX(-140%) skewX(-15deg);
    }

    55% {
        transform: translateX(140%) skewX(-15deg);
    }

    100% {
        transform: translateX(140%) skewX(-15deg);
    }
}

#hh-constellation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* ---------- Hero ---------- */
.hh-hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    place-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
    cursor: default;
}

.hh-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hh-hero-still {
    position: absolute;
    inset: 0;
    background: url('../images/placeholder_1.svg') center/cover no-repeat;
    opacity: 0;
    mix-blend-mode: screen;
    animation: hh-still-reveal 8s ease 2s forwards;
}

@keyframes hh-still-reveal {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .45;
    }

    100% {
        opacity: .7;
    }
}

/* Video Hero Background */
.hh-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hh-hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 21, 0.5);
    /* Dark overlay for text readability */
    z-index: 1;
}

.hh-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    /* Brought forward from -1 */
}

.hh-cosmic {
    display: none;
    /* Hidden to reveal video background */
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hh-space-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.08) contrast(1.1) saturate(125%);
    opacity: 1;
    pointer-events: none;
}

.hh-starfield,
.hh-shooting-stars,
.hh-nebula {
    position: absolute;
    inset: 0;
}

.hh-starfield span {
    position: absolute;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    background: rgba(234, 242, 255, 0.95);
    opacity: 0.2;
    box-shadow: 0 0 6px rgba(234, 242, 255, 0.35);
    animation: hh-twinkle 8s infinite ease-in-out;
}

@keyframes hh-twinkle {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.9);
    }

    45% {
        opacity: 0.65;
        transform: scale(1.4);
    }

    65% {
        opacity: 1;
        transform: scale(1.7);
    }
}

.hh-shooting-stars {
    display: none;
}

@keyframes hh-shooting {
    0% {
        transform: translate3d(-260%, -180%, 0) rotate(8deg);
        opacity: 0;
    }

    10% {
        opacity: .85;
    }

    55% {
        opacity: .8;
    }

    85% {
        opacity: .3;
    }

    100% {
        transform: translate3d(280%, 120%, 0) rotate(6deg);
        opacity: 0;
    }
}

.hh-nebula {
    background: radial-gradient(circle at 20% 28%, rgba(255, 123, 46, 0.28), transparent 45%), radial-gradient(circle at 80% 34%, rgba(255, 215, 164, 0.24), transparent 55%), radial-gradient(circle at 58% 80%, rgba(46, 230, 213, 0.25), transparent 60%);
    mix-blend-mode: screen;
    animation: hh-nebula-pulse 18s ease-in-out infinite;
}

@keyframes hh-nebula-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .85;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

.hh-sunburst {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 820px;
    height: 820px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 189, 125, 0.75) 0%, rgba(255, 123, 46, 0.6) 35%, rgba(255, 123, 46, 0.0) 70%);
    filter: blur(6px);
    opacity: .8;
    z-index: 1;
    mix-blend-mode: screen;
    animation: hh-sun-pulse 12s ease-in-out infinite;
}

@keyframes hh-sun-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.hh-skyline {
    display: none;
}

.hh-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 52px 38px;
    max-width: 960px;
    background: linear-gradient(160deg, rgba(6, 10, 26, 0.72), rgba(6, 8, 24, 0.55));
    backdrop-filter: blur(22px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 45px 110px rgba(4, 7, 21, 0.65);
}

.hh-hero-kicker {
    letter-spacing: .32em;
    text-transform: uppercase;
    font-size: .82rem;
    color: rgba(255, 189, 125, 0.85);
    margin-bottom: 12px;
}

.hh-hero-overlay h1 {
    font-size: clamp(3.4rem, 6vw, 5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-shadow: 0 20px 50px rgba(4, 7, 21, 0.6);
}

.hh-hero-overlay h1 span {
    background: linear-gradient(110deg, var(--hh-ember), var(--hh-flare), var(--hh-indigo));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hh-hero-sub {
    font-size: 1.18rem;
    margin-bottom: 24px;
    color: rgba(245, 248, 255, 0.9);
}

.hh-hero-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    justify-content: center;
    color: rgba(245, 248, 255, 0.88);
    font-size: 1rem;
}

.hh-hero-highlights li {
    position: relative;
    padding-left: 22px;
}

.hh-hero-highlights li::before {
    content: "✹";
    position: absolute;
    left: 0;
    color: var(--hh-ember);
    font-size: .85rem;
    top: -2px;
    animation: hh-highlight-glow 3.2s ease-in-out infinite;
}

@keyframes hh-highlight-glow {

    0%,
    100% {
        opacity: .65;
    }

    50% {
        opacity: 1;
    }
}

.hh-hero-ctas {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ---------- Section headings ---------- */
.hh-section .hh-container>:is(h2, h3) {
    position: relative;
    padding-top: 28px;
    margin-bottom: 22px;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
}

.hh-section .hh-container>:is(h2, h3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--section-accent), rgba(255, 255, 255, 0));
}

.hh-section--services {
    --section-accent: var(--hh-ember);
}

.hh-section--residential {
    --section-accent: var(--hh-flare);
}

.hh-section--land {
    --section-accent: var(--hh-aqua);
}

.hh-section--commercial {
    --section-accent: var(--hh-aqua);
}

.hh-section--pricing {
    --section-accent: var(--hh-ember);
}

.hh-section--gallery {
    --section-accent: var(--hh-flare);
}

.hh-section--social {
    --section-accent: var(--hh-aqua);
}

.hh-section--about {
    --section-accent: var(--hh-ember);
}

.hh-section--consult {
    --section-accent: var(--hh-flare);
}

.hh-section--booking {
    --section-accent: var(--hh-ember);
}

/* ---------- Cards / Grid ---------- */
.hh-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
}

@media (max-width:1100px) {
    .hh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:720px) {
    .hh-grid {
        grid-template-columns: 1fr;
    }
}

.hh-card {
    background: var(--hh-card-bg);
    border: 1px solid var(--hh-card-border);
    border-radius: var(--hh-radius);
    padding: 26px;
    box-shadow: var(--hh-shadow);
    position: relative;
    overflow: hidden;
    transition: transform var(--hh-fast) var(--hh-ease), box-shadow var(--hh-fast) var(--hh-ease), border-color var(--hh-fast);
}

.hh-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hh-card:hover,
.hh-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(4, 7, 21, 0.65);
    border-color: rgba(255, 123, 46, 0.4);
}

.hh-price {
    font-size: 1.85rem;
    color: var(--hh-text);
    font-weight: 700;
    margin: 6px 0 16px;
}

.hh-list {
    margin: 0;
    padding-left: 20px;
    color: rgba(245, 248, 255, 0.82);
}

.hh-list li {
    margin-bottom: 9px;
}

.hh-note {
    color: rgba(236, 241, 255, 0.68);
    font-size: .96rem;
    margin-top: 14px;
}

.hh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    background: linear-gradient(120deg, var(--hh-ember), var(--hh-flare));
    color: var(--hh-midnight);
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: transform var(--hh-fast), box-shadow var(--hh-fast);
}

.hh-btn::after {
    content: "➜";
    font-size: .95rem;
    transition: transform var(--hh-fast);
}

.hh-btn:hover,
.hh-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 123, 46, 0.45);
}

.hh-btn:hover::after {
    transform: translateX(4px);
}

.hh-featured {
    border-color: rgba(255, 123, 46, 0.45);
    box-shadow: 0 32px 80px rgba(255, 123, 46, 0.28);
    transform: scale(1.05);
    z-index: 1;
}

.hh-featured:hover,
.hh-featured:focus-within {
    transform: scale(1.05) translateY(-6px);
    border-color: var(--hh-ember);
}

.hh-badge {
    display: inline-block;
    background: rgba(255, 123, 46, 0.24);
    color: var(--hh-text);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 178, 92, 0.6);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .72rem;
}

.hh-fineprint p {
    font-size: .95rem;
    color: rgba(236, 241, 255, 0.65);
}

/* ---------- Gallery ---------- */
.hh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

@media (max-width:980px) {
    .hh-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:680px) {
    .hh-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.hh-gallery-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(6, 9, 27, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 65px rgba(4, 7, 21, 0.6);
    transition: transform var(--hh-fast);
}

.hh-gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: saturate(125%);
}

.hh-gallery-card figcaption {
    padding: 20px;
    color: rgba(245, 248, 255, 0.9);
    font-size: 1.02rem;
    letter-spacing: .02em;
}

.hh-gallery-card:hover,
.hh-gallery-card:focus-within {
    transform: translateY(-6px);
}

/* ---------- About ---------- */
.hh-about {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

@media (max-width:940px) {
    .hh-about {
        grid-template-columns: 1fr;
    }
}

.hh-about-copy p {
    font-size: 1.08rem;
    color: rgba(245, 248, 255, 0.85);
}

.hh-about-media {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(6, 9, 27, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(4, 7, 21, 0.65);
}

.hh-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-about-media figcaption {
    padding: 18px;
    color: rgba(245, 248, 255, 0.78);
    font-size: .98rem;
}

/* Video Showcase Grid */
.hh-video-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 2rem;
}

.hh-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 24px 65px rgba(4, 7, 21, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hh-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hh-video-showcase {
        grid-template-columns: 1fr;
    }
}

/* Legacy support if needed, otherwise can be removed */
.hh-about-media {
    margin-top: 2rem;
}

/* ---------- CTA block ---------- */
.hh-cta-block {
    background: radial-gradient(1200px 640px at 70% -20%, rgba(255, 123, 46, 0.32), rgba(5, 9, 24, 0.95));
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hh-cta-block h3 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 16px;
}

.hh-cta-block p {
    font-size: 1.08rem;
    color: rgba(245, 248, 255, 0.85);
}

/* ---------- Footer ---------- */
.hh-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hh-footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hh-footer-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: rgba(245, 248, 255, 0.82);
}

.hh-footer-copy strong {
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .85rem;
    color: var(--hh-text);
}

.hh-footer-copy span {
    font-size: .75rem;
    letter-spacing: .12em;
    color: rgba(255, 189, 125, 0.78);
}

.hh-logo-badge--small {
    width: 72px;
    height: 72px;
    border-radius: 22px;
}

.hh-logo-badge--small img {
    width: 54px;
}

.hh-footer {
    padding: 36px 0;
    text-align: center;
    color: rgba(245, 248, 255, 0.7);
    font-size: .92rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Mobile menu ---------- */
@media (max-width:980px) {
    .hh-burger {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 64px;
        /* Increased width */
        height: 64px;
        /* Increased height */
        padding: 8px;
        background: #FF7B2E;
        border: 3px solid #FFB25C;
        border-radius: 12px;
        position: relative;
        z-index: 9999 !important;
        box-shadow: 0 4px 12px rgba(255, 123, 46, 0.6);
        transition: all 0.3s ease;
    }

    .hh-burger span {
        width: 28px;
        /* Slightly smaller lines to fit label */
        height: 3px;
        background: #FFFFFF;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hh-burger-label {
        font-size: 10px;
        font-weight: 800;
        color: #FFFFFF;
        letter-spacing: 0.05em;
        line-height: 1;
        margin-top: 2px;
    }

    /* Hamburger Animation to X */
    .hh-burger.is-active {
        background: #040715;
        /* Dark background for contrast against open menu */
        border-color: #FF7B2E;
    }

    .hh-burger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: #FF7B2E;
        /* Orange X */
    }

    .hh-burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .hh-burger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: #FF7B2E;
        /* Orange X */
    }

    .hh-burger.is-active .hh-burger-label {
        color: #FF7B2E;
        /* Orange text when active */
    }

    .hh-wrap {
        justify-content: space-between;
    }

    .hh-logo {
        flex-shrink: 0;
    }

    .hh-nav {
        position: fixed;
        inset: 0;
        background: #040715;
        /* Solid dark background for readability */
        background: radial-gradient(circle at 70% 20%, rgba(255, 123, 46, 0.15), rgba(4, 7, 21, 0.98) 60%);
        transform: translateY(-100%);
        transition: transform var(--hh-med) var(--hh-ease);
        padding-top: 160px;
        /* More space for header (120px logo + 32px padding = 152px) */
        z-index: 9998;
        overflow-y: auto;
        visibility: hidden;
    }

    .hh-nav.open {
        transform: translateY(0);
        visibility: visible;
    }

    .hh-nav ul {
        flex-direction: column;
        gap: 24px;
        /* Increased gap */
        padding: 24px 32px 48px;
        align-items: center;
        /* Center items */
        width: 100%;
        text-align: center;
    }

    /* Improved Menu Item Visibility */
    .hh-nav .hh-link,
    .hh-nav .hh-cta {
        font-size: 1.5rem;
        /* Larger text */
        font-weight: 700;
        color: #FFFFFF !important;
        /* Force white */
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hh-nav .hh-cta {
        margin-top: 20px;
        width: 100%;
        max-width: 280px;
        display: inline-flex;
        justify-content: center;
    }

    .hh-has-sub {
        width: 100%;
    }

    .hh-has-sub>.hh-sub {
        position: static;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0;
        margin-top: 6px;
        align-items: center;
    }

    .hh-has-sub.open>.hh-sub {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hh-sub a {
        padding: 8px 0;
        font-size: 1.1rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .hh-hero-overlay {
        padding: 40px 24px;
    }

    .hh-hero-overlay h1 {
        font-size: clamp(2.6rem, 9vw, 3.9rem);
    }

    .hh-hero-highlights {
        gap: 14px 20px;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== HERO MICRO-INTERACTIONS ===== */
.hh-hero-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: hhFadeSlideUp 0.8s var(--hh-ease) forwards;
}

@keyframes hhFadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hh-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--hh-text);
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
    animation: hhBounce 2s infinite;
}

.hh-scroll-down.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes hhBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Button Effects */
.hh-cta,
.hh-ghost {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--hh-ease), box-shadow 0.2s var(--hh-ease), background 0.2s;
}

.hh-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 123, 46, 0.4);
}

.hh-ghost:hover {
    box-shadow: inset 0 0 0 1px var(--hh-ember);
    text-shadow: 0 0 8px rgba(255, 123, 46, 0.5);
}

.hh-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: hhRipple 0.6s linear;
    pointer-events: none;
}

@keyframes hhRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== GALLERY IMPROVEMENTS ===== */
.hh-gallery-section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Alternating backgrounds for clear separation */
.hh-gallery-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.hh-gallery-section h3 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--hh-ember);
    display: inline-block;
    color: var(--hh-text);
}

.hh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Link Underline Animation */
.hh-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 2px;
    background: #7C3AED;
    /* Purple accent */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--hh-ease);
}

.hh-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Animation */
.hh-has-sub .hh-sub {
    display: block;
    /* Override display:none */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s var(--hh-ease);
    pointer-events: none;
}

.hh-has-sub:hover .hh-sub,
.hh-has-sub:focus-within .hh-sub {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile Menu Slide & Blur */
@media (max-width: 980px) {
    .hh-nav {
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(4, 7, 21, 0.95);
    }

    .hh-nav.open {
        transform: translateX(0);
    }
}

/* ===== GALLERY ENHANCEMENTS ===== */
.hh-gallery-card {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.hh-gallery-card img {
    transition: transform 0.5s var(--hh-ease), filter 0.3s ease;
    width: 100%;
    height: auto;
}

.hh-gallery-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hh-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hh-gallery-card:hover::after {
    opacity: 1;
}

/* Loading Skeleton */
.hh-img-loading {
    background: #0B1F3F;
    position: relative;
    overflow: hidden;
}

.hh-img-loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    animation: hhShimmer 1.5s infinite;
}

@keyframes hhShimmer {
    100% {
        transform: translateX(100%);
    }
}

.hh-img-loaded {
    animation: hhFadeIn 0.5s ease forwards;
}

@keyframes hhFadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Lightbox Controls */
.hh-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 2010;
}

.hh-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hh-lightbox-prev {
    left: 20px;
}

.hh-lightbox-next {
    right: 20px;
}

.hh-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.hh-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 60px;
}

.hh-testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--hh-card-bg);
    border: 1px solid var(--hh-card-border);
    border-radius: var(--hh-radius);
    position: relative;
    animation: hhFadeInSlide 0.6s var(--hh-ease);
}

.hh-testimonial-card.active {
    display: block;
}

.hh-testimonial-card::before {
    content: '“';
    font-family: serif;
    font-size: 120px;
    color: var(--hh-ember);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.hh-stars {
    color: #FFB25C;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.hh-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.hh-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hh-dot.active {
    background: var(--hh-ember);
    transform: scale(1.2);
}

@keyframes hhFadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}