/* ==========================================================================
   Chlazení cool — veřejný web
   Port designu „Chlazeni Cool v2" z Claude Design.
   ========================================================================== */

:root {
    --navy: #080E1F;
    --navy-card: #0A1633;
    --navy-deep: #0D1530;
    --ink: #0A1633;
    --page: #E4E9F0;
    --white: #FFFFFF;
    --border: #E2E7F3;
    --muted: #4C5A7C;
    --label: #6C7FAB;

    --on-dark: #A9B8DC;
    --on-dark-strong: #C3CEEA;
    --on-dark-soft: #8EA2CE;
    --on-dark-faint: #7E91BE;
    --on-dark-dim: #5E6E96;

    --blue: #1F4FE0;
    --blue-dark: #123CBD;
    --blue-light: #7FA0FF;
    --blue-mid: #3A61E6;
    --blue-tint: #E7EEFF;
    --blue-tint-2: #EDF2FF;
    --blue-tint-3: #DCE6FF;

    --red: #E4322B;
    --red-hover: #FF463E;
    --red-light: #FF6A62;
    --red-soft: #FF9C97;
    --red-pale: #FFD9D7;
    --red-tint: #FFE9E7;

    --purple: #8B3FA8;
    --green: #33D98B;

    --field-border: #DCE2EF;
    --field-bg: #F8FAFE;

    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --sans: Archivo, 'Helvetica Neue', Arial, sans-serif;

    --shell: 1320px;
    --gutter: 26px;
}

* { box-sizing: border-box; }

html { background: var(--navy); }

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--red); }

img { max-width: 100%; }

input, textarea, button, select { font: inherit; color: inherit; }

::selection { background: var(--red); color: var(--white); }

:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 3px; }

.shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.mono {
    font-family: var(--mono);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    background: var(--white);
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 99px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 16px 30px;
    text-align: center;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn-sm { padding: 11px 22px; font-size: 15px; }

.btn-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(228, 50, 43, .32);
}
.btn-red:hover { background: var(--red-hover); color: var(--white); }

.btn-white {
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
}
.btn-white:hover { background: var(--blue-tint-3); color: var(--ink); }

.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); color: var(--white); }

.btn-ghost {
    border-color: rgba(255, 255, 255, .24);
    color: var(--white);
}
.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .06);
    color: var(--white);
}

/* ---------------------------------------------------------------- header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(8, 14, 31, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.site-header__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.site-header__logo img {
    height: 40px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
}

.site-nav__link {
    padding: 9px 14px;
    border-radius: 99px;
    font-size: 15px;
    color: var(--on-dark-strong);
    transition: background-color .18s ease, color .18s ease;
}
.site-nav__link:hover,
.site-nav__link.is-active {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}

.site-nav__divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, .14);
    margin: 0 10px;
}

.site-nav__cta {
    box-shadow: 0 8px 24px rgba(228, 50, 43, .34);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 99px;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    gap: 8px;
    padding: 9px 16px;
}

/* ------------------------------------------------------------------ hero */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1200px 620px at 78% -10%, rgba(47, 107, 255, .42) 0%, rgba(8, 14, 31, 0) 62%),
        radial-gradient(760px 520px at 8% 108%, rgba(228, 50, 43, .28) 0%, rgba(8, 14, 31, 0) 60%),
        var(--navy);
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero__col { min-width: 0; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
}

.badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.badge__text {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    color: #C9D6F5;
}

.hero__title {
    margin: 26px 0 0;
    font-size: clamp(46px, 6.6vw, 90px);
    line-height: .94;
    letter-spacing: -.045em;
    font-weight: 700;
    color: var(--white);
    text-wrap: balance;
}
.hero__title span { color: var(--blue-light); }

.hero__perex {
    margin: 26px 0 0;
    font-size: 19px;
    line-height: 1.6;
    color: var(--on-dark);
    max-width: 50ch;
    text-wrap: pretty;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.hero__media {
    aspect-ratio: 16 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4%;
}
.hero__media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 50px rgba(4, 9, 24, .55));
}

.hero__aside {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.stat {
    border-radius: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .11);
}
.stat__value {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--white);
}
.stat__label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--on-dark-soft);
    margin-top: 6px;
}

.spectrum {
    height: 6px;
    border-radius: 99px;
    background: linear-gradient(90deg, #7FA0FF 0%, #1F4FE0 34%, #8B3FA8 58%, #E4322B 100%);
}

.spectrum-wrap { margin-top: 56px; }

.marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 0 30px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--on-dark-faint);
}

/* -------------------------------------------------------------- sections */

.section { padding-top: 84px; }
.section--last { padding-bottom: 96px; }

.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
}
.eyebrow--blue { color: var(--blue); }
.eyebrow--red { color: var(--red); }

.section-head {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-head__title {
    margin: 14px 0 0;
    font-size: clamp(30px, 4vw, 50px);
    letter-spacing: -.04em;
    font-weight: 700;
    text-wrap: balance;
}

/* --------------------------------------------------------------- o firmě */

.about {
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: clamp(28px, 4.5vw, 56px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 44px;
    align-items: center;
}

.about__title {
    margin: 16px 0 0;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.15;
    letter-spacing: -.035em;
    font-weight: 700;
    text-wrap: balance;
}

.about__text {
    margin: 22px 0 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    text-wrap: pretty;
}

.about__cta { margin-top: 30px; padding: 15px 28px; }

.about__media {
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    background: var(--blue-tint);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------------------------------------------------------- karty služeb */

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

.service-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    color: inherit;
    transition: border-color .18s ease, transform .18s ease;
}
.service-card:hover { color: inherit; transform: translateY(-2px); }
.service-card--blue:hover { border-color: var(--blue); }
.service-card--red:hover { border-color: var(--red); }

.service-card--dark {
    background: var(--navy-card);
    border-color: var(--navy-card);
    color: var(--white);
}
.service-card--dark:hover { color: var(--white); border-color: var(--red); }

.service-card__media {
    aspect-ratio: 16 / 10;
    background: var(--blue-tint);
}
.service-card--dark .service-card__media { background: var(--navy-deep); }
.service-card--red .service-card__media { background: var(--red-tint); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-card__body { padding: 26px; }

.service-card__title {
    margin: 0 0 10px;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -.03em;
}

.service-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}
.service-card--dark .service-card__text { color: var(--on-dark); }

.service-card__more {
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--blue);
}
.service-card--dark .service-card__more { color: var(--red-light); }

/* ------------------------------------------------------------- CTA panel */

.cta-panel {
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(900px 400px at 85% 10%, rgba(228, 50, 43, .42) 0%, rgba(8, 14, 31, 0) 60%),
        radial-gradient(700px 400px at 5% 100%, rgba(47, 107, 255, .4) 0%, rgba(8, 14, 31, 0) 62%),
        var(--navy);
    padding: clamp(32px, 5vw, 68px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
    align-items: center;
}

.cta-panel__title {
    margin: 0;
    font-size: clamp(30px, 3.8vw, 48px);
    letter-spacing: -.04em;
    font-weight: 700;
    color: var(--white);
    text-wrap: balance;
}

.cta-panel__text {
    margin: 20px 0 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--on-dark);
    max-width: 46ch;
}

.cta-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.phone-pill {
    flex: 1;
    min-width: 170px;
    padding: 14px 20px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, .24);
    color: var(--white);
    font-family: var(--mono);
    font-size: 14px;
    text-align: center;
}
.phone-pill:hover { color: var(--white); border-color: var(--white); }

/* ------------------------------------------------------- vnitřní stránky */

.page-hero {
    background: radial-gradient(900px 500px at 80% -20%, rgba(47, 107, 255, .4) 0%, rgba(8, 14, 31, 0) 62%), var(--navy);
}
.page-hero--red {
    background: radial-gradient(900px 500px at 20% -20%, rgba(228, 50, 43, .32) 0%, rgba(8, 14, 31, 0) 60%), var(--navy);
}
.page-hero--contact {
    background: radial-gradient(900px 500px at 70% -20%, rgba(47, 107, 255, .38) 0%, rgba(8, 14, 31, 0) 62%), var(--navy);
}

.page-hero__inner { padding: 56px 0 72px; }

.breadcrumb {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--on-dark-faint);
}
.breadcrumb a { color: var(--on-dark-faint); }
.breadcrumb a:hover { color: var(--white); }

.page-hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 34px;
    align-items: center;
}

.page-title {
    margin: 0;
    font-size: clamp(38px, 5.4vw, 68px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 700;
    color: var(--white);
}

.page-subtitle {
    margin: 26px 0 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-light);
    letter-spacing: -.02em;
}

.page-perex {
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.65;
    color: var(--on-dark);
    max-width: 52ch;
    text-wrap: pretty;
}

.page-hero__media {
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: var(--navy-deep);
}
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section-title {
    margin: 14px 0 30px;
    font-size: clamp(28px, 3.6vw, 42px);
    letter-spacing: -.04em;
    font-weight: 700;
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.tile-grid--wide { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

.tile {
    min-width: 0;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 26px;
}

.tile__number {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.tile__title {
    margin: 14px 0 8px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.02em;
}
.tile--plain .tile__title { margin-top: 0; }

.tile__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}

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

.photo {
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    background: var(--blue-tint);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --------------------------------------------------------------- galerie */

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

.gallery-item {
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    background: var(--blue-tint);
    border: 1px solid var(--border);
    display: block;
    padding: 0;
    cursor: zoom-in;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(4, 9, 24, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
    max-width: min(1200px, 100%);
    max-height: 100%;
    border-radius: 18px;
    display: block;
}
.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 99px;
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 12px 16px;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------- kontakt */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 52px;
    margin-top: 34px;
    align-items: start;
}

.contact-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.contact-card {
    border-radius: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .11);
}
.contact-card--red {
    background: rgba(228, 50, 43, .14);
    border-color: rgba(228, 50, 43, .36);
}

.contact-card__region {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .09em;
    color: var(--blue-light);
}
.contact-card--red .contact-card__region { color: var(--red-soft); }

.contact-card__address {
    font-size: 17px;
    color: var(--white);
    margin-top: 12px;
    line-height: 1.5;
}

.contact-card__phone {
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 15px;
    color: var(--white);
    display: block;
}
.contact-card__phone:hover { color: var(--blue-light); }

.contact-card__email {
    margin-top: 6px;
    font-size: 15px;
    color: var(--on-dark-strong);
    display: block;
}
.contact-card--red .contact-card__email { color: var(--red-pale); }
.contact-card__email:hover { color: var(--white); }

.form-panel {
    min-width: 0;
    border-radius: 26px;
    background: var(--white);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 30px 70px rgba(4, 9, 24, .45);
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field__label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .09em;
    color: var(--label);
    margin-bottom: 8px;
    display: block;
}

.field__input,
.field__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--field-border);
    border-radius: 12px;
    font-size: 16px;
    background: var(--field-bg);
}
.field__textarea { resize: vertical; }

.field__input:focus,
.field__textarea:focus {
    border-color: var(--blue);
    outline: none;
}

.field__input.has-error,
.field__textarea.has-error { border-color: var(--red); }

.field__error {
    margin-top: 6px;
    font-size: 13px;
    color: var(--red);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 10px 16px;
    border-radius: 99px;
    border: 1px solid var(--field-border);
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.chip.is-on {
    border-color: var(--blue);
    background: var(--blue-tint-2);
    color: var(--blue);
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.form-note {
    font-size: 13px;
    color: var(--label);
    max-width: 32ch;
}

.form-success {
    border-radius: 16px;
    background: var(--blue-tint-2);
    border: 1px solid var(--blue);
    padding: 20px 22px;
    color: var(--ink);
}
.form-success h3 { margin: 0 0 6px; font-size: 19px; letter-spacing: -.02em; }
.form-success p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ----------------------------------------------------------------- patka */

.site-footer {
    background: var(--navy);
    color: var(--on-dark-soft);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 40px;
    padding: 64px 0 40px;
}

.site-footer__col { min-width: 0; }

.site-footer__logo { height: 42px; width: auto; display: block; }

.site-footer__tagline {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.65;
    max-width: 34ch;
}

.site-footer__heading {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .09em;
    color: var(--on-dark-dim);
    margin-bottom: 14px;
}

.site-footer__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    color: var(--on-dark-strong);
}
.site-footer__list--tight { gap: 8px; }
.site-footer__list a { color: var(--on-dark-strong); }
.site-footer__list a:hover { color: var(--white); }

.site-footer__cta {
    color: var(--red-light);
    margin-top: 4px;
}
.site-footer__cta:hover { color: var(--white); }

.site-footer__bar { border-top: 1px solid rgba(255, 255, 255, .08); }

.site-footer__bar-inner {
    padding: 18px 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    color: var(--on-dark-dim);
}
.site-footer__bar-inner a { color: var(--on-dark-dim); }
.site-footer__bar-inner a:hover { color: var(--white); }

/* ------------------------------------------------------------- responzivní */

@media (max-width: 860px) {
    :root { --gutter: 20px; }

    .nav-toggle { display: inline-flex; align-items: center; }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding-bottom: 10px;
    }
    .site-nav.is-open { display: flex; }
    .site-nav__link { padding: 12px 14px; }
    .site-nav__divider { display: none; }
    .site-nav__cta { text-align: center; }

    .hero__grid { padding-top: 52px; gap: 40px; }
    .section { padding-top: 56px; }
    .section--last { padding-bottom: 64px; }
    .page-hero__inner { padding: 36px 0 52px; }
    .marquee { justify-content: flex-start; gap: 12px; }
    .contact-grid { gap: 32px; }
    .site-footer__grid { padding-top: 48px; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    .service-card:hover { transform: none; }
    .gallery-item:hover img { transform: none; }
}

@media print {
    .site-header, .site-footer, .btn, .lightbox { display: none !important; }
    body { background: #fff; }
}
