/* ============================================
   TIM HACKNEY APPLIANCE PARTS
   Bold Editorial Style — Teal & Slate Grey
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-teal-50: #f0fdfa;
    --color-teal-100: #ccfbf1;
    --color-teal-200: #99f6e4;
    --color-teal-400: #2dd4bf;
    --color-teal-500: #14b8a6;
    --color-teal-600: #0d9488;
    --color-teal-700: #0f766e;
    --color-teal-800: #115e59;
    --color-teal-900: #134e4a;
    
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-slate-950: #080d17;
    
    --color-white: #ffffff;
    --color-black: #000000;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --fs-hero: clamp(2.25rem, 5vw + 1rem, 4.5rem);
    --fs-h2: clamp(1.75rem, 3.5vw + 0.5rem, 3.25rem);
    --fs-h3: clamp(1.25rem, 2vw + 0.25rem, 1.75rem);
    --fs-body: clamp(1rem, 1.2vw, 1.125rem);
    --fs-small: clamp(0.8125rem, 1vw, 0.9375rem);
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.15);
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: 1.65;
    color: var(--color-slate-800);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-slate-900);
}

em {
    font-style: italic;
    color: var(--color-teal-700);
}

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal-600);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--color-teal-600);
}

.section-title {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-lg);
}

.section-desc {
    font-size: var(--fs-body);
    color: var(--color-slate-500);
    max-width: 540px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-teal-600);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
    background: var(--color-teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-teal-800);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
    margin-top: var(--space-xl);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--color-slate-200);
    padding: var(--space-sm) 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-slate-900);
}

.logo-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-slate-500);
}

.header.scrolled .logo-name { color: var(--color-slate-900); }
.header.scrolled .logo-tag { color: var(--color-slate-500); }

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-600);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-teal-700);
    background: var(--color-teal-50);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-teal-700);
    background: var(--color-teal-50);
    border: 1px solid var(--color-teal-200);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    margin-left: var(--space-md);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-teal-600);
    color: var(--color-white);
    border-color: var(--color-teal-600);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-slate-700);
    border-radius: 2px;
    transition: all var(--transition-base);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-slate-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-list.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: var(--color-slate-800);
    }
    
    .nav-cta {
        margin-left: 0;
        font-size: 1rem;
        margin-top: var(--space-md);
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-5xl) var(--space-xl) var(--space-4xl);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--color-teal-900) 0%,
        var(--color-teal-700) 25%,
        var(--color-teal-600) 50%,
        var(--color-slate-700) 75%,
        var(--color-slate-900) 100%
    );
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 
        radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-teal-200);
    margin-bottom: var(--space-2xl);
}

.eyebrow-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--color-teal-400);
}

.hero-headline {
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.hero-headline em {
    color: var(--color-teal-300);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: var(--color-slate-300);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-slate-300);
}

.trust-item svg {
    color: var(--color-teal-400);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-slate-400);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-teal-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--space-5xl) 0;
    background: var(--color-slate-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-desc {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--color-slate-200);
    transition: all 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-teal-500), var(--color-teal-700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-teal-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-teal-50);
    border-radius: var(--radius-md);
    color: var(--color-teal-700);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--color-teal-600);
    color: var(--color-white);
}

.service-title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-md);
    color: var(--color-slate-900);
}

.service-card p {
    font-size: var(--fs-small);
    color: var(--color-slate-500);
    line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-stat-card {
    position: absolute;
    bottom: -24px;
    right: -16px;
    background: var(--color-teal-700);
    color: var(--color-white);
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-sm);
    color: var(--color-teal-200);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-teal-100);
    line-height: 1.4;
}

.about-content {
    max-width: 520px;
}

.about-body {
    margin-bottom: var(--space-2xl);
}

.about-body p {
    color: var(--color-slate-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-size: var(--fs-small);
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.value-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-teal-100);
    border-radius: 50%;
    color: var(--color-teal-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item span {
    font-size: var(--fs-small);
    color: var(--color-slate-700);
    line-height: 1.5;
}

@media (min-width: 900px) {
    .about-layout {
        grid-template-columns: 0.9fr 1.1fr;
        gap: var(--space-4xl);
    }
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
    padding: var(--space-4xl) 0;
    background: var(--color-slate-900);
    text-align: center;
}

.brands-header {
    margin-bottom: var(--space-3xl);
}

.brands-header .section-title {
    color: var(--color-white);
}

.brands-header .section-title em {
    color: var(--color-teal-400);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.brand-item {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-slate-400);
    padding: var(--space-lg);
    border: 1px solid var(--color-slate-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: default;
}

.brand-item:hover {
    color: var(--color-teal-400);
    border-color: var(--color-teal-700);
    background: rgba(13, 148, 136, 0.06);
}

.brands-note {
    font-size: 0.875rem;
    color: var(--color-slate-500);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: var(--space-5xl) 0;
    background: var(--color-teal-800);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, white 1px, transparent 1px);
    background-size: 40px 40px;
}

.quote {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    color: var(--color-teal-400);
    margin-bottom: var(--space-xl);
    opacity: 0.6;
}

.quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-teal-100);
    margin-bottom: var(--space-2xl);
}

.quote-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.quote-author {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    font-style: normal;
    color: var(--color-white);
}

.quote-location {
    font-size: 0.8125rem;
    color: var(--color-teal-300);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--color-slate-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    max-width: 520px;
}

.contact-intro {
    font-size: var(--fs-small);
    color: var(--color-slate-500);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.contact-detail {
    display: flex;
    gap: var(--space-lg);
}

.detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-teal-50);
    border-radius: var(--radius-md);
    color: var(--color-teal-700);
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-slate-400);
}

.detail-value {
    font-size: 1rem;
    color: var(--color-slate-800);
    line-height: 1.6;
}

.detail-value a {
    color: var(--color-teal-700);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.detail-value a:hover {
    color: var(--color-teal-500);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--color-teal-800) 0%,
        var(--color-teal-600) 50%,
        var(--color-slate-700) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-headline {
    font-size: var(--fs-h2);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.cta-headline em {
    color: var(--color-teal-300);
}

.cta-text {
    font-size: var(--fs-body);
    color: var(--color-slate-300);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-slate-950);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo-name {
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    line-height: 1.7;
    margin-top: var(--space-md);
}

.footer-nav span,
.footer-contact span {
    display: block;
}

.footer-nav-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-slate-500);
    margin-bottom: var(--space-lg);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--color-slate-400);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-teal-400);
}

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--color-slate-400);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-phone {
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--color-teal-400) !important;
}

.footer-bottom {
    border-top: 1px solid var(--color-slate-800);
    padding-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-slate-600);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
    
    .scroll-line {
        animation: none;
        opacity: 0.5;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-teal-500);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .header, .hero-scroll, .cta-banner { display: none; }
    body { color: #000; background: #fff; }
    .hero { min-height: auto; padding: 2rem 0; }
    .hero-gradient { background: var(--color-slate-800) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
