/* #region Variables & Reset */

:root {
    --bg-color: #F5F5F0;
    --text-main: #1C1C1C;
    --accent: #B97455;
    --accent-light: #d6947a;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --spacing-section: 10rem;
    --container-width: 1200px;
    --transition-smooth: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

html {
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}

::selection {
    background: var(--accent);
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

/* #endregion */

/* #region Typography & Utilities */

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.15;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--accent);
    font-style: italic;
}

.tagline {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 2rem;
}

.brand-glow {
    font-weight: 600;
    display: inline-block;
    background: linear-gradient(110deg, var(--accent) 40%, var(--accent-light) 50%, var(--accent) 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmerText 5s infinite linear;
}

@keyframes shimmerText {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

section {
    padding: var(--spacing-section) 2rem;
    position: relative;
}

.section--small-pad-top {
    padding-top: 2rem;
}

.section--no-pad-bottom {
    padding-bottom: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flex-center--large-gap {
    margin-bottom: 5rem;
}

.flex-center--tech-gap {
    margin-bottom: 8rem;
}

.flex-center--medium-gap {
    margin-bottom: 3rem;
}

/* #endregion */

/* #region UI Components */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: curtainReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards 1.0s;
}

.preloader__logo {
    color: var(--bg-color);
    font-family: var(--font-serif);
    font-size: 2rem;
    opacity: 0;
    animation: logoFade 0.8s forwards 0.2s;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30000;
    pointer-events: none;
    will-change: transform;
    opacity: 0;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-outline {
    opacity: 1;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    transition: none;
}

    .cursor-dot.active {
        transform: translate(-50%, -50%) scale(2.5);
    }

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 0;
    transition: width 0.2s, height 0.2s, border-width 0.2s;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.2rem 3rem;
    margin-top: 1rem;
    background-color: var(--accent);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    text-decoration: none;
    border: 1px solid var(--accent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.btn-text {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
    transition: 0.3s;
    display: inline-block;
    margin-top: 1rem;
    cursor: none;
}

.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.lang-switch {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    gap: 0.5rem;
    cursor: none;
}

.lang-opt {
    opacity: 0.5;
    transition: 0.3s;
    color: var(--text-main);
}

    .lang-opt.active {
        opacity: 1;
        color: var(--accent);
    }

    .lang-opt a {
        text-decoration: none;
    }

.back-btn {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
    cursor: none;
}

/* #endregion */

/* #region Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 1rem;
    position: relative;
    background-color: var(--bg-color);
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    filter: blur(80px);
    transform: translateZ(0);
    will-change: transform;
    contain: layout paint;
}

@media (max-width: 900px) {
    #heroCanvas {
        filter: blur(30px);
    }
}

.hero__content {
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1.2s forwards;
    max-width: 900px;
    position: relative;
}

.hero__description {
    margin: 0 auto 3rem auto;
}

/* #endregion */

/* #region Marquee */

.marquee-wrapper {
    background: var(--text-main);
    color: var(--bg-color);
    padding: 2rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: scroll 50s linear infinite;
}

.marquee-item {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 0;
    display: block;
    flex-shrink: 0;
}

/* #endregion */

/* #region Philosophy */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.philosophy__card {
    text-align: center;
    padding: 1rem;
}

.philosophy__number {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-family: var(--font-serif);
}

.philosophy__text {
    font-size: 0.95rem;
    margin: 0 auto;
}

/* #endregion */

/* #region Gallery */

.gallery-container {
    position: relative;
    width: 100%;
    padding: 2rem 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scrollGallery 100s linear infinite;
}

.art-card {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    cursor: none;
    transition: opacity 1s ease;
}

.art-frame {
    width: 350px;
    height: 350px;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.5s ease;
}

.art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.6s ease;
}

.art-info {
    margin-top: 1.5rem;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    color: #555;
}

.art-author {
    font-weight: 600;
    color: var(--text-main);
    display: block;
    margin-bottom: 0.2rem;
    font-style: normal;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* #endregion */

/* #region Manifest */

.manifest-box {
    margin-top: 3rem;
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    border: 2px solid var(--accent);
    display: inline-block;
    max-width: 650px;
    margin-bottom: 4rem;
}

.manifest-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.manifest-text {
    margin-bottom: 0;
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 500;
}

/* #endregion */

/* #region ZigZag */

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
}

    .zigzag-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .zigzag-row:last-child {
        margin-bottom: 0;
    }

.zigzag-text {
    flex: 1;
}

.zigzag-img-wrap {
    flex: 1;
    height: 500px;
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    transition: padding linear 0.3s;
}

.zigzag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active .zigzag-img {
    transform: scale(1);
}

.zigzag-img {
    transform: scale(1.1);
}

/* #endregion */

/* #region Timeline */

.timeline-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.timeline-intro {
    flex: 1;
    padding-right: 3rem;
}

.timeline-wrapper {
    flex: 1;
}

.timeline {
    position: relative;
    padding-left: 3rem;
    border-left: 1px solid #ddd;
}

.timeline__item {
    position: relative;
    padding-bottom: 5rem;
    padding-left: 2rem;
}

    .timeline__item:last-child {
        padding-bottom: 0;
    }

.timeline__dot {
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    transform: translateX(-50%);
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 4px solid var(--bg-color);
    border-radius: 0;
}

.timeline__item--bonus .timeline__dot {
    background: var(--accent);
}

.timeline__item--bonus .timeline__price {
    color: var(--accent);
}

.timeline__item--bonus .timeline__label {
    color: #888;
}

.timeline__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline__label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    font-size: 0.8rem;
}

.timeline__desc {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* #endregion */

/* #region Blog */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: left;
}

.blog-card {
    background: #fff;
    transition: 0.5s;
    cursor: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

a .blog-card {
    text-decoration: none;
}

.blog-img {
    width: 100%;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

    .blog-img img {
        width: 100%;
    }

.blog-content {
    padding: 0 2rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .blog-title a {
        color: var(--text-main);
        text-decoration: none;
    }

.blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* #endregion */

/* #region Order */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

    .popup-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.popup-modal {
    background: #fff;
    width: 100%;
    max-width: 600px;
    padding: 4rem;
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
    transform: translateY(50px);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.popup-overlay.active .popup-modal {
    transform: translateY(0);
}

.popup__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
    z-index: 10002;
    padding: 10px;
}

.popup__header {
    text-align: center;
    margin-bottom: 3rem;
}

.popup__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.popup__subtitle {
    font-size: 0.95rem;
    margin: 0 auto;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #888;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
    background: #fafafa;
}

    .form-input:focus {
        border-color: var(--accent);
        background: #fff;
    }

    .form-input.error {
        border-color: #d32f2f;
        background: #fff0f0;
        animation: shake 0.4s ease-in-out;
    }

.input-error-msg {
    color: #d32f2f;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    display: none;
}

.form-input.error + .input-error-msg {
    display: block;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.radio-group {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: none;
    font-size: 0.95rem;
}

.map-placeholder {
    width: 100%;
    height: 150px;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px dashed #ccc;
    color: #666;
    margin-bottom: 1.5rem;
    transition: 0.3s;
    font-size: 0.9rem;
}

.checkbox-group {
    text-align: left;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

    .checkbox-group input {
        margin-top: 4px;
        flex-shrink: 0;
    }

    .checkbox-group a {
        color: var(--text-main);
        text-decoration: underline;
        cursor: none;
    }

.btn-submit {
    width: 100%;
    background: var(--text-main);
    color: #fff;
    border: none;
    padding: 1.4rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-top: 1rem;
    cursor: none;
    transition: 0.3s;
}

#successView {
    display: none;
    text-align: center;
    animation: fadeUp 0.5s forwards;
}

.success-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.check-svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
    stroke-width: 3;
    fill: none;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.check-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.draw-check .check-path {
    animation: dash 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.3s;
}

.success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.success-lead {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* #endregion */

/* #region Footer */

footer {
    background: #111;
    color: #888;
    padding: 6rem 2rem 3rem;
    text-align: center;
}

.footer__logo {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 3rem;
    display: block;
}

.footer__utility {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

    .footer__utility a {
        color: #ccc;
        text-decoration: none;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: 0.3s;
        cursor: none;
    }

.footer__projects {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
    margin-top: 2rem;
}

.footer__projects-link {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
    transition: 0.3s;
    cursor: none;
}

.footer__copyright {
    color: #444;
    font-size: 0.8rem;
    margin: 2rem auto 0 auto;
}

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

/* #endregion */

/* #region Animations */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes curtainReveal {
    to {
        transform: translateY(-100%);
    }
}

@keyframes logoFade {
    to {
        opacity: 1;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes dash {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.reveal,
.immediate-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .reveal.active,
    .immediate-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* #endregion */

/* #region Hover Effects */

@media (hover: hover) and (pointer: fine) {
    body:hover .cursor-outline.hovered {
        width: 60px;
        height: 60px;
        background-color: transparent;
        border-width: 2px;
    }

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

    .btn-primary:hover {
        background-color: transparent;
        color: var(--accent);
    }

    .btn-text:hover {
        color: var(--accent);
        border-bottom-color: transparent;
    }

    .gallery-track:hover {
        animation-play-state: paused;
    }

    .art-card:hover .art-frame {
        transform: translateY(-15px);
    }

    .art-card:hover .art-img {
        filter: grayscale(0%);
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .map-placeholder:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: #fff;
    }

    .checkbox-group a:hover {
        color: var(--accent);
    }

    .btn-submit:hover {
        background: var(--accent);
    }

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

    .footer__utility a:hover {
        color: var(--accent);
    }

    .footer__projects-link:hover {
        color: #fff;
    }
}

/* #endregion */

/* #region Mobile */

@media (max-width: 900px) {
    :root {
        --spacing-section: 5rem;
    }

    h1 {
        font-size: 3rem;
    }

    .marquee-track {
        gap: 0;
    }

    .marquee-item {
        gap: 2rem;
        padding-right: 2rem;
    }

    .flex-center--large-gap {
        margin-bottom: 2rem !important;
    }

    .flex-center--tech-gap {
        margin-bottom: 2.5rem !important;
    }

    .features-grid {
        gap: 2rem;
        margin-top: 2rem;
    }

        .features-grid > div {
            padding: 0.5rem;
        }

    .zigzag-text {
        text-align: center;
        padding: 0 1rem;
    }

    .timeline-intro {
        padding-right: 0;
        text-align: center;
    }

    .blog-grid {
        text-align: center;
    }

    .timeline-container {
        flex-direction: column;
    }

    .timeline {
        padding-left: 2rem;
        border-left: 2px solid #ddd;
        text-align: left;
    }

    .timeline__dot {
        left: -2rem;
    }

    .zigzag-row, .zigzag-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .zigzag-img-wrap {
        width: 100%;
        height: 350px;
    }

    .top-nav {
        padding: 1.5rem;
    }

    .footer__logo {
        display: none;
    }

    .footer__utility {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 0.5rem;
        text-align: center;
    }

    .footer__projects {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
        line-height: 1.4;
    }

    .footer__projects-link {
        font-size: 0.75rem;
    }

    .btn-primary {
        width: 100%;
        display: flex;
    }

    .popup-modal {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        width: 90%;
    }

    .popup__close {
        top: 10px;
        right: 10px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr !important;
    }

    .success-text {
        margin-bottom: 1.5rem !important;
    }

    .gallery-container {
        height: 500px;
        display: flex;
        justify-content: center;
        overflow: visible;
    }

    .gallery-track {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        animation: none;
    }

    .art-card {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 350px;
        opacity: 0;
        transition: opacity 1s ease;
        pointer-events: none;
    }

        .art-card.active {
            opacity: 1;
            pointer-events: auto;
            z-index: 2;
        }

    .art-img {
        filter: grayscale(0%) !important;
    }

    .cursor-dot, .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* #endregion */

/* #region Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }

    .brand-glow,
    .marquee-track,
    .gallery-track {
        animation: none !important;
    }

    .reveal,
    .immediate-reveal {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* #endregion */

/* #region Touch Devices */

@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* #endregion */
