/* ============================================
   Highway Liquor — Classic Elegant Stylesheet
   Teal + Slate Grey Palette
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2d3a45;
    background-color: #faf9f7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #1a2632;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #1a4d4d;
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #1a4d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-monogram {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #c8a96e;
    display: block;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c8a96e, transparent);
    margin: 1rem auto 0;
    animation: preloaderLine 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes preloaderLine {
    0% { width: 20px; }
    50% { width: 80px; }
    100% { width: 20px; }
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(26, 77, 77, 0.97);
    padding: 0.65rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

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

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    z-index: 1001;
}

.logo-mark {
    color: #c8a96e;
    flex-shrink: 0;
}

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

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

.logo--light .logo-name { color: #fff; }
.logo--light .logo-tagline { color: rgba(255,255,255,0.6); }

/* ---------- Navigation ---------- */
.primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(26, 77, 77, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.primary-nav.open {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #c8a96e;
    background: rgba(200, 169, 110, 0.1);
    transform: translateY(-2px);
}

.nav-phone {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.nav-phone:hover {
    color: #c8a96e;
}

/* ---------- Nav Toggle ---------- */
.nav-toggle {
    z-index: 1001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: 0;
}

.hamburger::after {
    bottom: 0;
}

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

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

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 77, 77, 0.88) 0%,
        rgba(26, 50, 55, 0.82) 50%,
        rgba(15, 35, 40, 0.85) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 800px;
    z-index: 1;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a96e;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease 0.5s forwards;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease 0.7s forwards;
}

.hero-headline em {
    font-style: italic;
    color: #c8a96e;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease 0.9s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease 1.1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroFadeUp 0.8s ease 1.5s forwards;
    opacity: 0;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #c8a96e;
    color: #1a2632;
    border-color: #c8a96e;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #d4b878;
    border-color: #d4b87e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: #c8a96e;
    color: #c8a96e;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: rgba(26, 77, 77, 0.8);
    border-color: rgba(26, 77, 77, 0.3);
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: #1a4d4d;
    color: #1a4d4d;
    transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section {
    padding: 6rem 0;
}

.section-header {
    max-width: 640px;
    margin-bottom: 3.5rem;
}

.section-header--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #1a4d4d;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #1a2632;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #5a6b78;
    line-height: 1.8;
}

/* ---------- Categories ---------- */
.categories {
    background: #faf9f7;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    group: true;
}

.category-img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.08);
}

.category-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 38, 50, 0.7) 0%, transparent 60%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 1;
}

.category-icon {
    display: inline-flex;
    color: #c8a96e;
    margin-bottom: 0.5rem;
}

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}

.category-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ---------- Story ---------- */
.story {
    background: #fff;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-images {
    position: relative;
}

.story-img-primary {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 77, 77, 0.15);
}

.story-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 77, 77, 0.2);
    border: 4px solid #fff;
}

.story-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-accent {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a4d4d, #2d6a6a);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.15;
}

.story-content {
    padding: 1rem 0;
}

.story-body {
    font-size: 1.025rem;
    color: #5a6b78;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e4de;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a4d4d;
}

.stat-label {
    font-size: 0.8rem;
    color: #7a8a96;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    background: #e8e4de;
    align-self: stretch;
}

/* ---------- Why Us ---------- */
.why-us {
    background: #f4f1ec;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(26, 77, 77, 0.06);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(26, 77, 77, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d4d, #2d6a6a);
    border-radius: 12px;
    color: #c8a96e;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a2632;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: #5a6b78;
    line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, #1a4d4d 0%, #0f2328 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: #c8a96e !important;
}

.cta-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---------- Visit ---------- */
.visit {
    background: #fff;
}

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

.visit-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.visit-card {
    background: #faf9f7;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(26, 77, 77, 0.06);
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(26, 77, 77, 0.08);
}

.visit-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d4d, #2d6a6a);
    border-radius: 10px;
    color: #c8a96e;
}

.visit-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2632;
    margin-bottom: 0.5rem;
}

.visit-card-text {
    font-size: 0.9rem;
    color: #5a6b78;
    line-height: 1.7;
}

.visit-card-text a {
    color: #1a4d4d;
    font-weight: 500;
}

.visit-card-text a:hover {
    color: #c8a96e;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0;
}

.hours-row .day {
    font-weight: 500;
    color: #2d3a45;
}

.hours-row .time {
    color: #7a8a96;
}

.visit-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 77, 77, 0.1);
}

.map-link {
    position: relative;
    display: block;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(26, 77, 77, 0.6);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.map-link:hover .map-overlay {
    background: rgba(26, 77, 77, 0.8);
}

/* ---------- Footer ---------- */
.site-footer {
    background: #1a2632;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

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

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

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a96e;
    margin-bottom: 1.25rem;
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: #c8a96e;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav a:hover {
    color: #c8a96e;
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-responsible {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 400px;
    text-align: right;
    line-height: 1.6;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a4d4d;
    color: #c8a96e;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(26, 77, 77, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2d6a6a;
    transform: translateY(-3px);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

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

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

    .story-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin-top: -2rem;
        margin-left: auto;
    }

    .story-accent {
        display: none;
    }

    .visit-info {
        grid-template-columns: 1fr;
    }

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

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

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

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

    .footer-responsible {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

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

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

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

    .story-img-secondary {
        width: 85%;
    }
}

/* ---------- Focus Visible ---------- */
:focus-visible {
    outline: 2px solid #c8a96e;
    outline-offset: 2px;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .back-to-top {
        transition: none;
    }
}
