/* ============================================
   CHOW HAUL SMOKEHOUSE — STYLESHEET
   Palette: Plum (#3B1826) + Amber (#D48838)
   Fonts: Cormorant Garamond + Manrope
   ============================================ */

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

:root {
    --plum: #3B1826;
    --plum-dark: #2A1019;
    --plum-light: #5C2A3E;
    --amber: #D48838;
    --amber-light: #E8A960;
    --amber-dark: #B8702A;
    --cream: #FAF6F1;
    --cream-dark: #F0E8DD;
    --text-dark: #1A0A10;
    --text-muted: #6B5560;
    --text-light: #9A8590;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', -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-sans);
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    -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 {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* --- TYPOGRAPHY --- */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--plum);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--amber-dark);
}

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 241, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 24, 38, 0.08);
    transition: transform 0.4s var(--ease-out), box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(59, 24, 38, 0.08);
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--plum);
    letter-spacing: 0.02em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--amber);
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--amber-dark);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width 0.3s var(--ease-out);
}

.nav-menu a:hover {
    color: var(--plum);
}

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

.nav-cta {
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    color: var(--amber-dark) !important;
    border: 1px solid var(--amber);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease !important;
}

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

.nav-cta:hover {
    background: var(--amber);
    color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hamburger {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--plum);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--plum);
    left: 0;
    transition: transform 0.3s var(--ease-out);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

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

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

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* --- MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: clamp(1.5rem, 4vw, 4rem);
    color: var(--plum);
    transition: transform 0.3s ease;
}

.mobile-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--plum);
    padding: 0.6rem 0;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--amber-dark);
}

.mobile-contact {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.mobile-contact a {
    color: var(--amber-dark);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.mobile-contact a:hover {
    border-color: var(--amber-dark);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    border: 1px solid var(--plum);
}

.btn-primary:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(59, 24, 38, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--plum);
    border: 1px solid rgba(59, 24, 38, 0.3);
}

.btn-ghost:hover {
    border-color: var(--plum);
    background: rgba(59, 24, 38, 0.04);
}

.btn--full {
    width: 100%;
}

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

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    flex: 1;
    padding-bottom: 4rem;
}

.hero-content {
    padding-right: 2rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 2rem;
}

.hero-eyebrow .line {
    width: 48px;
    height: 1px;
    background: var(--amber);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--plum);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--amber-dark);
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.meta-dot {
    color: var(--amber);
}

.hero-phone {
    color: var(--plum);
    border-bottom: 1px solid rgba(59, 24, 38, 0.2);
    transition: border-color 0.3s ease;
}

.hero-phone:hover {
    border-color: var(--amber);
    color: var(--amber-dark);
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-img-wrapper:hover img {
    transform: scale(1.02);
}

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--amber);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.5;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--amber), 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); }
}

/* --- ABOUT --- */
.about {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.about-text .section-title {
    margin-bottom: 2rem;
}

.about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 24, 38, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--plum);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    border-radius: 4px;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6.5;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

/* --- MENU --- */
.menu {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: var(--cream);
}

.menu-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.menu-header .section-title {
    margin-bottom: 0.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.menu-category {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(59, 24, 38, 0.06);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-dark);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--plum);
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 24, 38, 0.08);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.menu-item {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(59, 24, 38, 0.06);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
}

.item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--plum);
}

.item-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-dark);
    background: rgba(212, 136, 56, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
}

.item-detail {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.menu-drinks {
    margin-top: 1.5rem;
}

/* --- GALLERY --- */
.gallery {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    aspect-ratio: 7/5;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(4) {
    grid-column: 1 / 8;
    grid-row: 2 / 3;
    aspect-ratio: 7/5;
}

/* --- VISIT --- */
.visit {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: var(--plum);
    color: var(--white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.visit .section-label {
    color: var(--amber-light);
}

.visit .section-title {
    color: var(--white);
    margin-bottom: 3rem;
}

.visit .section-title em {
    color: var(--amber-light);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
}

.detail-value {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.detail-link {
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.detail-link:hover {
    border-color: var(--amber-light);
    color: var(--amber-light);
}

/* FORM */
.form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: clamp(2rem, 4vw, 3rem);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-group--full {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white);
    transition: border-color 0.3s ease, background 0.3s ease;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--plum);
    color: var(--white);
}

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

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success svg {
    color: var(--amber-light);
    margin-bottom: 1rem;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* --- FOOTER --- */
.footer {
    background: var(--plum-dark);
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amber-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

/* --- RESPONSIVE --- */
@media (max-width: 1023px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 500px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-width: 500px;
    }

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

    .menu-aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

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

    .gallery-item--large,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4/3;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 640px) {
    .hero-scroll {
        display: none;
    }

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- REDUCED MOTION --- */
@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.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; }
}

@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;
    }
}
</style>
