/* ============================================
   Bailey Alexis — Beauty & Hair Salon
   Bold Editorial · Midnight Blue + Mint
   ============================================ */

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

:root {
    --midnight: #0a1628;
    --midnight-light: #132038;
    --midnight-mid: #1a2d4a;
    --mint: #5eead4;
    --mint-dark: #34d4b8;
    --mint-light: #99f6e4;
    --mint-pale: #e0f7f3;
    --cream: #faf8f5;
    --cream-dark: #f0ece6;
    --warm-gray: #6b6560;
    --warm-gray-light: #9a9490;
    --text-dark: #0a1628;
    --text-light: #f5f3f0;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    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;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--midnight);
    margin-bottom: 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
}

.btn-primary:hover {
    background: var(--mint-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 234, 212, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--midnight);
    border: 1.5px solid var(--midnight);
}

.btn-ghost:hover {
    background: var(--midnight);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--midnight);
}

.btn-white:hover {
    background: var(--mint-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--midnight);
    color: var(--mint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight);
    letter-spacing: -0.01em;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--warm-gray);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--mint-dark);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--midnight);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    background: var(--midnight);
    color: var(--mint) !important;
    border-radius: 60px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--midnight-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.2);
}

.nav-cta::after {
    display: none;
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: var(--midnight);
    background: rgba(10, 22, 40, 0.06);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--midnight);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px 24px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.3s var(--ease-out);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 600;
        color: var(--midnight);
    }

    .nav-cta {
        font-size: 1rem;
        padding: 14px 32px;
    }
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--midnight);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Image Stack */
.hero-visual {
    position: relative;
    height: 680px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.12);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img--main {
    width: 75%;
    height: 82%;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img--accent {
    width: 55%;
    height: 55%;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero-accent-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--mint);
    bottom: 38%;
    left: 58%;
    z-index: 1;
    opacity: 0.6;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray-light);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

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

@media (max-width: 1024px) {
    .hero {
        padding-top: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 480px;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-visual {
        height: 360px;
    }

    .hero-img--main {
        width: 70%;
        height: 80%;
    }

    .hero-img--accent {
        width: 55%;
        height: 55%;
    }

    .hero-accent-circle {
        width: 80px;
        height: 80px;
    }
}

/* --- Services --- */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services-header {
    max-width: 600px;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 32px;
    background: var(--cream);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--midnight);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.15);
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
    color: var(--white);
}

.service-card:hover .service-icon {
    color: var(--mint);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--white);
    color: var(--midnight);
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-icon {
    background: rgba(94, 234, 212, 0.15);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
    transition: color 0.4s ease;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.1);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.12);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--midnight);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mint);
    line-height: 1;
}

.badge-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
}

.about-content .section-headline {
    margin-bottom: 20px;
}

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

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--midnight);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
}

.stat-divider {
    width: 1px;
    background: rgba(10, 22, 40, 0.1);
    align-self: stretch;
}

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

    .about-visual {
        max-width: 480px;
    }

    .about-img-float {
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 640px) {
    .about {
        padding: 80px 0;
    }

    .about-img-float {
        width: 60%;
        right: -10px;
        bottom: -10px;
    }

    .about-badge {
        top: -10px;
        left: -10px;
    }

    .about-stats {
        gap: 20px;
    }
}

/* --- Gallery --- */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-header {
    max-width: 600px;
    margin-bottom: 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.gallery-item--wide {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 400px;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--tall {
        height: 360px;
    }

    .gallery-item {
        height: 240px;
    }

    .gallery-overlay {
        opacity: 1;
    }
}

/* --- CTA Strip --- */
.cta-strip {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-strip-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    color: var(--mint) !important;
}

.cta-strip-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 36px;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-headline {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--white);
    color: var(--midnight);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--midnight);
    line-height: 1.5;
}

.contact-link {
    color: var(--midnight);
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--mint-dark);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(10, 22, 40, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--midnight);
    background: var(--cream);
    transition: all 0.2s ease;
    outline: none;
    appearance: none;
}

.form-input::placeholder {
    color: var(--warm-gray-light);
}

.form-input:focus {
    border-color: var(--mint-dark);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.15);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6560' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(94, 234, 212, 0.15);
    color: var(--mint-dark);
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

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

@media (max-width: 640px) {
    .contact {
        padding: 80px 0;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}

/* --- Footer --- */
.footer {
    background: var(--midnight);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-mark {
    background: var(--midnight-light);
    border: 1px solid rgba(94, 234, 212, 0.2);
}

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

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    line-height: 1.6;
    max-width: 280px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    transition: color 0.2s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone,
.footer-email {
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    transition: color 0.2s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--mint);
}

.footer-address {
    font-size: 0.875rem;
    color: var(--warm-gray);
    line-height: 1.5;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .reveal.revealed {
        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; }
}
