@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("assets/fonts/Inter-300.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/Inter-400.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("assets/fonts/Inter-600.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("assets/fonts/Inter-800.ttf") format("truetype");
}

:root {
    --bg: #f8fafc;
    --surface: rgba(255, 255, 255, 0.95);
    --surface-strong: #ffffff;
    --ink: #1e293b;
    --muted: #64748b;
    --line: rgba(31, 42, 55, 0.12);
    --brand: #0ea5e9;
    --brand-strong: #0284c7;
    --brand-deep: #0c4a6e;
    --accent: #f97316;
    --accent-soft: #e0f2fe;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 30px 80px rgba(15, 23, 42, 0.2);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, #f8fafc 0%, #f8fafc 100%);
}

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

button,
input,
textarea {
    font: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-logo,
.footer-logo,
.showcase-logo {
    border-radius: 999px;
    background: #ffffff;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.14);
}

.brand-text,
.footer-brand {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
    line-height: 1;
}

.brand-title span {
    color: #38bdf8;
}

.brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    opacity: 0.96;
}

.desktop-nav,
.header-actions,
.language-switcher,
.mobile-nav,
.stats-grid,
.feature-list,
.tours-grid,
.reviews-grid,
.pricing-options,
.field-grid,
.footer-inner,
.social-links {
    display: flex;
}

.desktop-nav {
    gap: 0.75rem;
}

.nav-button,
.mobile-nav-button,
.lang-button,
.menu-toggle,
.primary-button,
.secondary-button,
.social-link {
    border: 0;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-button,
.mobile-nav-button {
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.78rem 1.15rem;
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.07);
}

.nav-button:hover,
.mobile-nav-button:hover,
.lang-button:hover,
.primary-button:hover,
.secondary-button:hover,
.social-link:hover {
    transform: translateY(-1px);
}

.nav-button:hover,
.mobile-nav-button:hover,
.secondary-button:hover {
    background: #0ea5e9;
    color: #ffffff;
}

.header-actions {
    align-items: center;
    gap: 0.9rem;
}

.language-switcher {
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.07);
}

.lang-button {
    background: transparent;
    color: var(--muted);
    padding: 0.5rem 0.6rem;
    min-width: 2.15rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lang-button.active {
    background: #0ea5e9;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.07);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--ink);
    border-radius: 999px;
}

.mobile-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.mobile-menu-inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0 1.25rem;
    display: grid;
    gap: 1rem;
}

.mobile-language-switcher {
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

.mobile-nav {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-nav-button {
    width: min(100%, 18rem);
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 8.5rem 0 4rem;
    color: #ffffff;
}

.hero-media,
.hero-overlay,
.hero-image,
.hero-lights {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(9, 17, 29, 0.28) 0%, rgba(9, 17, 29, 0.58) 55%, rgba(9, 17, 29, 0.82) 100%),
        linear-gradient(120deg, rgba(14, 165, 233, 0.16), rgba(249, 115, 22, 0.12));
}

.hero-lights span {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 222, 173, 0.95) 0%, rgba(249, 115, 22, 0.32) 55%, rgba(249, 115, 22, 0) 100%);
    animation: twinkle var(--duration, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0.45;
}

.hero-content,
.hero-panel,
.about-showcase,
.pricing-card,
.contact-card {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    gap: 2rem;
}

.hero-panel {
    max-width: 52rem;
    padding: 2rem 2.25rem;
    border-radius: 2rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-strong);
}

.eyebrow,
.section-kicker {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    color: #ffe2bc;
}

.hero-title,
.section-title {
    margin: 0;
    line-height: 1.05;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-weight: 800;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.hero-subtitle,
.section-subtitle,
.section-text,
.contact-subtitle {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.75;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.primary-button {
    margin-top: 1.4rem;
    background: linear-gradient(135deg, var(--accent), #ef4444);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(239, 68, 68, 0.28);
}

.primary-button-wide {
    width: 100%;
}

.secondary-button {
    background: #0f172a;
    color: #ffffff;
}

.secondary-button:hover {
    background: #0ea5e9;
}

.stats-grid {
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-card {
    min-width: 12rem;
    padding: 1.2rem 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.9rem;
    line-height: 1;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.82);
}

.section {
    padding: 6.5rem 0;
}

.section-soft {
    background:
        radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.08), transparent 18rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.section-heading {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-heading .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-kicker {
    color: #0284c7;
}

.section-kicker-light,
.section-heading-light .section-subtitle,
.section-heading-light .section-title {
    color: #ffffff;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    color: var(--ink);
}

.section-subtitle,
.section-text,
.contact-subtitle {
    color: var(--muted);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.badge-row {
    margin: 1.4rem 0 1.6rem;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-list {
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.95rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.feature-item h3,
.tour-body h3,
.pricing-option h3 {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
}

.feature-item p,
.tour-body p,
.pricing-city,
.pricing-hotel {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.feature-icon {
    width: 2.65rem;
    height: 2.65rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.feature-icon-green {
    background: #dcfce7;
    color: #15803d;
}

.feature-icon-orange {
    background: #ffedd5;
    color: #c2410c;
}

.about-showcase {
    position: relative;
    width: min(27rem, 100%);
    margin: 0 auto;
    padding: 3.6rem 1.2rem 1.2rem;
    border-radius: 2.2rem;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(249, 115, 22, 0.08)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow-strong);
}

.showcase-logo {
    position: absolute;
    top: -1.35rem;
    left: 50%;
    width: 4.9rem;
    height: 4.9rem;
    margin: 0;
    transform: translateX(-50%);
    border: 6px solid rgba(255, 255, 255, 0.92);
}

.showcase-card {
    position: relative;
    overflow: hidden;
    width: 82%;
    border-radius: 2.1rem 2.1rem 1.15rem 1.15rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
}

.showcase-card + .showcase-card {
    margin-top: -1.8rem;
}

.showcase-card-offset {
    width: 68%;
    margin-left: auto;
    border-radius: 1.15rem 2.1rem 2.1rem 1.15rem;
}

.showcase-image {
    width: 100%;
    height: 17.5rem;
    object-fit: cover;
}

.tours-grid {
    flex-wrap: wrap;
    gap: 1.35rem;
    align-items: stretch;
}

.tour-card {
    flex: 1 1 16rem;
    min-width: 16rem;
    display: flex;
    flex-direction: column;
    background: var(--surface-strong);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tour-image-wrap {
    position: relative;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 240ms ease;
}

.tour-card:hover .tour-image {
    transform: scale(1.04);
}

.tour-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-weight: 800;
    font-size: 0.84rem;
    box-shadow: var(--shadow);
}

.tour-body {
    padding: 1.35rem;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.tour-body p {
    margin-bottom: 1.25rem;
}

.tour-details {
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
}

.tour-details li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1rem;
    color: var(--muted);
}

.tour-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #0ea5e9;
}

.tour-body .secondary-button {
    margin-top: auto;
    align-self: flex-start;
}

.testimonials-section {
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.32), transparent 24rem),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.28), transparent 20rem),
        linear-gradient(135deg, #0c4a6e 0%, #0f172a 100%);
}

.reviews-carousel {
    overflow: hidden;
    padding: 0.4rem 0;
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.reviews-track {
    display: flex;
    gap: 1.35rem;
    width: max-content;
    animation: reviews-scroll 36s linear infinite;
}

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

.review-card {
    width: min(24rem, calc(100vw - 4rem));
    min-width: 18rem;
    min-height: 15.5rem;
    padding: 1.55rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.review-stars {
    color: #f97316;
    letter-spacing: 0.18em;
}

.review-text {
    margin: 1rem 0 1.4rem;
    color: #334155;
    line-height: 1.75;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.review-meta strong,
.review-country {
    display: block;
}

.review-country {
    color: var(--muted);
}

.review-avatar {
    width: 2.8rem;
    height: 2.8rem;
    min-width: 2.8rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent), #ef4444);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

@keyframes reviews-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.675rem));
    }
}

.pricing-card,
.contact-card {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-strong);
}

.pricing-table-wrap {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 42rem;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.1rem;
    text-align: left;
}

.pricing-table thead th {
    background: #0f172a;
    color: #ffffff;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(15, 118, 110, 0.05);
}

.pricing-table tbody td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    color: #334155;
}

.pricing-options {
    flex-wrap: wrap;
    gap: 1rem;
}

.pricing-option {
    flex: 1 1 16rem;
    padding: 1.35rem;
    border-radius: 1.35rem;
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.14);
    box-shadow: var(--shadow);
}

.pricing-option-muted {
    border-color: rgba(100, 116, 139, 0.18);
}

.pricing-city {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-hotel {
    margin-bottom: 1rem;
}

.pricing-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--muted);
}

.pricing-foot strong {
    color: #c2410c;
}

.contact-card {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    overflow: hidden;
}

.contact-panel {
    padding: 2rem;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.26), transparent 14rem),
        linear-gradient(135deg, #0c4a6e 0%, #0f172a 100%);
    color: #ffffff;
}

.contact-panel .section-title,
.contact-panel .contact-subtitle {
    color: #ffffff;
}

.contact-list {
    margin: 1.7rem 0 2rem;
    display: grid;
    gap: 0.8rem;
}

.contact-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.social-links {
    gap: 0.75rem;
}

.social-link {
    width: 3.35rem;
    height: 3.35rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.16);
}

.social-link svg {
    width: 1.9rem;
    height: 1.9rem;
    display: block;
}

.contact-form-wrap {
    padding: 2rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-status {
    min-height: 1.4rem;
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.form-status.is-error {
    color: #dc2626;
}

.form-status.is-success {
    color: #0284c7;
}

.field-grid {
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.5rem;
}

.field span {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(244, 241, 234, 0.55);
    color: var(--ink);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(14, 165, 233, 0.42);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
    background: #ffffff;
}

.site-footer {
    padding: 2rem 0 2.8rem;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #ffffff;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.payment-logo svg {
    display: block;
    width: auto;
    max-width: none;
    height: 2.65rem;
}

.payment-logo-stripe svg {
    height: 2.35rem;
}

.footer-copy {
    margin: 0;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.16;
        transform: scale(0.72);
    }
    50% {
        opacity: 1;
        transform: scale(1.36);
    }
}

@media (max-width: 960px) {
    .desktop-nav,
    #desktop-language-switcher {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    .about-layout,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .about-showcase {
        margin-top: 1rem;
    }
}

@media (max-width: 720px) {
    .section,
    .hero {
        padding-top: 7.25rem;
    }

    .section {
        padding-bottom: 5rem;
    }

    .hero-panel,
    .pricing-card,
    .contact-panel,
    .contact-form-wrap {
        padding: 1.4rem;
    }

    .stats-grid,
    .field-grid {
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .payment-logos {
        gap: 1.1rem;
    }

    .payment-logo svg {
        height: 2.25rem;
        max-width: min(26vw, 7rem);
    }

    .payment-logo-stripe svg {
        max-width: min(30vw, 8rem);
    }

    .footer-copy {
        text-align: center;
    }

    .stat-card,
    .tour-card,
    .pricing-option {
        min-width: 100%;
    }

    .pricing-table {
        min-width: 34rem;
    }

    .reviews-carousel {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .review-card {
        width: min(19rem, calc(100vw - 3.2rem));
        min-width: min(19rem, calc(100vw - 3.2rem));
    }

    .about-showcase {
        width: 100%;
        padding: 3.3rem 0.85rem 0.85rem;
    }

    .showcase-card,
    .showcase-card-offset {
        width: 100%;
        margin-left: 0;
        border-radius: 1.45rem;
    }

    .showcase-card + .showcase-card {
        margin-top: 0.9rem;
    }

    .showcase-image {
        height: 12.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-track {
        animation: none;
    }
}
