/* ============================================
   HORIZON HEIGHTS - CINEMATIC REDESIGN
   A film-inspired, dramatic visual experience
   ============================================ */

/* ---------- Cinematic Design Tokens ---------- */
:root {
    /* Brand Colors - Preserved */
    --hh-brand-orange: #FF6B35;
    --hh-brand-teal: #00BCD4;

    /* Cinematic Palette - Deep, Rich, Dramatic */
    --cinema-black: #030508;
    --cinema-charcoal: #0a0d12;
    --cinema-slate: #141922;
    --cinema-smoke: #1e242e;

    /* Film-Inspired Accents */
    --cinema-gold: #D4A84B;
    --cinema-copper: #B87333;
    --cinema-silver: #C0C0C0;

    /* Text Hierarchy */
    --text-primary: #FAFBFC;
    --text-secondary: rgba(250, 251, 252, 0.75);
    --text-tertiary: rgba(250, 251, 252, 0.5);

    /* Cinematic Shadows */
    --shadow-dramatic: 0 50px 100px -20px rgba(0, 0, 0, 0.8);
    --shadow-glow-orange: 0 0 80px rgba(255, 107, 53, 0.3);
    --shadow-glow-teal: 0 0 80px rgba(0, 188, 212, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'HHInter', system-ui, sans-serif;

    /* Timing */
    --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-dramatic: cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* ---------- Cinematic Base Overrides ---------- */
body.cinematic-theme {
    background: var(--cinema-black);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 53, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 188, 212, 0.06), transparent),
        linear-gradient(180deg, var(--cinema-black) 0%, var(--cinema-charcoal) 50%, var(--cinema-black) 100%);
    color: var(--text-primary);
}

/* Filmstrip Edge Effect */
body.cinematic-theme::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--hh-brand-orange) 0%,
        var(--cinema-gold) 25%,
        var(--hh-brand-teal) 50%,
        var(--cinema-gold) 75%,
        var(--hh-brand-orange) 100%);
    z-index: 9999;
    opacity: 0.9;
}

/* ---------- HEADER - Cinematic Refinement ---------- */
.cinematic-theme .hh-header {
    background: linear-gradient(180deg,
        rgba(3, 5, 8, 0.98) 0%,
        rgba(3, 5, 8, 0.85) 100%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 0;
}

.cinematic-theme .hh-wrap {
    padding: 12px 40px;
}

.cinematic-theme .hh-logo-badge {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cinematic-theme .hh-logo-wordmark {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: none;
    font-size: 1rem;
}

.cinematic-theme .hh-logo-wordmark span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hh-brand-orange);
    opacity: 0.9;
}

/* Navigation Links */
.cinematic-theme .hh-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 12px 20px;
    position: relative;
}

.cinematic-theme .hh-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hh-brand-orange), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-cinematic);
}

.cinematic-theme .hh-link:hover {
    color: var(--text-primary);
}

.cinematic-theme .hh-link:hover::after {
    transform: scaleX(1);
}

/* CTA Button - Cinematic */
.cinematic-theme .hh-cta {
    background: linear-gradient(135deg, var(--hh-brand-orange), var(--cinema-copper));
    color: var(--cinema-black);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    box-shadow:
        0 4px 20px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s var(--ease-cinematic);
}

.cinematic-theme .hh-cta::before,
.cinematic-theme .hh-cta::after {
    display: none;
}

.cinematic-theme .hh-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 40px rgba(255, 107, 53, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ---------- HERO - Cinematic Transformation ---------- */
.cinematic-theme .hh-hero {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Video Overlay - Cinematic Grade */
.cinematic-theme .hh-hero-overlay-dark {
    background: linear-gradient(
        to bottom,
        rgba(3, 5, 8, 0.3) 0%,
        rgba(3, 5, 8, 0.1) 30%,
        rgba(3, 5, 8, 0.4) 70%,
        rgba(3, 5, 8, 0.95) 100%
    );
}

/* Letterbox Bars - True Cinematic */
.cinematic-theme .hh-hero::before,
.cinematic-theme .hh-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 12vh;
    background: var(--cinema-black);
    z-index: 3;
    pointer-events: none;
}

.cinematic-theme .hh-hero::before {
    top: 0;
    background: linear-gradient(to bottom, var(--cinema-black), transparent);
}

.cinematic-theme .hh-hero::after {
    bottom: 0;
    background: linear-gradient(to top, var(--cinema-black), transparent);
}

/* Hero Content Box - Glass Morphism */
.cinematic-theme .hh-hero-overlay {
    position: relative;
    z-index: 4;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 80px;
    background: linear-gradient(
        135deg,
        rgba(10, 13, 18, 0.85) 0%,
        rgba(3, 5, 8, 0.9) 100%
    );
    backdrop-filter: blur(40px) saturate(150%);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: var(--shadow-dramatic);
}

/* Decorative Corner Accents */
.cinematic-theme .hh-hero-overlay::before,
.cinematic-theme .hh-hero-overlay::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: var(--hh-brand-orange);
    border-style: solid;
    opacity: 0.4;
}

.cinematic-theme .hh-hero-overlay::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: 8px 0 0 0;
}

.cinematic-theme .hh-hero-overlay::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 8px 0;
}

/* Hero Subtitle - Cinematic */
.cinematic-theme .hh-hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--hh-brand-teal);
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Main Title - Dramatic Typography */
.cinematic-theme .hh-hero-overlay h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.cinematic-theme .hh-hero-overlay h1 span {
    display: block;
    background: linear-gradient(135deg, var(--hh-brand-orange), var(--cinema-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Description */
.cinematic-theme .hh-hero-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 28px;
}

/* Hero Highlights - Minimal Style */
.cinematic-theme .hh-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cinematic-theme .hh-hero-highlights li {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    padding-left: 0;
}

.cinematic-theme .hh-hero-highlights li::before {
    display: none;
}

/* Hero CTAs */
.cinematic-theme .hh-hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cinematic-theme .hh-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.4s var(--ease-cinematic);
}

.cinematic-theme .hh-ghost::after {
    display: none;
}

.cinematic-theme .hh-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--hh-brand-teal);
    color: var(--hh-brand-teal);
}

/* Scroll Indicator - Cinematic */
.cinematic-theme .hh-scroll-down {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--text-tertiary);
    opacity: 0.6;
}

.cinematic-theme .hh-scroll-down svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

/* ---------- SECTIONS - Cinematic Styling ---------- */
.cinematic-theme .hh-section {
    padding: 120px 0;
    position: relative;
}

/* Section Titles */
.cinematic-theme .hh-section h2,
.cinematic-theme .hh-section h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.cinematic-theme .hh-section .hh-container > h2::before,
.cinematic-theme .hh-section .hh-container > h3::before {
    background: linear-gradient(90deg, var(--hh-brand-orange), transparent);
    height: 3px;
    width: 80px;
}

/* ---------- SERVICES SECTION - Cinematic Cards ---------- */
.cinematic-theme .hh-services-nav {
    background: linear-gradient(180deg,
        var(--cinema-black) 0%,
        var(--cinema-charcoal) 50%,
        var(--cinema-black) 100%) !important;
    padding: 100px 0 !important;
}

.cinematic-theme .hh-services-nav h2 {
    font-family: var(--font-display) !important;
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    text-align: center !important;
    margin-bottom: 48px !important;
    color: var(--text-primary) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

.cinematic-theme .hh-services-nav .hh-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
}

@media (max-width: 1200px) {
    .cinematic-theme .hh-services-nav .hh-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .cinematic-theme .hh-services-nav .hh-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .cinematic-theme .hh-services-nav .hh-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Service Cards - Clean Cinematic Style */
.cinematic-theme .hh-services-nav .hh-card {
    position: relative;
    background: var(--cinema-slate) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px;
    padding: 32px 24px !important;
    min-height: auto !important;
    overflow: hidden;
    transition: all 0.4s var(--ease-cinematic);
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-align: center;
}

.cinematic-theme .hh-services-nav .hh-card::before {
    display: none;
}

/* Emoji icon styling */
.cinematic-theme .hh-services-nav .hh-card > div:first-child {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    font-size: 3rem !important;
    margin-bottom: 16px !important;
    filter: none;
    transition: transform 0.3s var(--ease-cinematic);
}

.cinematic-theme .hh-services-nav .hh-card h3 {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    font-family: var(--font-display);
    font-size: 1.25rem !important;
    font-weight: 600;
    margin: 0 0 8px 0 !important;
    color: var(--text-primary) !important;
}

.cinematic-theme .hh-services-nav .hh-card p {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    font-size: 0.9rem !important;
    color: var(--text-tertiary) !important;
    margin: 0 0 20px 0 !important;
    opacity: 1 !important;
    line-height: 1.5;
}

.cinematic-theme .hh-services-nav .hh-card .hh-btn {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    margin-top: auto;
    background: var(--hh-brand-orange);
    color: var(--cinema-black);
    font-size: 0.8rem;
    padding: 12px 20px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s var(--ease-cinematic);
}

.cinematic-theme .hh-services-nav .hh-card:hover {
    transform: translateY(-8px);
    border-color: var(--hh-brand-orange) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cinematic-theme .hh-services-nav .hh-card:hover > div:first-child {
    transform: scale(1.1);
}

.cinematic-theme .hh-services-nav .hh-card:hover .hh-btn {
    background: linear-gradient(135deg, var(--hh-brand-orange), var(--cinema-copper));
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

/* ---------- VIDEO SHOWCASE - Cinematic Frame ---------- */
.cinematic-theme .hh-answer-capsule {
    background: var(--cinema-charcoal);
    padding: 80px 0;
}

.cinematic-theme .hh-video-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.cinematic-theme .hh-video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-dramatic);
}

/* Film frame effect */
.cinematic-theme .hh-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hh-brand-orange), var(--hh-brand-teal));
    z-index: 10;
}

.cinematic-theme .hh-video-wrapper p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-style: normal;
    margin-top: 16px;
    line-height: 1.6;
}

/* What We Do Title */
.cinematic-theme .hh-answer-capsule h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
}

.cinematic-theme .hh-answer-capsule > .hh-container > div {
    background: transparent;
    border: none;
    padding: 0;
}

/* ---------- TESTIMONIALS - Film Review Style ---------- */
.cinematic-theme #testimonials {
    background: linear-gradient(180deg,
        var(--cinema-black) 0%,
        var(--cinema-slate) 50%,
        var(--cinema-black) 100%);
    padding: 120px 0;
}

.cinematic-theme #testimonials h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 16px;
}

.cinematic-theme #testimonials > .hh-container > p {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.cinematic-theme .hh-testimonial-card {
    background: linear-gradient(135deg, var(--cinema-slate), var(--cinema-charcoal));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.cinematic-theme .hh-testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--hh-brand-orange);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: 30px;
    line-height: 1;
}

.cinematic-theme .hh-stars {
    color: var(--cinema-gold);
    font-size: 1.4rem;
    letter-spacing: 4px;
}

.cinematic-theme .hh-testimonial-card p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 24px 0;
}

.cinematic-theme .hh-testimonial-card footer strong {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--hh-brand-orange);
    letter-spacing: 0.05em;
}

/* Carousel Dots */
.cinematic-theme .hh-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cinematic-theme .hh-dot.active {
    width: 32px;
    background: var(--hh-brand-orange);
}

/* ---------- ABOUT SECTION - Director's Cut ---------- */
.cinematic-theme .hh-section--about {
    background: var(--cinema-charcoal);
    padding: 120px 0;
}

.cinematic-theme .hh-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cinematic-theme .hh-about-copy h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 24px;
    padding-top: 0;
}

.cinematic-theme .hh-about-copy h3::before {
    display: none;
}

.cinematic-theme .hh-about-copy p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.cinematic-theme .hh-about-copy p strong {
    color: var(--text-primary);
}

.cinematic-theme .hh-about-media {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-dramatic);
}

.cinematic-theme .hh-about-media figcaption {
    background: linear-gradient(135deg, var(--cinema-slate), var(--cinema-charcoal));
    padding: 20px;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

/* ---------- COMMUNITY SECTION ---------- */
.cinematic-theme section[aria-label="Our Community"]:not(#testimonials ~ section) {
    background: linear-gradient(180deg,
        var(--cinema-black) 0%,
        var(--cinema-charcoal) 100%);
    padding: 100px 0;
}

.cinematic-theme section[aria-label="Our Community"] h2 {
    font-family: var(--font-display);
    font-size: 2rem;
}

.cinematic-theme section[aria-label="Our Community"] .hh-card {
    background: linear-gradient(135deg, var(--cinema-slate), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s var(--ease-cinematic);
}

.cinematic-theme section[aria-label="Our Community"] .hh-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.cinematic-theme section[aria-label="Our Community"] .hh-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

/* ---------- PROCESS SECTION - Storyboard Style ---------- */
.cinematic-theme .hh-section--process {
    background: var(--cinema-black);
    padding: 120px 0;
    position: relative;
}

/* Vertical Timeline Line */
.cinematic-theme .hh-section--process::before {
    content: '';
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 400px);
    background: linear-gradient(to bottom,
        transparent,
        var(--hh-brand-orange) 10%,
        var(--hh-brand-orange) 90%,
        transparent);
    opacity: 0.3;
}

.cinematic-theme .hh-section--process h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    padding-top: 0;
    margin-bottom: 16px;
}

.cinematic-theme .hh-section--process h2::before {
    display: none;
}

.cinematic-theme .hh-section--process > .hh-container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-tertiary);
}

.cinematic-theme .hh-section--process .hh-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

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

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

    .cinematic-theme .hh-section--process::before {
        left: 30px;
    }
}

.cinematic-theme .hh-section--process .hh-card {
    background: linear-gradient(135deg, var(--cinema-slate), var(--cinema-charcoal));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 48px 24px 32px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.cinematic-theme .hh-section--process .hh-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 2px solid var(--hh-brand-orange);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.cinematic-theme .hh-section--process .hh-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hh-brand-orange);
    color: var(--cinema-black);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    z-index: 2;
}

.cinematic-theme .hh-section--process .hh-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.cinematic-theme .hh-section--process .hh-card p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* Fix email link overflow in step 5 */
.cinematic-theme .hh-section--process .hh-card .hh-note {
    word-break: break-word;
    overflow-wrap: break-word;
}

.cinematic-theme .hh-section--process .hh-card .hh-note a {
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
}

/* ---------- SOCIAL PROOF SECTION ---------- */
.cinematic-theme section[aria-label="Our Community"]:last-of-type {
    background: linear-gradient(135deg, var(--cinema-charcoal), var(--cinema-black));
    padding: 100px 0;
}

.cinematic-theme section[aria-label="Our Community"]:last-of-type .hh-card {
    background: linear-gradient(135deg, var(--cinema-slate), transparent);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
}

.cinematic-theme section[aria-label="Our Community"]:last-of-type .hh-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.cinematic-theme section[aria-label="Our Community"]:last-of-type .hh-card div[style*="font-size: 3rem"] {
    font-family: var(--font-display);
    font-size: 3.5rem !important;
    font-weight: 600;
}

/* Social Links */
.cinematic-theme section[aria-label="Our Community"]:last-of-type a[href*="facebook"],
.cinematic-theme section[aria-label="Our Community"]:last-of-type a[href*="youtube"] {
    background: var(--cinema-slate) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.4s var(--ease-cinematic) !important;
}

.cinematic-theme section[aria-label="Our Community"]:last-of-type a[href*="facebook"]:hover,
.cinematic-theme section[aria-label="Our Community"]:last-of-type a[href*="youtube"]:hover {
    border-color: var(--hh-brand-orange) !important;
    transform: translateY(-3px) !important;
}

/* ---------- BOOKING SECTION - Final Act ---------- */
.cinematic-theme .hh-section--booking {
    background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(255, 107, 53, 0.15), transparent),
                var(--cinema-black);
    padding: 120px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.cinematic-theme .hh-section--booking h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
}

.cinematic-theme .hh-section--booking > .hh-container > p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.cinematic-theme .hh-section--booking .hh-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.cinematic-theme .hh-section--booking .hh-card {
    background: linear-gradient(135deg, var(--cinema-slate), var(--cinema-charcoal));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.cinematic-theme .hh-section--booking .hh-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* ---------- FOOTER - Credits Roll ---------- */
.cinematic-theme .hh-footer {
    background: var(--cinema-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px;
}

.cinematic-theme .hh-footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.cinematic-theme .hh-footer-copy {
    align-items: center;
}

.cinematic-theme .hh-footer-copy strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.cinematic-theme .hh-social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.cinematic-theme .hh-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cinema-slate);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-cinematic);
}

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

.cinematic-theme .hh-social-links svg {
    width: 20px;
    height: 20px;
}

.cinematic-theme .hh-certifications {
    margin-top: 32px;
    opacity: 0.6;
}

.cinematic-theme .hh-footer p:last-child {
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ---------- ANIMATIONS ---------- */
@keyframes cinematic-fade-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cinematic-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cinematic-theme .reveal {
    animation: cinematic-fade-up 0.8s var(--ease-dramatic) forwards;
}

/* Stagger children */
.cinematic-theme .hh-grid .hh-card:nth-child(1) { animation-delay: 0.1s; }
.cinematic-theme .hh-grid .hh-card:nth-child(2) { animation-delay: 0.2s; }
.cinematic-theme .hh-grid .hh-card:nth-child(3) { animation-delay: 0.3s; }
.cinematic-theme .hh-grid .hh-card:nth-child(4) { animation-delay: 0.4s; }
.cinematic-theme .hh-grid .hh-card:nth-child(5) { animation-delay: 0.5s; }

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 768px) {
    .cinematic-theme .hh-hero-overlay {
        padding: 40px 24px;
        margin: 0 16px;
    }

    .cinematic-theme .hh-hero-overlay h1 {
        font-size: 2.2rem;
    }

    .cinematic-theme .hh-about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cinematic-theme .hh-section--booking .hh-grid {
        grid-template-columns: 1fr;
    }

    .cinematic-theme .hh-video-showcase {
        grid-template-columns: 1fr;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    .cinematic-theme * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
