/* ==========================================================================
   autovezetesgyakorlas.hu — Dodgem Autósiskola
   Design system. No framework, no build step for CSS — this file ships as-is.
   Brand tokens mirror dodgemjogsi.hu (#ff9916 / #00a1d2).

   Layout rule that runs through the whole file: any column narrower than the
   container is centred (margin-inline: auto) while its text stays ragged-right.
   A constrained column pinned to the left edge of a wide viewport reads as a
   mistake, so `.prose`, `.measure` and the narrow section heads all centre.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    --brand: #ff9916;
    --brand-strong: #f57c00;
    --brand-tint: #fff5e8;
    --accent: #00a1d2;
    --accent-tint: #e7f6fb;
    --accent-deep: #00789e;

    --ink: #16181d;
    --ink-soft: #474e57;
    --ink-mute: #6d757f;
    --line: #e5e8ec;
    --line-soft: #f0f2f5;
    --surface: #ffffff;
    --surface-2: #f7f8fa;
    --surface-3: #fdf9f3;
    --dark: #16181d;

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --step--1: clamp(0.84rem, 0.8rem + 0.15vw, 0.9rem);
    --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
    --step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
    --step-2: clamp(1.35rem, 1.22rem + 0.6vw, 1.7rem);
    --step-3: clamp(1.6rem, 1.36rem + 1.1vw, 2.25rem);
    --step-4: clamp(2rem, 1.5rem + 2.2vw, 3.1rem);
    --step-5: clamp(2.3rem, 1.45rem + 3.8vw, 4.2rem);

    --gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    --section-y: clamp(3rem, 2rem + 5vw, 5.5rem);

    --r-sm: 10px;
    --r: 16px;
    --r-lg: 24px;
    --shadow: 0 1px 2px rgba(22, 24, 29, 0.04), 0 4px 16px rgba(22, 24, 29, 0.06);
    --shadow-lg: 0 2px 6px rgba(22, 24, 29, 0.06), 0 18px 44px rgba(22, 24, 29, 0.13);

    --header-h: 68px;
    --measure: 68ch;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: var(--step-0);
    line-height: 1.68;
    color: var(--ink-soft);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4,
h5 {
    margin: 0 0 0.6em;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
h5 { font-size: var(--step-0); letter-spacing: 0; }

p,
ul,
ol {
    margin: 0 0 1.1em;
}

ul,
ol {
    padding-left: 1.35em;
}

li + li {
    margin-top: 0.4em;
}

a {
    color: var(--brand-strong);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--ink);
}

strong,
b {
    color: var(--ink);
    font-weight: 650;
}

hr {
    height: 1px;
    border: 0;
    background: var(--line);
    margin: clamp(2rem, 4vw, 3rem) 0;
}

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
    width: min(100% - 2.5rem, 1180px);
    margin-inline: auto;
}

/* Any constrained column centres itself. See the note at the top of the file. */
.measure {
    max-width: var(--measure);
    margin-inline: auto;
}

.measure--wide {
    max-width: 82ch;
    margin-inline: auto;
}

.section {
    padding-block: var(--section-y);
}

.section--tint {
    background: var(--surface-2);
    border-block: 1px solid var(--line-soft);
}

.section--warm {
    background: var(--surface-3);
    border-block: 1px solid #f4e9da;
}

.section--flush {
    padding-block: 0;
}

.section__head {
    max-width: 46rem;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.section__head p {
    font-size: var(--step-1);
    color: var(--ink-mute);
    margin-bottom: 0;
}

.section__head--start {
    text-align: left;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--brand-strong);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 0.75rem 1.25rem;
    background: var(--ink);
    color: #fff;
    border-radius: 0 0 var(--r-sm) 0;
}

.skip-link:focus {
    left: 0;
    color: #fff;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    --btn-bg: var(--brand);
    --btn-fg: #16181d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.6rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    font: inherit;
    font-weight: 650;
    font-size: var(--step--1);
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease,
        box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
    --btn-bg: var(--brand-strong);
    color: var(--btn-fg);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 124, 0, 0.33);
}

.btn--accent {
    --btn-bg: var(--accent);
    --btn-fg: #fff;
}

.btn--accent:hover {
    --btn-bg: var(--accent-deep);
    --btn-fg: #fff;
    box-shadow: 0 6px 20px rgba(0, 161, 210, 0.33);
}

.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--ink);
    border-color: var(--line);
}

.btn--ghost:hover {
    --btn-bg: var(--surface-2);
    --btn-fg: var(--ink);
    box-shadow: none;
    border-color: var(--ink-mute);
}

.btn--on-dark {
    --btn-bg: rgba(255, 255, 255, 0.12);
    --btn-fg: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
}

.btn--on-dark:hover {
    --btn-bg: rgba(255, 255, 255, 0.2);
    --btn-fg: #fff;
    border-color: #fff;
    box-shadow: none;
}

.btn--lg {
    padding: 0.95rem 2rem;
    font-size: var(--step-0);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-row--center {
    justify-content: center;
}

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: var(--header-h);
}

.brand {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
}

.brand img {
    width: 148px;
    height: auto;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav a {
    padding: 0.5rem 0.7rem;
    border-radius: var(--r-sm);
    color: var(--ink-soft);
    font-size: var(--step--1);
    font-weight: 550;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.nav a:hover {
    color: var(--ink);
    background: var(--surface-2);
}

.nav a[aria-current="page"] {
    color: var(--ink);
    font-weight: 700;
    box-shadow: inset 0 -2px 0 var(--brand);
    border-radius: var(--r-sm) var(--r-sm) 0 0;
}

/* `.nav a` outranks `.btn`, so the CTA restates its own shape and colours. */
.nav .btn {
    margin-left: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 650;
}

.nav .btn:hover {
    background: var(--accent-deep);
    color: #fff;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.nav-toggle__close {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
    display: block;
}

@media (max-width: 1020px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1.25rem 1.5rem;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        max-height: calc(100dvh - var(--header-h));
        overflow-y: auto;
        display: none;
    }

    .nav[data-open="true"] {
        display: flex;
    }

    .nav a {
        padding: 0.85rem 0.5rem;
        font-size: var(--step-0);
        border-radius: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .nav a[aria-current="page"] {
        box-shadow: inset 3px 0 0 var(--brand);
        border-radius: 0;
        padding-left: 1rem;
    }

    .nav .btn {
        margin: 1rem 0 0;
        padding: 0.85rem 1.25rem;
        font-size: var(--step-0);
        border-bottom: 0;
        border-radius: 999px;
    }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(440px, 66vh, 640px);
    padding-block: clamp(3.5rem, 8vw, 6rem);
    background-color: var(--dark);
    background-image: linear-gradient(
            to bottom,
            rgba(12, 13, 17, 0.62) 0%,
            rgba(12, 13, 17, 0.74) 55%,
            rgba(12, 13, 17, 0.9) 100%
        ),
        var(--hero-img, none);
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.84);
    text-align: center;
}

.hero__inner {
    max-width: 44rem;
    margin-inline: auto;
}

.hero h1 {
    color: #fff;
    font-size: var(--step-5);
    margin-bottom: 0.6rem;
}

.hero__lead {
    font-size: var(--step-1);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
}

.hero .eyebrow {
    color: var(--brand);
}

/* --------------------------------------------------------------------------
   7. Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-head {
    padding-block: clamp(2.25rem, 5vw, 3.5rem) clamp(1.75rem, 3vw, 2.5rem);
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.page-head__inner {
    max-width: 46rem;
    margin-inline: auto;
}

.page-head h1 {
    font-size: var(--step-3);
    margin-bottom: 0.4rem;
}

.page-head__lead {
    color: var(--ink-mute);
    margin-bottom: 0;
}

.crumbs {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: var(--step--1);
    color: var(--ink-mute);
}

.crumbs li {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.crumbs li + li::before {
    content: "/";
    color: var(--line);
}

.crumbs a {
    color: var(--ink-mute);
    text-decoration: none;
}

.crumbs a:hover {
    color: var(--brand-strong);
    text-decoration: underline;
}

.crumbs [aria-current="page"] {
    color: var(--ink);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. Prose (article body) — centred column, left-aligned text
   -------------------------------------------------------------------------- */
.prose {
    max-width: var(--measure);
    margin-inline: auto;
}

.prose--wide {
    max-width: 82ch;
}

.prose > h2 {
    margin-top: 2.2em;
    padding-top: 0.2em;
}

.prose > h3 {
    margin-top: 2em;
}

.prose > h4,
.prose > h5 {
    margin-top: 1.8em;
    color: var(--ink);
}

.prose > :first-child {
    margin-top: 0;
}

.prose .lead {
    font-size: var(--step-1);
    color: var(--ink-mute);
}

.prose ul {
    list-style: none;
    padding-left: 0;
}

.prose ul:not(.surcharges) li {
    position: relative;
    padding-left: 1.6em;
}

.prose ul:not(.surcharges) li::before {
    content: "";
    position: absolute;
    left: 0.25em;
    top: 0.66em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

/* Nested lists step down to a hollow marker so the hierarchy stays readable. */
.prose ul ul li::before {
    background: transparent;
    border: 1.5px solid var(--brand);
}

.prose ol {
    padding-left: 1.4em;
}

.prose ol li::marker {
    color: var(--brand-strong);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. Cards & grids
   -------------------------------------------------------------------------- */
.grid {
    display: grid;
    gap: var(--gap);
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
}

.card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.4rem, 2.5vw, 2rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
}

.card h3,
.card h4 {
    margin-bottom: 0.5rem;
}

.card > :last-child {
    margin-bottom: 0;
}

.feature__icon {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    margin-bottom: 1.1rem;
    border-radius: var(--r-sm);
    background: var(--brand-tint);
    color: var(--brand-strong);
}

.feature__icon svg {
    width: 22px;
    height: 22px;
}

.feature__icon--accent {
    background: var(--accent-tint);
    color: var(--accent-deep);
}

/* Numbered service card */
.service-card__no {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-strong), var(--brand));
    color: #fff;
    font-size: var(--step--1);
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   10. Statistic callout
   -------------------------------------------------------------------------- */
.stat {
    display: grid;
    gap: 0.4rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat__figure {
    margin-bottom: 0;
    font-size: var(--step-4);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--brand-strong);
}

.stat__label {
    font-size: var(--step--1);
    color: var(--ink-mute);
    margin: 0;
}

/* --------------------------------------------------------------------------
   11. Callout
   -------------------------------------------------------------------------- */
.callout {
    margin-block: 2rem;
    padding: clamp(1.25rem, 2.5vw, 1.85rem);
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    border-radius: var(--r-sm);
    background: var(--brand-tint);
}

.callout h3,
.callout h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.callout > :last-child {
    margin-bottom: 0;
}

.callout--info {
    border-left-color: var(--accent);
    background: var(--accent-tint);
}

.callout--plain {
    border-left-color: var(--ink-mute);
    background: var(--surface-2);
}

/* --------------------------------------------------------------------------
   12. Price cards
   -------------------------------------------------------------------------- */
.price-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: var(--step--1);
    color: var(--ink-mute);
}

.price-card {
    align-items: center;
    text-align: center;
    padding-block: clamp(1.75rem, 3vw, 2.5rem);
}

.price-card__label {
    margin-bottom: 0.75rem;
    font-size: var(--step-1);
    color: var(--ink);
    font-weight: 700;
}

/* Labels wrap to different line counts, so the figures are pinned to the
   bottom of each equal-height card instead of floating after the label. */
.price-card__amount {
    margin-top: auto;
    /* The default paragraph margin is in `em`, so at this font size it would
       open a ~50px gap before the unit. */
    margin-bottom: 0;
    font-size: var(--step-4);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    white-space: nowrap;
}

.price-card__unit {
    margin-top: 0.5rem;
    font-size: var(--step--1);
    color: var(--ink-mute);
}

.price-card--wide {
    grid-column: 1 / -1;
}

.surcharges {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.surcharges li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem 1rem;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line-soft);
}

.surcharges li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.surcharges b {
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   13. Photo strip
   -------------------------------------------------------------------------- */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    background: var(--line);
}

.photo-strip img {
    width: 100%;
    height: clamp(120px, 14vw, 200px);
    object-fit: cover;
}

@media (max-width: 900px) {
    .photo-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .photo-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------------------------------------------
   14. Media object (Rólunk)
   -------------------------------------------------------------------------- */
.media {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: minmax(0, 1.9fr) minmax(220px, 1fr);
    align-items: start;
    max-width: 62rem;
    margin-inline: auto;
}

@media (max-width: 780px) {
    .media {
        grid-template-columns: 1fr;
    }
}

.media__aside img {
    width: 100%;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   15. Detail lists
   -------------------------------------------------------------------------- */
.detail-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    max-width: 34rem;
    margin-inline: auto;
}

.detail-list > div {
    display: grid;
    gap: 0.15rem;
}

.detail-list dt {
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.detail-list dd {
    margin: 0;
    color: var(--ink);
    font-size: var(--step-1);
}

.detail-list dd a {
    text-decoration: none;
}

.detail-list dd a:hover {
    text-decoration: underline;
}

.detail-list small {
    display: block;
    font-size: var(--step--1);
    color: var(--ink-mute);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    padding-block: clamp(2.75rem, 5vw, 4rem) 0;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.66);
    font-size: var(--step--1);
}

.site-footer h2 {
    color: #fff;
    font-size: var(--step-0);
    margin-bottom: 1rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--brand);
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.footer-grid li {
    margin: 0;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-phone {
    display: block;
    margin-top: 0.35rem;
    color: #fff !important;
    font-size: var(--step-1);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding-block: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin: 0;
}

/* --------------------------------------------------------------------------
   17. Back to top
   -------------------------------------------------------------------------- */
.to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.to-top[data-visible="true"] {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.to-top svg {
    width: 20px;
    height: 20px;
}

/* --------------------------------------------------------------------------
   18. Utilities
   -------------------------------------------------------------------------- */
.u-center {
    text-align: center;
}

.u-mt {
    margin-top: clamp(2rem, 4vw, 3rem);
}

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

/* --------------------------------------------------------------------------
   19. Motion & print
   -------------------------------------------------------------------------- */
@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;
    }
}

@media print {
    .site-header,
    .site-footer,
    .to-top,
    .hero,
    .photo-strip {
        display: none;
    }

    body {
        color: #000;
    }
}
