/* =========================================================
   QuickMuze Travel Editorial — utility-first lite
   Violet + gold · Georgia serif + system-ui body
   Sections in unusual order: utilities first, then layout, then components
   ========================================================= */

:root {
    --violet: #7c3aed;
    --violet-d: #6d28d9;
    --violet-l: #ede9fe;
    --gold: #f59e0b;
    --gold-d: #b45309;
    --gold-l: #fef3c7;
    --bg: #fafaf9;
    --surface: #ffffff;
    --surface-2: #f5f5f4;
    --ink: #1c1917;
    --ink-2: #44403c;
    --ink-3: #78716c;
    --rule: #e7e5e4;
    --danger: #b91c1c;
    --ok: #15803d;
}

/* ---------- Utility classes (the heart of this stylesheet) ---------- */

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 24px; }
.gap-6 { gap: 32px; }
.gap-7 { gap: 48px; }

.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-5 { padding: 24px; }
.p-6 { padding: 32px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 24px; padding-right: 24px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-6 { padding-top: 32px; padding-bottom: 32px; }
.py-8 { padding-top: 64px; padding-bottom: 64px; }
.py-10 { padding-top: 80px; padding-bottom: 80px; }
.py-12 { padding-top: 96px; padding-bottom: 96px; }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; }
.mt-6 { margin-top: 32px; }
.mt-7 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 24px; }
.mb-6 { margin-bottom: 32px; }
.mb-7 { margin-bottom: 48px; }

.w-full { width: 100%; }
.max-w-prose { max-width: 65ch; }
.mx-auto { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: 0.88rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.08em; }

.text-ink { color: var(--ink); }
.text-soft { color: var(--ink-2); }
.text-mute { color: var(--ink-3); }
.text-violet { color: var(--violet-d); }
.text-gold { color: var(--gold-d); }

.bg-bg { background: var(--bg); }
.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }
.bg-violet { background: var(--violet); color: #fff; }
.bg-violet-l { background: var(--violet-l); }
.bg-gold { background: var(--gold); color: #fff; }
.bg-gold-l { background: var(--gold-l); }
.bg-ink { background: var(--ink); color: #fff; }

.border { border: 1px solid var(--rule); }
.border-violet { border-color: var(--violet); }
.border-l-violet { border-left: 4px solid var(--violet); }
.border-l-gold { border-left: 4px solid var(--gold); }

.rounded-sm { border-radius: 4px; }
.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 14px; }
.rounded-full { border-radius: 999px; }

.shadow { box-shadow: 0 1px 2px rgba(28,25,23,0.05); }
.shadow-md { box-shadow: 0 8px 22px rgba(28,25,23,0.08); }

/* ---------- Layout primitives ---------- */

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--violet-d);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
a:hover, a:focus { color: var(--gold-d); }

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

h1, h2, h3, h4 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    line-height: 1.22;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }
p { margin: 0 0 16px; color: var(--ink-2); }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet-d);
    background: var(--violet-l);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-family: system-ui, sans-serif;
}

/* ---------- Header (utility-driven) ---------- */

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 60;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: var(--ink) !important;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
}
.logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-d) 100%);
    color: #fff;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: system-ui, sans-serif;
    font-weight: 700; font-size: 0.82rem;
}

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--rule);
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
}
.nav-toggle span {
    display: block; width: 18px; height: 2px;
    background: var(--ink); border-radius: 2px;
}

.nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 22px;
    align-items: center;
}
.nav-link {
    color: var(--ink-2) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent !important;
    font-family: system-ui, sans-serif;
}
.nav-link:hover,
.nav-link.is-active {
    color: var(--violet-d) !important;
    border-bottom-color: var(--violet) !important;
}
.nav-link.cta {
    background: var(--gold);
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 4px;
    border-bottom: 0 !important;
    font-weight: 600;
}
.nav-link.cta:hover {
    background: var(--gold-d);
    color: #fff !important;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
    background: var(--violet);
    color: #fff !important;
    border-color: var(--violet);
}
.btn-primary:hover {
    background: var(--violet-d);
    border-color: var(--violet-d);
    color: #fff !important;
}
.btn-gold {
    background: var(--gold);
    color: #fff !important;
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-d);
    border-color: var(--gold-d);
    color: #fff !important;
}
.btn-outline {
    background: transparent;
    color: var(--violet-d) !important;
    border-color: var(--violet);
}
.btn-outline:hover {
    background: var(--violet-l);
    color: var(--violet-d) !important;
}
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Hero — form-right composition ---------- */

.hero {
    padding: 80px 0;
    background:
        radial-gradient(ellipse 800px 400px at 80% 30%, rgba(124, 58, 237, 0.10) 0%, transparent 70%),
        var(--bg);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
    align-items: start;
}
.hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3rem);
}
.hero-lead {
    font-size: 1.15rem;
    color: var(--ink-2);
    margin-bottom: 28px;
}
.hero-stats {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 32px;
}
.hero-stats li {
    border-left: 3px solid var(--violet);
    padding-left: 12px;
}
.hero-stats strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.7rem;
    color: var(--ink);
}
.hero-stats span {
    font-size: 0.88rem;
    color: var(--ink-3);
}

.quick-form {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(124,58,237,0.10);
}
.quick-form h3 {
    margin-top: 0;
    font-family: Georgia, serif;
    font-size: 1.25rem;
}
.quick-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.quick-form label { font-weight: 600; font-size: 0.9rem; }
.quick-form select,
.quick-form input {
    padding: 11px 14px;
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: #fff;
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--ink);
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
    padding: 64px 0 40px;
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
}
.page-hero h1 { max-width: 22ch; }
.page-hero-lead {
    font-size: 1.08rem;
    color: var(--ink-2);
    max-width: 65ch;
}
.page-hero-media {
    margin-top: 32px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(28,25,23,0.10);
}
.page-hero-media img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
}

/* ---------- Cards (component) ---------- */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.qm-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s, box-shadow 0.15s;
}
.qm-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(28,25,23,0.10);
}
.qm-card-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--surface-2);
    margin: 0;
}
.qm-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.qm-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.qm-card-tag {
    align-self: flex-start;
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-d);
    background: var(--gold-l);
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 10px;
    font-family: system-ui, sans-serif;
}
.qm-card-link {
    margin-top: auto;
    align-self: flex-start;
    font-weight: 600;
    color: var(--violet-d) !important;
}

/* ---------- Plain content cards (no media) ---------- */
.plain-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 22px;
}

/* ---------- Two-column ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ---------- Callout ---------- */
.callout {
    background: var(--violet-l);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid rgba(124,58,237,0.18);
}
.callout h3 { margin-top: 0; color: var(--violet-d); }
.callout-dark {
    background: var(--ink);
    color: #fff;
    border-color: transparent;
}
.callout-dark h3 { color: #fff; }
.callout-dark p { color: rgba(255,255,255,0.78); }
.callout-dark a { color: var(--gold-l) !important; }

/* ---------- Reviews & lists ---------- */
.review-list { display: grid; gap: 22px; }
.review {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 26px;
}
.review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.review-head h3 { margin: 0; }
.review-score {
    background: var(--violet);
    color: #fff;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.95rem;
    white-space: nowrap;
    font-family: system-ui, sans-serif;
}
.review-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 0 0 16px;
    padding: 12px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.review-meta dt {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    font-weight: 700;
}
.review-meta dd { margin: 2px 0 0; color: var(--ink); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: stretch;
}
.plan {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.plan-featured {
    border: 2px solid var(--gold);
    box-shadow: 0 14px 30px rgba(245,158,11,0.16);
}
.plan-price {
    margin: 16px 0 22px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.plan-amount {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink);
}
.plan-period { color: var(--ink-3); }
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}
.plan-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--ink-2);
    font-size: 0.95rem;
}
.plan-features li::before {
    content: "✓";
    position: absolute; left: 0;
    color: var(--violet); font-weight: 700;
}
.compare-wrap { overflow-x: auto; }
.compare {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: 14px;
    overflow: hidden;
}
.compare th, .compare td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--rule);
}
.compare thead th {
    background: var(--surface-2);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 18px 22px;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 30px;
    color: var(--ink);
    font-family: Georgia, serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute; right: 0; top: -2px;
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 12px 0 0; color: var(--ink-2); }

/* ---------- Team ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}
.team-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
}
.team-avatar {
    width: 64px; height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--violet) 0%, var(--gold) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    font-family: system-ui, sans-serif;
}
.team-role {
    display: block;
    color: var(--gold-d);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ---------- Form ---------- */
.qm-form { display: grid; gap: 16px; }
.qm-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.qm-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.qm-form label { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.qm-form input[type="text"],
.qm-form input[type="email"],
.qm-form input[type="tel"],
.qm-form select,
.qm-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--rule);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
    font-family: inherit;
    font-size: 0.98rem;
}
.qm-form input:focus, .qm-form select:focus, .qm-form textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
    outline: none;
}
.qm-form textarea { resize: vertical; min-height: 140px; }
.form-check {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
}
.form-check input { margin-top: 4px; }
.form-check label { font-weight: 400; color: var(--ink-2); }
.form-status { font-size: 0.94rem; color: var(--ink-3); }
.form-status.is-error { color: var(--danger); }
.form-status.is-loading { color: var(--violet-d); }
.form-status.is-success { color: var(--ok); }

/* ---------- Bullets ---------- */
.bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--ink-2);
}
.bullets li::before {
    content: "✦";
    position: absolute; left: 0;
    color: var(--gold); font-weight: 700;
}
.facts { list-style: none; padding: 0; margin: 0; }
.facts li {
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    color: var(--ink-2);
    font-size: 0.94rem;
}
.facts li:last-child { border-bottom: none; }

/* ---------- Section headers ---------- */
.section-head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }

/* ---------- Legal ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { margin-top: 48px; }
.legal h2:first-of-type { margin-top: 0; }
.legal ul { padding-left: 22px; color: var(--ink-2); }
.legal address {
    font-style: normal;
    background: var(--surface-2);
    border-left: 4px solid var(--violet);
    padding: 16px;
    border-radius: 6px;
}

/* ---------- Thanks ---------- */
.thanks { padding: 96px 0; text-align: center; }
.thanks-icon { color: var(--violet); display: inline-flex; margin-bottom: 24px; }
.thanks-lead { font-size: 1.15rem; max-width: 60ch; margin: 0 auto 32px; color: var(--ink-2); }
.thanks-next {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    text-align: left;
}
.thanks-next li {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 22px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: #d6d3d1;
    margin-top: 64px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding: 64px 24px;
}
.site-footer h4 { color: #fff; margin-bottom: 12px; font-size: 0.82rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a, .site-footer address a {
    color: #d6d3d1 !important;
    text-decoration: none !important;
}
.site-footer a:hover { color: #fff !important; }
.site-footer p, .site-footer address {
    color: #a8a29e;
    font-style: normal;
    font-size: 0.92rem;
    line-height: 1.7;
}
.site-footer .logo, .site-footer .logo span { color: #fff !important; }
.footer-bottom {
    background: #0c0a09;
    padding: 14px 0;
    text-align: center;
    font-size: 0.86rem;
    color: #78716c;
}
.footer-bottom p { margin: 0; color: #78716c; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; }
    .nav-list {
        position: absolute;
        top: 100%;
        right: 24px;
        left: 24px;
        background: var(--surface);
        border: 1px solid var(--rule);
        border-radius: 12px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        box-shadow: 0 8px 24px rgba(28,25,23,0.10);
        display: none;
    }
    .nav-list.is-open { display: flex; }
    .nav-link, .nav-link.cta { display: block; padding: 10px 12px; border-bottom: 0 !important; }
    .qm-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .review-head { flex-direction: column; align-items: flex-start; }
    .hero-stats { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}
@media (max-width: 480px) {
    body { font-size: 15.5px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
