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

:root {
    --green-900: #064E3B;
    --green-800: #065F46;
    --green-700: #047857;
    --green-600: #059669;
    --green-500: #10B981;
    --green-400: #34D399;
    --green-100: #D1FAE5;
    --green-50:  #ECFDF5;
    --cream:     #F5F5DC;
    --cream-light:#FAFAF0;
    --white:     #FFFFFF;
    --dark:      #1A1A1A;
    --gray-900:  #111827;
    --gray-700:  #374151;
    --gray-500:  #6B7280;
    --gray-300:  #D1D5DB;
    --gray-100:  #F3F4F6;
    --accent:    #F59E0B;
    --accent-light:#FDE68A;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(6, 78, 59, 0.08);
    --shadow-lg: 0 12px 48px rgba(6, 78, 59, 0.12);
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 240, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 32px rgba(6, 78, 59, 0.1);
}

.nav-container {
    max-width: 1200px;
    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;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--green-900);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-600);
    transition: width 0.3s;
}

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

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

.nav-cta {
    background: var(--green-900);
    color: var(--cream) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--green-700);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--green-900);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--green-900);
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.hero-shape--1 {
    width: 600px;
    height: 600px;
    background: var(--green-400);
    top: -200px;
    right: -100px;
}

.hero-shape--2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 10%;
    left: 5%;
    opacity: 0.1;
}

.hero-shape--3 {
    width: 150px;
    height: 150px;
    background: var(--cream);
    top: 20%;
    left: 15%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.08;
}

.hero-shape--4 {
    width: 80px;
    height: 80px;
    background: var(--accent);
    top: 15%;
    right: 25%;
    border-radius: 4px;
    transform: rotate(45deg);
    opacity: 0.15;
}

.hero-shape--5 {
    width: 200px;
    height: 200px;
    background: var(--green-500);
    bottom: -50px;
    right: 30%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.07;
}

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

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-card--main {
    max-width: 520px;
}

.hero-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-600), var(--accent));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-50);
    color: var(--green-800);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.05;
    color: var(--green-900);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-subheadline {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn--primary {
    background: var(--green-900);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

.btn--secondary {
    background: transparent;
    color: var(--green-900);
    border: 2px solid var(--green-900);
}

.btn--secondary:hover {
    background: var(--green-50);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--green-900);
}

.btn--light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline {
    background: transparent;
    color: var(--green-900);
    border: 2px solid var(--green-900);
}

.btn--outline:hover {
    background: var(--green-900);
    color: var(--cream);
    transform: translateY(-2px);
}

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

/* FLOATING CARDS */
.hero-float {
    position: absolute;
    z-index: 3;
}

.hero-float--1 {
    top: 12%;
    right: 8%;
}

.hero-float--2 {
    bottom: 18%;
    right: 2%;
}

.hero-float--3 {
    bottom: 6%;
    right: 18%;
}

.float-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.float-card--accent {
    background: var(--green-900);
    color: var(--cream);
}

.float-card-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: var(--green-700);
    line-height: 1;
    margin-bottom: 4px;
}

.float-card--accent .float-card-number {
    color: var(--green-400);
}

.float-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.float-card--accent .float-card-label {
    color: var(--cream);
    opacity: 0.8;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero-float--1 .float-card { animation-delay: 0s; }
.hero-float--2 .float-card { animation-delay: 1.3s; }
.hero-float--3 .float-card { animation-delay: 2.6s; }

/* ===== MARQUEE ===== */
.marquee {
    background: var(--green-900);
    padding: 16px 0;
    overflow: hidden;
    border-top: 3px solid var(--accent);
}

.marquee-track {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    white-space: nowrap;
}

.marquee-dot {
    color: var(--accent) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0 !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-700);
    background: var(--green-50);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--green-900);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== MENU SECTION ===== */
.menu-section {
    position: relative;
    padding: 100px 0;
    background: var(--cream-light);
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(6, 78, 59, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.menu-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-cat {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.25s;
}

.menu-cat:hover,
.menu-cat.active {
    border-color: var(--green-900);
    background: var(--green-900);
    color: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
}

.menu-card-tag--green {
    background: var(--green-600);
    color: var(--white);
}

.menu-card-body {
    padding: 20px 24px 24px;
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-900);
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: repeating-linear-gradient(
        45deg,
        var(--green-900),
        var(--green-900) 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.1;
    border-radius: var(--radius);
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

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

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
}

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

.about-stat-number {
    font-size: 2rem;
    margin-bottom: 4px;
}

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

/* ===== BANNER SECTION ===== */
.banner-section {
    position: relative;
    padding: 80px 0;
    background: var(--green-900);
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.banner-sub {
    font-size: 1.05rem;
    color: rgba(245, 245, 220, 0.7);
    max-width: 440px;
    line-height: 1.7;
}

.banner-actions .btn--light {
    white-space: nowrap;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 100px 0;
    background: var(--cream-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-info .section-tag {
    margin-bottom: 16px;
}

.location-info .section-title {
    margin-bottom: 28px;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-phone a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-900);
    transition: color 0.2s;
}

.location-phone a:hover {
    color: var(--green-600);
}

.location-hours {
    margin-top: 32px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow);
}

.location-hours h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--green-900);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.location-hours ul li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
}

.location-hours ul li:last-child {
    border-bottom: none;
}

.location-hours ul li span:first-child {
    font-weight: 600;
    color: var(--gray-900);
}

.location-hours ul li span:last-child {
    color: var(--gray-500);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-link {
    position: relative;
    display: block;
    aspect-ratio: 7/5;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 78, 59, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--cream);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.map-link:hover .map-overlay {
    background: rgba(6, 78, 59, 0.85);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--cream);
}

.cta-card {
    position: relative;
    background: var(--green-900);
    border-radius: var(--radius-lg);
    padding: 72px 60px;
    overflow: hidden;
    text-align: center;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.cta-shape--1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: -100px;
    left: -80px;
}

.cta-shape--2 {
    width: 200px;
    height: 200px;
    background: var(--green-400);
    bottom: -60px;
    right: -40px;
}

.cta-shape--3 {
    width: 100px;
    height: 100px;
    background: var(--cream);
    top: 30%;
    right: 15%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(245, 245, 220, 0.7);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--green-900);
    color: var(--cream);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 245, 220, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.92rem;
    color: rgba(245, 245, 220, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.6);
    transition: color 0.2s;
}

.footer-nav ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.6);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent);
    font-weight: 600;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(245, 245, 220, 0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-float {
        display: none;
    }

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

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

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

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 240, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(6, 78, 59, 0.08);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-card {
        padding: 32px 28px;
    }

    .hero-card--main {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

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

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

    .about-stats {
        gap: 20px;
    }

    .cta-card {
        padding: 48px 28px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .menu-categories {
        gap: 8px;
    }

    .menu-cat {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .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; }
}

/* Ensure content is visible without JS */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
