/* ============================================
   TOM LOWE PT - Christchurch Personal Trainer
   Design: Dark bold with blue/teal accents
   Template: B (Service Showcase)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary - Bold Blue */
    --color-primary: #0EA5E9;
    --color-primary-light: #38BDF8;
    --color-primary-dark: #0284C7;
    --color-primary-rgb: 14, 165, 233;

    /* Secondary - Teal */
    --color-secondary: #14B8A6;
    --color-secondary-light: #2DD4BF;
    --color-secondary-dark: #0D9488;

    /* Accent - Electric */
    --color-accent: #22D3EE;

    /* Backgrounds - Dark */
    --color-bg: #0A0F1A;
    --color-bg-elevated: #111827;
    --color-bg-card: #1F2937;
    --color-surface: #0F172A;

    /* Text */
    --color-text: #F8FAFC;
    --color-text-secondary: #CBD5E1;
    --color-text-dim: #94A3B8;
    --color-text-muted: #64748B;

    /* Borders */
    --border-subtle: rgba(14, 165, 233, 0.1);
    --border-default: rgba(14, 165, 233, 0.15);
    --border-accent: rgba(14, 165, 233, 0.3);

    /* Glows */
    --glow-blue: rgba(14, 165, 233, 0.25);
    --glow-teal: rgba(20, 184, 166, 0.25);

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Radius */
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --ease-elegant: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.3s var(--ease-elegant);
    --transition-slow: 0.5s var(--ease-dramatic);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Page Loader ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s var(--ease-elegant), visibility 0.6s;
}

.page-loader.loaded { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }

.loader-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text);
    text-transform: uppercase;
}

.loader-logo span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-top: 8px;
}

.loader-bar {
    width: 100px;
    height: 3px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
    margin: 24px auto 0;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }

.nav-logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-text);
    text-transform: uppercase;
}

.nav-logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 40px; }

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-base);
}

@media (hover: hover) {
    .nav-link:hover { color: var(--color-text); }
    .nav-link:hover::after { width: 100%; }
}

.nav-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (hover: hover) {
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px var(--glow-blue);
    }
}

/* Mobile Nav */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-base);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 26, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav-links.active { display: flex; }
    .nav-mobile-toggle { display: flex; }
    .nav-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
}

.hero-text { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s var(--ease-dramatic) 0.2s both;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s var(--ease-dramatic) 0.3s both;
}

.hero-title em {
    color: var(--color-primary);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.6s var(--ease-dramatic) 0.4s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.6s var(--ease-dramatic) 0.5s both;
}

@media (hover: hover) {
    .hero-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px var(--glow-blue);
    }
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    animation: fadeInUp 0.6s var(--ease-dramatic) 0.6s both;
}

@media (max-width: 900px) {
    .hero-stats { justify-content: center; }
}

.hero-stat { text-align: center; }

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.6s var(--ease-dramatic) 0.4s both;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

/* ---------- Section Base ---------- */
.section {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}
.section-dark { background: var(--color-bg); }
.section-elevated { background: var(--color-bg-elevated); }
.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
}

.section-title em {
    color: var(--color-primary);
    font-style: normal;
}

/* ---------- Services Section (3-Layer Background) ---------- */
#services {
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
#services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1200&q=60') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
#services::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(20, 184, 166, 0.06) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* ---------- About Section (3-Layer Background) ---------- */
#about {
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1200&q=60') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.04;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
#about::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 70%, rgba(14, 165, 233, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* ---------- Results Section (3-Layer Background) ---------- */
#results {
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
#results::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1549576490-b0b4831ef60a?w=1200&q=60') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
#results::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 80%, rgba(14, 165, 233, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 70% 25%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* ---------- Testimonials Section (3-Layer Background) ---------- */
#reviews {
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
#reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1200&q=60') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.04;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
#reviews::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 25% 75%, rgba(14, 165, 233, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 75% 30%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* ---------- Contact Section (3-Layer Background) ---------- */
#contact {
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1200&q=60') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
#contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 60% at 50% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 50% 20%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-8px);
        border-color: var(--border-accent);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }
    .service-card:hover::before { transform: scaleX(1); }
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    margin-bottom: 24px;
    color: var(--color-primary);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    line-height: 1.7;
}

.service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.service-feature svg {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
}

/* ---------- About Grid ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.about-image { position: relative; }

.about-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-text);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
}

.about-image-badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.about-content { padding: 20px 0; }

.about-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-title em {
    color: var(--color-primary);
    font-style: normal;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.about-highlight svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
}

/* ---------- Results Grid ---------- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.result-card {
    background: var(--color-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
}

@media (hover: hover) {
    .result-card:hover {
        transform: translateY(-4px);
        border-color: var(--border-accent);
    }
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ---------- Testimonials Grid ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--color-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 40px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text);
}

.testimonial-info { flex: 1; }
.testimonial-name { font-weight: 600; color: var(--color-text); margin-bottom: 2px; }
.testimonial-meta { font-size: 0.85rem; color: var(--color-text-dim); }

/* ---------- Contact Content ---------- */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-title em {
    color: var(--color-primary);
    font-style: normal;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.contact-buttons { display: flex; flex-direction: column; gap: 16px; align-items: center; }

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text);
}

.contact-btn-secondary {
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--color-text);
}

@media (hover: hover) {
    .contact-btn:hover { transform: translateY(-3px); }
    .contact-btn-primary:hover { box-shadow: 0 12px 35px var(--glow-blue); }
    .contact-btn-secondary:hover { background: rgba(14, 165, 233, 0.1); }
}

.contact-info {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
}

.contact-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-text-dim);
    font-size: 0.95rem;
}

.contact-info-item svg { width: 20px; height: 20px; color: var(--color-primary); }

/* ---------- Footer ---------- */
.footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-text { font-size: 0.85rem; color: var(--color-text-dim); }
.footer-text a { color: var(--color-primary); }

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-dramatic), transform 0.6s var(--ease-dramatic);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .section { padding: 80px 20px; }
    .hero { padding: 100px 20px 60px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .about-highlights { grid-template-columns: 1fr; }
}
