/* ===== Clyde Cafe — Stylesheet ===== */

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

:root {
    --terracotta: hsl(22, 65%, 55%);
    --terracotta-dark: hsl(22, 65%, 45%);
    --terracotta-light: hsl(22, 65%, 65%);
    --sand: hsl(38, 56%, 90%);
    --sand-light: hsl(38, 56%, 95%);
    --sand-dark: hsl(38, 40%, 82%);
    --cream: hsl(36, 60%, 97%);
    --brown-dark: hsl(22, 35%, 18%);
    --brown-mid: hsl(22, 25%, 30%);
    --brown-light: hsl(22, 20%, 42%);
    --white: hsl(0, 0%, 100%);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px hsla(22, 40%, 20%, 0.08);
    --shadow-md: 0 4px 20px hsla(22, 40%, 20%, 0.12);
    --shadow-lg: 0 8px 40px hsla(22, 40%, 20%, 0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--brown-dark);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    line-height: 1.2;
    color: var(--brown-dark);
}

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

a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dark); }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn-outline:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: hsla(22, 65%, 55%, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(var(--cream), 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid hsla(22, 40%, 85%, 0.3);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--brown-dark);
}
.logo:hover { color: var(--brown-dark); }

.logo-icon {
    color: var(--terracotta);
    flex-shrink: 0;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown-mid);
    transition: all var(--transition);
}
.main-nav a:hover {
    color: var(--terracotta);
    background: hsla(22, 65%, 55%, 0.08);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--sand);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(22, 65%, 55%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brown-mid);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--brown-dark);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--brown-light);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--terracotta);
}
.stat-label {
    font-size: 0.78rem;
    color: var(--brown-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 640px;
}

.hero-img-main {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero-img-accent {
    position: absolute;
    bottom: 40px;
    left: -50px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.hero-img-accent img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-float-card {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.float-emoji { font-size: 1.5rem; }
.hero-float-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--brown-dark);
}
.hero-float-card span {
    font-size: 0.75rem;
    color: var(--brown-light);
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
}
.hero-wave svg { width: 100%; height: 100%; }

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

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

.about-images {
    position: relative;
    height: 560px;
}

.about-img-lg {
    width: 75%;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-sm {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--cream);
}
.about-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -20px;
    right: 30%;
    background: var(--terracotta);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-experience .exp-num {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    line-height: 1;
}
.about-experience .exp-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.about-content .section-title { margin-bottom: 24px; }
.about-content p {
    color: var(--brown-light);
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: hsla(22, 65%, 55%, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

.feature-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.feature-item p {
    font-size: 0.88rem;
    margin: 0;
    color: var(--brown-light);
}

/* --- Menu --- */
.menu {
    padding: 100px 0;
    background: var(--sand);
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.menu-header .section-title { margin-bottom: 16px; }
.menu-intro {
    color: var(--brown-light);
    font-size: 1.05rem;
}

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

.menu-cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--sand-dark);
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown-mid);
    cursor: pointer;
    transition: all var(--transition);
}
.menu-cat-btn:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}
.menu-cat-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}

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

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card.hidden {
    display: none;
}

.menu-card-img {
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

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

.menu-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.menu-card-top h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.menu-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 50px;
    background: hsla(22, 65%, 55%, 0.1);
    color: var(--terracotta);
}
.menu-tag.popular {
    background: hsla(22, 65%, 55%, 0.2);
    color: var(--terracotta-dark);
}

.menu-card-body p {
    font-size: 0.88rem;
    color: var(--brown-light);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.88rem;
    color: var(--brown-light);
    font-style: italic;
}

/* --- Community --- */
.community {
    padding: 100px 0;
    background: var(--cream);
}

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

.community-content .section-title { margin-bottom: 24px; }
.community-content p {
    color: var(--brown-light);
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.community-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.highlight:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: hsla(22, 65%, 55%, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}
.highlight strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.highlight span {
    font-size: 0.85rem;
    color: var(--brown-light);
}

/* Community image stack */
.community-visual { position: relative; }

.community-img-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.comm-img-1 {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.comm-img-1 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.comm-img-2 {
    margin-left: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.comm-img-2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.comm-img-3 {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.comm-img-3 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* --- Visit --- */
.visit {
    padding: 100px 0;
    background: var(--sand);
}

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

.visit-info .section-title { margin-bottom: 36px; }

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    box-shadow: var(--shadow-sm);
}
.detail-icon svg { stroke: var(--terracotta); }

.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.visit-detail p {
    font-size: 0.92rem;
    color: var(--brown-light);
    line-height: 1.6;
}
.visit-detail a {
    color: var(--terracotta);
    font-weight: 600;
}
.visit-detail a:hover { color: var(--terracotta-dark); }

.map-btn { margin-top: 8px; }

.visit-map {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, hsla(22, 65%, 55%, 0.06) 0%, hsla(38, 56%, 90%, 0.5) 100%);
    border-radius: var(--radius-xl);
}

.map-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.map-address {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.map-hint {
    font-size: 0.88rem;
    color: var(--brown-light);
}

/* --- Footer --- */
.site-footer {
    background: var(--brown-dark);
    color: hsla(0, 0%, 100%, 0.7);
    padding: 64px 0 0;
}

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

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--terracotta-light); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}
.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--terracotta-light);
}
.footer-contact a {
    color: hsla(0, 0%, 100%, 0.7);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--terracotta-light); }

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: hsla(0, 0%, 100%, 0.4);
}

/* --- Scroll to top --- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--terracotta);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 999;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-visual { height: 500px; }
    .hero-img-main { height: 420px; }
    .hero-img-accent { left: -20px; width: 180px; }
    .about-grid,
    .community-grid,
    .visit-grid { gap: 48px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid hsla(22, 40%, 85%, 0.3);
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 4px;
    }
    .main-nav a {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }
    .main-nav a:hover {
        background: hsla(22, 65%, 55%, 0.08);
    }

    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        height: 400px;
        order: -1;
    }
    .hero-img-main { height: 320px; }
    .hero-img-accent {
        width: 140px;
        left: 10px;
        bottom: 20px;
    }
    .hero-float-card {
        right: 10px;
        top: 20px;
        padding: 12px 16px;
    }
    .hero-float-card strong { font-size: 0.8rem; }
    .hero-float-card span { font-size: 0.7rem; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.2rem; }

    .about-grid,
    .community-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images { height: 400px; }
    .about-img-lg { height: 360px; }
    .about-img-sm { width: 60%; }

    .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .comm-img-2 { margin-left: 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { flex-wrap: wrap; }
    .stat-divider { display: none; }
    .menu-categories { gap: 8px; }
    .menu-cat-btn { padding: 8px 16px; font-size: 0.82rem; }
}

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