.ambient-shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

.zoom-img {
    transition: transform 0.5s ease;
}

.group:hover .zoom-img {
    transform: scale(1.05);
}

:root {
    --gold-deep: #8a5a12;
    --gold-main: #b8872f;
    --gold-light: #f1d58a;
    --gold-soft: #fff4d5;
}

body {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.mobile-line,
.mobile-copy-line {
    display: inline;
}

.bg-primary {
    background-color: var(--gold-main) !important;
    background-image: linear-gradient(135deg, #8a5a12 0%, #c89b3c 48%, #f1d58a 100%) !important;
    box-shadow: 0 12px 28px rgba(184, 135, 47, 0.22);
}

.hover\:bg-primary\/90:hover {
    background-color: #a87724 !important;
    background-image: linear-gradient(135deg, #76500f 0%, #b8872f 48%, #e3c56f 100%) !important;
}

.hover\:bg-primary:hover {
    background-color: var(--gold-main) !important;
    background-image: linear-gradient(135deg, #8a5a12 0%, #c89b3c 48%, #f1d58a 100%) !important;
}

.bg-primary\/10 {
    background-color: rgba(184, 135, 47, 0.12) !important;
    background-image: linear-gradient(135deg, rgba(184, 135, 47, 0.16), rgba(241, 213, 138, 0.24)) !important;
}

.text-primary {
    color: var(--gold-main) !important;
}

.border-primary,
.focus\:border-primary:focus {
    border-color: var(--gold-main) !important;
}

.focus\:ring-primary:focus {
    --tw-ring-color: rgba(184, 135, 47, 0.35) !important;
}

.text-secondary-container {
    color: #d5a43a !important;
}

.brand-logo {
    width: clamp(72px, 7vw, 88px);
    height: auto;
    display: block;
    filter: contrast(1.12) saturate(1.08) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.drawer-logo {
    width: 92px;
    height: auto;
    display: block;
    filter: contrast(1.12) saturate(1.08) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.footer-logo {
    width: 102px;
    height: auto;
    display: block;
    filter: contrast(1.12) saturate(1.08) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 9px;
    border-radius: 999px;
    color: #1f1a12;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    color: var(--gold-deep);
    background: linear-gradient(135deg, rgba(184, 135, 47, 0.12), rgba(241, 213, 138, 0.24));
    transform: translateY(-1px);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 12px;
    color: #201810;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.mobile-nav-link:hover {
    color: var(--gold-deep);
    background: linear-gradient(135deg, rgba(184, 135, 47, 0.13), rgba(241, 213, 138, 0.24));
    transform: translateX(-2px);
}

.comparison-slider {
    --slider-position: 50%;
    --comparison-width: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(184, 135, 47, 0.22);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    cursor: ew-resize;
    touch-action: pan-y;
}

.comparison-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--slider-position);
    height: 100%;
    overflow: hidden;
    border-right: 2px solid #ffffff;
}

.overlay .comparison-image {
    width: var(--comparison-width);
    max-width: none;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: var(--slider-position);
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.comparison-badge {
    position: absolute;
    top: 16px;
    z-index: 12;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.comparison-badge-before {
    left: 16px;
    background: rgba(34, 34, 34, 0.82);
}

.comparison-badge-after {
    right: 16px;
    background: linear-gradient(135deg, #8a5a12 0%, #c89b3c 55%, #f1d58a 100%);
}

.comparison-guide {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 12;
    width: max-content;
    max-width: calc(100% - 32px);
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: linear-gradient(135deg, rgba(58, 35, 5, 0.94), rgba(184, 135, 47, 0.96));
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 70;
    width: min(86vw, 360px);
    height: 100vh;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    box-shadow: -20px 0 45px rgba(0, 0, 0, 0.12);
}

.menu-open {
    overflow: hidden;
}

.menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.menu-open .mobile-drawer {
    transform: translateX(0);
}

.review-marquee {
    position: relative;
    overflow: hidden;
}

.review-marquee::before,
.review-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 80px;
    height: 100%;
    pointer-events: none;
}

.review-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f8f8f8 0%, rgba(248, 248, 248, 0) 100%);
}

.review-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f8f8f8 0%, rgba(248, 248, 248, 0) 100%);
}

.review-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: review-slide 42s linear infinite;
}

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

.review-card {
    width: min(82vw, 360px);
    flex: 0 0 auto;
}

.review-card-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

@keyframes review-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (max-width: 767px) {
    .brand-logo {
        width: 72px;
    }

    .mobile-line,
    .mobile-copy-line {
        display: block;
    }

    .mobile-copy-line {
        margin-top: 4px;
    }

    main section h1,
    main section h2 {
        display: block;
        width: 100%;
        max-width: 11em;
        margin-right: auto;
        margin-left: auto;
        line-height: 1.25;
        text-align: center !important;
    }

    main section h1 .mobile-line,
    main section h2 .mobile-line {
        width: 100%;
        text-align: center !important;
    }

    main section > div,
    main section .text-center,
    main section .fade-up:has(h1),
    main section .fade-up:has(h2) {
        text-align: center !important;
    }

    main section p {
        max-width: 18em;
        line-height: 1.75;
    }

    .footer-logo {
        width: 92px;
        margin-right: auto;
        margin-left: auto;
    }

    .section-mobile-tight {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    main section h1,
    main section h2,
    main section h3,
    main section p {
        text-align: center;
    }

    main section h1 + p,
    main section h2 + p,
    main section .fade-up > p {
        margin-right: auto;
        margin-left: auto;
    }

    main section .fade-up > span {
        margin-right: auto;
        margin-left: auto;
    }

    main section .fade-up > .flex {
        align-items: center;
        justify-content: center;
    }

    main > section:first-child .fade-up {
        text-align: center;
    }

    main > section:first-child .fade-up > span {
        display: inline-flex;
        justify-content: center;
    }

    main > section:first-child .fade-up h1,
    main > section:first-child .fade-up p {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    main > section:first-child .fade-up .flex {
        align-items: center;
        justify-content: center;
    }

    #faq summary {
        align-items: flex-start;
    }

    #faq summary h3 {
        flex: 1;
        text-align: left;
        line-height: 1.45;
    }

    #faq details p {
        text-align: left;
        max-width: none;
    }

    footer,
    footer > div,
    footer div {
        text-align: center;
    }

    footer > div {
        align-items: center !important;
    }

    footer .flex {
        justify-content: center;
    }

    .comparison-slider {
        width: calc(100vw - 24px);
        max-width: none;
        margin-right: calc(50% - 50vw + 12px);
        margin-left: calc(50% - 50vw + 12px);
        aspect-ratio: 1 / 0.82;
        border-radius: 14px;
    }

    .slider-handle {
        width: 48px;
        height: 48px;
    }

    .comparison-badge {
        top: 14px;
        padding: 8px 11px;
        font-size: 12px;
    }

    .comparison-badge-before {
        left: 12px;
    }

    .comparison-badge-after {
        right: 12px;
    }

    .comparison-guide {
        bottom: 12px;
        width: calc(100% - 28px);
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1.35;
    }

    .review-marquee::before,
    .review-marquee::after {
        width: 36px;
    }
}
