/* ============================================
   HORIZON HEIGHTS PRODUCTIONS
   Cinematic Aerial Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Sora:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
    /* Core Palette - Cinematic Dusk */
    --hh-void: #020408;
    --hh-midnight: #040715;
    --hh-deep: #0a1628;
    --hh-constellation: #0B1F3F;

    /* Brand Colors - Sunset Gradient */
    --hh-brand-orange: #FF6B35;
    --hh-brand-teal: #00BCD4;
    --hh-ember: #FF6B35;
    --hh-flare: #FFB25C;
    --hh-gold: #F5A623;
    --hh-rose: #FF4E6A;
    --hh-aqua: #00BCD4;
    --hh-cyan: #22D3EE;
    --hh-aurora: #7C3AED;

    /* Text Colors */
    --hh-text: #F8FAFC;
    --hh-text-secondary: rgba(248, 250, 252, 0.75);
    --hh-muted: rgba(236, 241, 255, 0.6);

    /* Surfaces */
    --hh-glass: rgba(10, 22, 40, 0.65);
    --hh-glass-border: rgba(255, 255, 255, 0.08);
    --hh-card-bg: linear-gradient(165deg, rgba(10, 22, 40, 0.9) 0%, rgba(4, 7, 21, 0.95) 100%);
    --hh-card-border: rgba(255, 255, 255, 0.1);

    /* Effects */
    --hh-glow-orange: 0 0 60px rgba(255, 107, 53, 0.4);
    --hh-glow-teal: 0 0 60px rgba(0, 188, 212, 0.3);
    --hh-radius: 20px;
    --hh-radius-lg: 32px;
    --hh-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --duration-fast: 200ms;
    --duration-med: 400ms;
    --duration-slow: 800ms;
}

/* ---------- Base Reset ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--hh-text);
    background: var(--hh-void);
    overflow-x: hidden;
    cursor: url('../images/drone-cursor.png') 16 16, auto;
}

/* Cinematic Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 20% -20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 10%, rgba(0, 188, 212, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--hh-void) 0%, var(--hh-midnight) 30%, var(--hh-deep) 100%);
    z-index: -2;
    pointer-events: none;
}

/* Grain Texture Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

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

a {
    color: var(--hh-flare);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out-quart);
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    color: var(--hh-text);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
    color: var(--hh-text-secondary);
    margin-bottom: 1.5rem;
}

/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(135deg, var(--hh-ember) 0%, var(--hh-flare) 50%, var(--hh-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cool {
    background: linear-gradient(135deg, var(--hh-aqua) 0%, var(--hh-cyan) 50%, var(--hh-aurora) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Layout ---------- */
.hh-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.hh-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}

/* Section Divider */
.hh-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), rgba(0, 188, 212, 0.3), transparent);
}

.hh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ---------- Header ---------- */
.hh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all var(--duration-med) var(--ease-out-quart);
}

.hh-header.scrolled {
    background: rgba(4, 7, 21, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0;
}

.hh-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* Logo */
.hh-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--hh-text);
    text-decoration: none;
    z-index: 1001;
}

.hh-logo-badge {
    position: relative;
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 188, 212, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform var(--duration-med) var(--ease-out-expo);
    flex-shrink: 0;
}

.hh-logo-badge::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 180deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    animation: rotate 8s linear infinite;
    pointer-events: none;
}

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

.hh-logo-badge img {
    width: 54px;
    height: auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.4));
    object-fit: contain;
}

.hh-logo:hover .hh-logo-badge {
    transform: scale(1.05) rotate(-3deg);
}

.hh-logo-wordmark {
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
}

.hh-logo-wordmark span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--hh-flare);
    opacity: 0.9;
}

/* Hide wordmark on very small screens to prevent crowding */
@media (max-width: 480px) {
    .hh-logo-wordmark {
        display: none;
    }
}

/* Navigation */
.hh-nav {
    display: flex;
    align-items: center;
}

.hh-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.hh-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--hh-text-secondary);
    border-radius: 12px;
    transition: all var(--duration-fast) var(--ease-out-quart);
}

.hh-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: linear-gradient(90deg, var(--hh-ember), var(--hh-flare));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-med) var(--ease-out-expo);
}

.hh-link:hover {
    color: var(--hh-text);
    background: rgba(255, 255, 255, 0.05);
}

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

/* CTA Button */
.hh-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hh-void);
    background: linear-gradient(135deg, var(--hh-ember), var(--hh-flare));
    border: none;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--duration-med) var(--ease-out-expo);
    box-shadow:
        0 4px 20px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hh-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--hh-flare), var(--hh-gold));
    opacity: 0;
    transition: opacity var(--duration-med);
}

.hh-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s var(--ease-out-expo);
}

.hh-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 40px rgba(255, 107, 53, 0.5),
        0 0 80px rgba(255, 107, 53, 0.3);
}

.hh-cta:hover::before {
    opacity: 1;
}

.hh-cta:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.hh-cta span {
    position: relative;
    z-index: 1;
}

/* Ghost Button */
.hh-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--hh-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration-med) var(--ease-out-quart);
}

.hh-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--hh-ember);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.hh-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--hh-ember), var(--hh-flare));
    border: none;
    border-radius: 14px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.hh-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hh-void);
    margin: 3px 0;
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease-out-quart);
}

.hh-burger-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--hh-void);
    margin-top: 4px;
}

.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);
}

@media (max-width: 980px) {
    .hh-burger {
        display: flex;
    }

    .hh-nav {
        position: fixed;
        inset: 0;
        background: rgba(4, 7, 21, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--duration-med) var(--ease-out-expo);
        z-index: 1000;
    }

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

    .hh-menu {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hh-link {
        font-size: 1.5rem;
        font-family: var(--font-display);
        letter-spacing: 0.02em;
    }
}

/* ---------- Hero Section ---------- */
.hh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

/* Video Background */
.hh-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hh-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-hero-overlay-dark {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 4, 8, 0.6) 0%, rgba(2, 4, 8, 0.3) 40%, rgba(2, 4, 8, 0.7) 100%),
        radial-gradient(ellipse at 50% 0%, transparent 0%, rgba(2, 4, 8, 0.5) 100%);
}

/* Cinematic Bars */
.hh-hero::before,
.hh-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 8vh;
    background: var(--hh-void);
    z-index: 1;
}

.hh-hero::before { top: 0; }
.hh-hero::after { bottom: 0; }

/* Aurora Effect */
.hh-cosmic {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hh-nebula {
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255, 107, 53, 0.15), transparent 50%),
        radial-gradient(ellipse 50% 30% at 70% 30%, rgba(0, 188, 212, 0.1), transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 80%, rgba(124, 58, 237, 0.08), transparent 50%);
    animation: aurora 20s ease-in-out infinite;
}

@keyframes aurora {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(5%, -3%) rotate(2deg) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: translate(-3%, 5%) rotate(-1deg) scale(1.02);
        opacity: 0.9;
    }
    75% {
        transform: translate(2%, 2%) rotate(1deg) scale(1.08);
        opacity: 1;
    }
}

/* Hero Content */
.hh-hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 4rem;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--hh-radius-lg);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hh-hero-subtitle {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hh-aqua);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 100px;
}

.hh-hero-overlay h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hh-hero-overlay h1 span {
    display: block;
    background: linear-gradient(135deg, var(--hh-ember) 0%, var(--hh-flare) 40%, var(--hh-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 30px rgba(255, 107, 53, 0.4));
}

.hh-hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--hh-text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hh-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    list-style: none;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: var(--hh-text-secondary);
}

.hh-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hh-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Scroll Indicator */
.hh-scroll-down {
    position: absolute;
    bottom: calc(8vh + 2rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--hh-text);
    opacity: 0.6;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity var(--duration-fast);
}

.hh-scroll-down:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ---------- Cards ---------- */
.hh-card {
    position: relative;
    background: var(--hh-card-bg);
    border: 1px solid var(--hh-card-border);
    border-radius: var(--hh-radius);
    padding: 2rem;
    overflow: hidden;
    transition: all var(--duration-med) var(--ease-out-expo);
}

/* Card Glow Effect */
.hh-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), transparent 40%, transparent 60%, rgba(0, 188, 212, 0.3));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--duration-med);
}

.hh-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 53, 0.1);
}

.hh-card:hover::before {
    opacity: 1;
}

.hh-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.hh-card p {
    font-size: 0.95rem;
    color: var(--hh-muted);
}

/* Featured Card */
.hh-featured {
    border-color: rgba(255, 107, 53, 0.4);
    background: linear-gradient(165deg, rgba(255, 107, 53, 0.1) 0%, rgba(10, 22, 40, 0.95) 30%);
    transform: scale(1.02);
}

.hh-featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    padding: 0.5rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--hh-void);
    background: linear-gradient(90deg, var(--hh-ember), var(--hh-flare));
    transform: rotate(45deg);
}

/* Badge */
.hh-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hh-ember);
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Price Display */
.hh-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hh-text);
    margin: 0.5rem 0 1.5rem;
}

.hh-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--hh-muted);
}

/* List Styling */
.hh-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.hh-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--hh-text-secondary);
    font-size: 0.95rem;
}

.hh-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hh-aqua);
    font-weight: 700;
}

/* Button in Cards */
.hh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--hh-void);
    background: linear-gradient(135deg, var(--hh-ember), var(--hh-flare));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out-quart);
}

.hh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.hh-btn::after {
    content: '→';
    transition: transform var(--duration-fast);
}

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

/* ---------- Services Grid ---------- */
.hh-services-nav {
    background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.03), transparent);
}

.hh-services-nav .hh-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.hh-services-nav .hh-card > div:first-child {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform var(--duration-med) var(--ease-out-expo);
}

.hh-services-nav .hh-card:hover > div:first-child {
    transform: scale(1.15) rotate(-5deg);
}

/* ---------- Testimonials ---------- */
.hh-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.hh-testimonial-card {
    display: none;
    padding: 3rem;
    text-align: center;
    background: var(--hh-card-bg);
    border: 1px solid var(--hh-card-border);
    border-radius: var(--hh-radius);
    animation: fadeSlide 0.6s var(--ease-out-expo);
}

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

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hh-testimonial-card::before {
    content: '"';
    display: block;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--hh-ember);
    opacity: 0.2;
    margin-bottom: -2rem;
}

.hh-stars {
    color: var(--hh-gold);
    font-size: 1.25rem;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
}

.hh-testimonial-card p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--hh-text);
    margin-bottom: 2rem;
}

.hh-testimonial-card footer {
    font-size: 0.95rem;
}

.hh-testimonial-card footer strong {
    display: block;
    color: var(--hh-text);
    margin-bottom: 0.25rem;
}

.hh-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hh-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.hh-dot.active {
    background: var(--hh-ember);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* ---------- About Section ---------- */
.hh-about {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hh-about-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.hh-about-copy p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.hh-about-media {
    position: relative;
    border-radius: var(--hh-radius-lg);
    overflow: hidden;
    box-shadow: var(--hh-shadow);
}

.hh-about-media::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}

.hh-about-media img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.hh-about-media:hover img {
    transform: scale(1.05);
}

.hh-about-media figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--hh-text-secondary);
    font-size: 0.9rem;
    z-index: 2;
}

/* ---------- Process Section ---------- */
.hh-section--process .hh-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .hh-section--process .hh-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.hh-section--process .hh-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.hh-section--process .hh-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* ---------- Video Showcase ---------- */
.hh-video-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.hh-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--hh-radius);
    overflow: hidden;
    background: var(--hh-deep);
    border: 1px solid var(--hh-card-border);
    box-shadow: var(--hh-shadow);
}

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

/* ---------- Gallery ---------- */
.hh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.hh-gallery-card {
    position: relative;
    border-radius: var(--hh-radius);
    overflow: hidden;
    background: var(--hh-deep);
    cursor: pointer;
    transition: all var(--duration-med) var(--ease-out-expo);
}

.hh-gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.hh-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity var(--duration-med);
}

.hh-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

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

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

.hh-gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--hh-text);
    z-index: 1;
    transform: translateY(100%);
    transition: transform var(--duration-med) var(--ease-out-expo);
}

.hh-gallery-card:hover figcaption {
    transform: translateY(0);
}

/* ---------- Lightbox ---------- */
.hh-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 4, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.hh-lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.hh-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--hh-text);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.hh-lightbox-close:hover {
    background: var(--hh-ember);
    border-color: var(--hh-ember);
    transform: rotate(90deg);
}

.hh-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hh-text);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.hh-lightbox-prev { left: 2rem; }
.hh-lightbox-next { right: 2rem; }

.hh-lightbox-nav:hover {
    background: var(--hh-aqua);
    border-color: var(--hh-aqua);
}

.hh-lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--hh-text);
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--hh-ember);
    border-radius: 100px;
}

/* ---------- CTA Block ---------- */
.hh-cta-block {
    text-align: center;
    background:
        radial-gradient(ellipse 100% 50% at 50% 0%, rgba(255, 107, 53, 0.15), transparent),
        linear-gradient(180deg, var(--hh-deep), var(--hh-midnight));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hh-cta-block h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.hh-cta-block p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ---------- Footer ---------- */
.hh-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.hh-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hh-footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hh-logo-badge--small {
    width: 64px;
    height: 64px;
}

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

.hh-footer-copy {
    text-align: left;
}

.hh-footer-copy strong {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hh-footer-copy span {
    display: block;
    font-size: 0.85rem;
    color: var(--hh-flare);
    margin-top: 0.25rem;
}

.hh-social-links {
    display: flex;
    gap: 1rem;
}

.hh-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--duration-fast);
}

.hh-social-links a:hover {
    background: var(--hh-ember);
    border-color: var(--hh-ember);
    transform: translateY(-3px);
}

.hh-social-icon {
    width: 24px;
    height: 24px;
}

.hh-certifications {
    display: flex;
    gap: 2rem;
    align-items: center;
    opacity: 0.7;
}

.hh-footer p {
    font-size: 0.85rem;
    color: var(--hh-muted);
    margin: 0;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 1;
    transform: none;
}

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

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

.hh-diagonal-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

/* Canvas Constellation */
#hh-constellation {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ---------- Utility Classes ---------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Print Styles ---------- */
@media print {
    body {
        background: white;
        color: black;
    }

    .hh-header,
    .hh-footer,
    .hh-cosmic,
    .hh-global-effects {
        display: none;
    }
}
