/* ═══════════════════════════════════════════════════════
   HomePage Studios — Main Stylesheet
   Brand: Navy #0f1f2e | Gold #b09858 | Cream #f5f3ef
   Fonts: Cormorant Garamond (headings) | Inter (body) | Didact Gothic (accents)
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0f1f2e;
    --navy-light: #162a3d;
    --gold: #b09858;
    --gold-light: #c4ad72;
    --cream: #f5f3ef;
    --cream-dark: #ece8e1;
    --white: #ffffff;
    --text: #2a2a2a;
    --text-light: #666666;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Didact Gothic', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}


/* ── PRELOADER ─────────────────────────────────── */
#hps-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#hps-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--cream);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderFadeUp 0.6s ease 0.2s forwards;
}
.pl-home { font-weight: 300; }
.pl-dot { color: var(--gold); font-weight: 400; }
.pl-page { font-weight: 500; }
.preloader-sub {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 8px;
    color: var(--gold);
    margin-top: 8px;
    opacity: 0;
    animation: preloaderFadeUp 0.6s ease 0.5s forwards;
}
.preloader-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 24px auto 0;
    animation: preloaderLine 1s ease 0.8s forwards;
}

@keyframes preloaderFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderLine {
    to { width: 120px; }
}


/* ── HEADER ────────────────────────────────────── */
.hps-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.hps-header.scrolled {
    background: rgba(15, 31, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.hps-header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.hps-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.hps-logo .logo-home,
.hps-logo .logo-page,
.hps-logo .logo-dot {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--cream);
    display: inline;
}
.hps-logo .logo-home { font-weight: 300; }
.hps-logo .logo-dot { color: var(--gold); font-weight: 400; }
.hps-logo .logo-page { font-weight: 500; }
.hps-logo .logo-sub {
    font-family: var(--font-accent);
    font-size: 8px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-top: 3px;
    display: block;
}

/* Nav links */
.hps-nav {
    display: flex;
    gap: 36px;
}
.hps-nav a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 243, 239, 0.7);
    position: relative;
    padding: 4px 0;
}
.hps-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.hps-nav a:hover,
.hps-nav a.active { color: var(--cream); }
.hps-nav a:hover::after,
.hps-nav a.active::after { width: 100%; }

/* Header CTA */
.hps-btn-header {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 12px 28px;
    border-radius: 0;
    transition: all 0.3s ease;
}
.hps-btn-header:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(176, 152, 88, 0.3);
}

/* Burger */
.hps-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.hps-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
}
.hps-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hps-burger.active span:nth-child(2) { opacity: 0; }
.hps-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.hps-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.hps-mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--cream);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.hps-mobile-menu.active .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}
.hps-mobile-menu.active .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
.hps-mobile-menu.active .mobile-nav a:nth-child(2) { transition-delay: 0.15s; }
.hps-mobile-menu.active .mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
.hps-mobile-menu.active .mobile-nav a:nth-child(4) { transition-delay: 0.25s; }
.hps-mobile-menu.active .mobile-nav a:nth-child(5) { transition-delay: 0.3s; }
.hps-mobile-menu.active .mobile-nav a:nth-child(6) { transition-delay: 0.35s; }
.mobile-cta {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy) !important;
    background: var(--gold);
    padding: 16px 40px;
    margin-top: 16px;
}


/* ── HERO ──────────────────────────────────────── */
.hps-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy);
    /* Subtle animated gradient */
    background: linear-gradient(135deg, #0a1520 0%, #0f1f2e 30%, #162a3d 60%, #0f1f2e 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(176, 152, 88, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(176, 152, 88, 0.05) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
    max-width: 900px;
}
.hero-eyebrow {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 28px;
}
.hps-hero h1 {
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 28px;
}
.hero-line {
    display: block;
    font-size: clamp(40px, 6vw, 72px);
}
.hero-line-accent {
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
}
.hero-sub {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 243, 239, 0.65);
    max-width: 620px;
    margin: 0 auto 40px;
    font-weight: 300;
}
.hero-sub-big {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}


/* ── BUTTONS ───────────────────────────────────── */
.hps-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: all 0.3s ease;
}
.hps-btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.hps-btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(176, 152, 88, 0.25);
}
.hps-btn-outline {
    border: 1px solid rgba(245, 243, 239, 0.3);
    color: var(--cream);
    background: transparent;
}
.hps-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.hps-btn-outline.dark {
    border-color: rgba(15, 31, 46, 0.2);
    color: var(--navy);
}
.hps-btn-outline.dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.hps-text-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-top: 20px;
}
.hps-text-link:hover { letter-spacing: 2px; }
.hps-text-link.light { color: var(--cream); }
.hps-text-link.light:hover { color: var(--gold); }


/* ── EYEBROW ───────────────────────────────────── */
.eyebrow {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 16px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.light { color: rgba(245, 243, 239, 0.6); }


/* ── SECTION HEADERS ───────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.15;
}


/* ── STATS BAR ─────────────────────────────────── */
.hps-stats-bar {
    background: var(--navy);
    padding: 36px 0;
    border-bottom: 1px solid rgba(176, 152, 88, 0.15);
}
.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 32px;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    display: block;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 243, 239, 0.5);
    display: block;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(176, 152, 88, 0.2);
}


/* ── PROBLEM/SOLUTION ──────────────────────────── */
.hps-problem {
    padding: 120px 0;
    background: var(--white);
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.problem-grid h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.problem-grid p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}
.problem-right { padding-top: 40px; }


/* ── SERVICES ──────────────────────────────────── */
.hps-services {
    padding: 120px 0;
    background: var(--cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    background: var(--white);
    padding: 48px 36px;
    transition: all 0.4s ease;
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-num {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
}
.service-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}
.service-price {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}
.services-cta {
    text-align: center;
    margin-top: 56px;
}


/* ── CINEMATIC BREAK ───────────────────────────── */
.hps-cinematic {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cinematic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 46, 0.75);
}
.cinematic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
}
.cinematic-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 12px;
}
.cinematic-content p {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    font-style: italic;
}


/* ── PORTFOLIO ─────────────────────────────────── */
.hps-portfolio {
    padding: 120px 0;
    background: var(--white);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.portfolio-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}
.portfolio-card.portfolio-featured {
    grid-column: 1 / -1;
    height: 500px;
}
.portfolio-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-image { transform: scale(1.05); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 31, 46, 0.95) 0%, rgba(15, 31, 46, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: background 0.4s ease;
}
.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(15, 31, 46, 0.98) 0%, rgba(15, 31, 46, 0.6) 100%);
}
.portfolio-tag {
    font-family: var(--font-accent);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 12px;
}
.portfolio-card.portfolio-featured .portfolio-overlay h3 { font-size: 36px; }
.portfolio-overlay p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 243, 239, 0.6);
    max-width: 500px;
    margin-bottom: 8px;
}
.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}


/* ── PROCESS ───────────────────────────────────── */
.hps-process {
    padding: 120px 0;
    background: var(--navy);
}
.hps-process .section-header h2 { color: var(--cream); }
.hps-process .eyebrow { color: var(--gold); }
.process-steps {
    max-width: 700px;
    margin: 0 auto;
}
.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.step-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    min-width: 60px;
}
.step-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
}
.step-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 243, 239, 0.5);
}
.process-line {
    width: 1px;
    height: 48px;
    background: rgba(176, 152, 88, 0.2);
    margin: 16px 0 16px 28px;
}


/* ── COMPARE ───────────────────────────────────── */
.hps-compare {
    padding: 120px 0;
    background: var(--cream);
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.compare-col {
    padding: 48px 40px;
}
.compare-col h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 28px;
}
.compare-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.compare-col li {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.compare-col li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}
.compare-them {
    background: var(--white);
    border: 1px solid #e0ddd6;
}
.compare-them h3 { color: var(--text-light); }
.compare-them li { color: var(--text-light); }
.compare-them li::before { color: #ccc; }
.compare-us {
    background: var(--navy);
}
.compare-us h3 { color: var(--gold); }
.compare-us li { color: rgba(245, 243, 239, 0.75); }
.compare-us li::before { color: var(--gold); }


/* ── TESTIMONIAL ───────────────────────────────── */
.hps-testimonial {
    padding: 100px 0;
    background: var(--white);
}
.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 300;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.4;
}
blockquote {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--navy);
    font-style: italic;
    margin-bottom: 32px;
}
.author-info strong {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    display: block;
}
.author-info span {
    font-size: 13px;
    color: var(--text-light);
}


/* ── FINAL CTA ─────────────────────────────────── */
.hps-final-cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 46, 0.88);
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 32px;
}
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 243, 239, 0.6);
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ── FOOTER ────────────────────────────────────── */
.hps-footer {
    background: var(--navy);
}
.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(176, 152, 88, 0.1);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 16px;
}
.footer-logo .logo-home,
.footer-logo .logo-page,
.footer-logo .logo-dot {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--cream);
    display: inline;
}
.footer-logo .logo-home { font-weight: 300; }
.footer-logo .logo-dot { color: var(--gold); }
.footer-logo .logo-page { font-weight: 500; }
.footer-logo .logo-sub {
    font-family: var(--font-accent);
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--gold);
    margin-top: 3px;
}
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 243, 239, 0.4);
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(245, 243, 239, 0.4);
    padding: 8px 12px;
    border: 1px solid rgba(245, 243, 239, 0.1);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
}
.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(245, 243, 239, 0.5);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
    padding: 24px 0;
}
.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(245, 243, 239, 0.25);
}


/* ── SCROLL REVEAL ─────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hps-nav { display: none; }
    .hps-header-actions { display: none; }
    .hps-burger { display: flex; }
    
    .hero-line { font-size: 36px; }
    .hero-sub { font-size: 15px; }
    
    .problem-grid { grid-template-columns: 1fr; gap: 48px; }
    .problem-right { padding-top: 0; }
    
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 36px 28px; }
    
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-card { height: 350px; }
    .portfolio-card.portfolio-featured { height: 400px; }
    
    .compare-grid { grid-template-columns: 1fr; }
    
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .footer-container { flex-direction: column; gap: 8px; text-align: center; }
    
    .stats-container { flex-wrap: wrap; gap: 24px; }
    .stat-divider { display: none; }
}
