/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-light: #141414;
    --color-text: #f5f5f0; /* Ivory / White */
    --color-text-muted: #8c8c8c;
    --color-accent: #c4a97f; /* Subtle Champagne / Gold */
    --color-overlay: rgba(10, 10, 10, 0.6);
    --color-overlay-dark: rgba(10, 10, 10, 0.85);

    /* Fonts */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2.5rem;
    --space-lg: 5rem;
    --space-xl: 10rem;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

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

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

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
}

/* ==========================================================================
   MICRO UI (Header, Music, Scroll Arrow)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(1rem, 3vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.header-names {
    font-family: var(--font-sans);
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    letter-spacing: 0.2em;
    font-weight: 300;
    text-transform: uppercase;
    max-width: 40vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}

.rsvp-link {
    font-family: var(--font-sans);
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.rsvp-link:hover {
    color: var(--color-accent);
}

.menu-toggle {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    letter-spacing: 0.2em;
}

.music-btn {
    position: fixed;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    min-width: 3rem;
    height: 3rem;
    border-radius: 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    cursor: pointer;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    mix-blend-mode: difference;
    padding: 0 1rem;
    white-space: nowrap;
}

.music-btn:hover {
    border-color: var(--color-accent);
}

.music-icon {
    font-family: var(--font-sans);
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   OVERLAY MENU
   ========================================================================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    visibility: hidden;
    pointer-events: none;
}

.menu-overlay.is-active {
    visibility: visible;
    pointer-events: all;
}

.menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    transform: scaleX(0);
    transform-origin: right;
}

.menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(1rem, 5vw, 2rem);
}

.menu-list {
    text-align: center;
    width: 100%;
}

.menu-list li {
    margin-bottom: clamp(1rem, 3vw, 2rem);
    overflow: hidden;
}

.menu-link {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: translateY(100%);
    opacity: 0;
    transition: color 0.3s ease;
    word-break: keep-all;
    white-space: normal;
}

.menu-link:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.dark-section {
    padding: clamp(4rem, 10vw, 10rem) 0;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2560&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transform: scale(1.1); /* For zoom out effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 14vw, 8rem);
    line-height: 1.1;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-title {
        flex-direction: row;
        flex-wrap: wrap;
        gap: clamp(1rem, 2vw, 2rem);
        font-size: clamp(4rem, 8vw, 10rem);
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: clamp(5rem, 7vw, 12rem);
    }
}

.hero-name-wrapper, .hero-amp-wrapper {
    overflow: hidden;
    display: block;
}

.hero-name {
    display: inline-block;
    transform: translateY(110%);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.hero-amp {
    display: inline-block;
    font-size: 0.6em;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-accent);
    transform: translateY(110%);
    opacity: 0;
}

.hero-meta {
    margin-top: clamp(1rem, 3vw, 2rem);
    opacity: 0;
}

.hero-date, .hero-location {
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    word-break: keep-all;
}

.hero-scroll {
    position: absolute;
    bottom: clamp(2rem, 5vw, 4rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    width: 100%;
}

.scroll-text {
    font-size: clamp(0.5rem, 1.5vw, 0.6rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #fff;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ─── INTRO ─── */
.intro-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 4rem);
    color: var(--color-accent);
    word-break: keep-all;
}

.intro-text {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-family: var(--font-serif);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.line-wrapper {
    overflow: hidden;
    margin-bottom: 1rem;
}

.reveal-line {
    transform: translateY(100%);
    font-size: clamp(1rem, 3vw, 1.8rem) !important;
    line-height: 1.5 !important;
    word-break: keep-all;
}

/* ─── COUPLE ─── */
.couple-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    min-height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(3rem, 10vw, 5rem) 0;
}

.couple-image-wrapper {
    position: absolute;
    width: 40%;
    max-width: 400px;
    height: 60vh;
    overflow: hidden;
}

.img-1 {
    top: 5%;
    left: 5%;
}

.img-2 {
    bottom: 5%;
    right: 5%;
}

.couple-img {
    width: 100%;
    height: 120%; /* For parallax */
    background-size: cover;
    background-position: center;
}

.bride-img {
    background-image: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?q=80&w=1200&auto=format&fit=crop');
}

.groom-img {
    background-image: url('https://images.unsplash.com/photo-1509927083803-4bd519298ac4?q=80&w=1200&auto=format&fit=crop');
}

.couple-names-wrapper {
    position: relative;
    z-index: 10;
    mix-blend-mode: difference;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.couple-names {
    font-size: clamp(2.5rem, 8vw, 6rem) !important;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.2;
    word-break: keep-all;
}

/* ─── DATE ─── */
.date-section {
    text-align: center;
}

.date-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 1;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.date-part-wrapper {
    overflow: hidden;
}

.date-part {
    display: inline-block;
    transform: translateY(100%);
    word-break: keep-all;
}

.date-month {
    font-size: clamp(2.5rem, 10vw, 6rem);
    color: var(--color-accent);
    font-style: italic;
    margin: 1rem 0;
}

.date-location {
    font-family: var(--font-sans);
    letter-spacing: 0.2em;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    text-transform: uppercase;
    line-height: 1.8;
}

/* ─── COUNTDOWN ─── */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    justify-items: center;
    width: 100%;
}

@media (min-width: 600px) {
    .countdown-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cd-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cd-label {
    font-family: var(--font-sans);
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
    word-break: keep-all;
}

/* ─── TIMELINE ─── */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 0.1em;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    word-break: keep-all;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem) 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0; /* Animated via JS */
    background-color: var(--color-accent);
    z-index: 1;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    position: relative;
    z-index: 2;
    gap: 1rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.tl-time {
    width: 45%;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--color-accent);
}

.timeline-item:nth-child(even) .tl-time {
    text-align: right;
}

.timeline-item:nth-child(odd) .tl-time {
    text-align: left;
}

.tl-content {
    width: 45%;
}

.timeline-item:nth-child(even) .tl-content {
    text-align: left;
}

.timeline-item:nth-child(odd) .tl-content {
    text-align: right;
}

.tl-content h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    word-break: keep-all;
}

.tl-content p {
    color: var(--color-text-muted);
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.timeline-section > .container > p.fade-up,
.gallery-section > .container > p.fade-up,
.final-section > .container > p.fade-up:first-of-type,
.venue-content > p.fade-up {
    font-size: clamp(1rem, 3vw, 1.5rem) !important;
}

.final-section > .container > p.fade-up:last-of-type {
    font-size: clamp(0.7rem, 2vw, 0.9rem) !important;
}

/* ─── VENUE ─── */
.venue-section {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.venue-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.venue-bg {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?q=80&w=2560&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax fallback */
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-dark);
}

.venue-content {
    position: relative;
    z-index: 2;
    padding: clamp(1rem, 4vw, 2rem);
    width: 100%;
    max-width: 800px;
}

.venue-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.venue-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1rem;
    word-break: keep-all;
}

.venue-location {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--color-text-muted);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.btn-outline, .btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    font-family: var(--font-sans);
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--color-text);
    background: transparent;
    color: var(--color-text);
    min-height: 48px;
    text-align: center;
    word-break: keep-all;
}

.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-solid {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-solid:hover {
    background: transparent;
    color: var(--color-text);
}

/* Map Buttons specific */
.venue-content div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 1rem !important;
}
@media (min-width: 768px) {
    .venue-content div[style*="display: flex"] {
        flex-direction: row !important;
    }
}
.venue-content div[style*="display: flex"] a {
    width: 100% !important;
}
@media (min-width: 768px) {
    .venue-content div[style*="display: flex"] a {
        width: auto !important;
        flex: 1;
    }
}


/* ─── GALLERY ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: clamp(1rem, 3vw, 2rem);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.item-large {
    grid-column: 1 / 9;
    grid-row: span 5;
    aspect-ratio: 16 / 9;
}

.item-portrait {
    grid-column: 9 / 13;
    grid-row: span 6;
    aspect-ratio: 3 / 4;
}

.item-landscape {
    grid-column: 2 / 8;
    grid-row: span 4;
    aspect-ratio: 3 / 2;
    margin-top: -2rem;
}

.gallery-item:last-child {
    grid-column: 8 / 12;
    grid-row: span 5;
    aspect-ratio: 4 / 5;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
    transition: color 0.3s ease;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    color: var(--color-accent);
}

.lightbox-close { top: 1rem; right: clamp(1rem, 3vw, 2rem); font-size: 3rem; }
.lightbox-prev { left: clamp(0.5rem, 2vw, 1rem); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(0.5rem, 2vw, 1rem); top: 50%; transform: translateY(-50%); }

/* ─── RSVP ─── */
.rsvp-section {
    text-align: center;
}

.rsvp-subtitle {
    margin-bottom: clamp(2rem, 5vw, 3rem);
    color: var(--color-text-muted);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    padding: 0 1rem;
    line-height: 1.5;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.form-group {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

input, textarea, select {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: clamp(0.8rem, 2vw, 1.2rem) 0 !important;
    color: var(--color-text) !important;
    font-family: var(--font-sans) !important;
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
    transition: border-color 0.3s ease !important;
    min-height: 48px !important;
    border-radius: 0 !important;
}

input:focus, textarea:focus, select:focus {
    outline: none !important;
    border-bottom-color: var(--color-accent) !important;
}

textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.rsvp-feedback {
    margin-top: 2rem;
    min-height: 24px;
    color: var(--color-accent);
    font-size: clamp(0.8rem, 2vw, 1rem);
    padding: 0 1rem;
}

/* ─── FOOTER ─── */
.footer {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* ==========================================================================
   ANIMATION CLASSES
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.mask-reveal {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 767px) {
    .header-actions {
        gap: 1rem;
    }
    
    .couple-container {
        flex-direction: column;
        padding: clamp(4rem, 12vw, 6rem) 0;
    }

    .couple-image-wrapper {
        position: relative;
        width: 85%;
        height: 50vh;
        max-width: 100%;
    }

    .img-1 { top: auto; left: auto; margin-bottom: 2rem; align-self: flex-start; }
    .img-2 { bottom: auto; right: auto; margin-top: 2rem; align-self: flex-end; }
    
    .timeline-line { left: clamp(15px, 5vw, 25px); }
    .timeline-progress { left: clamp(15px, 5vw, 25px); }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: clamp(40px, 12vw, 60px);
        gap: 0.5rem;
    }

    .tl-time, .tl-content {
        width: 100% !important;
        text-align: left !important;
    }

    .tl-time { margin-bottom: 0.2rem; }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-item {
        width: 100%;
        margin: 0 !important;
        aspect-ratio: 4/5 !important;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-name, .hero-amp, .reveal-line, .date-part {
        transform: none !important;
        opacity: 1 !important;
    }
    
    .fade-up {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .mask-reveal {
        clip-path: none !important;
    }
    
    .menu-bg {
        transform: scaleX(1) !important;
    }
    
    .menu-link {
        transform: none !important;
        opacity: 1 !important;
    }
}
