﻿:root {
    --bg: #f9f3ea;
    --surface: #ffffff;
    --surface-alt: #fdf7ef;
    --ink: #1b1712;
    --muted: #6a5f55;
    --line: #eadbcc;
    --accent: #c8b8a0;
    --accent-dark: #a79277;
    --accent-2: #3c7f73;
    --chip-1: #f4e4d2;
    --chip-2: #deede9;
    --chip-3: #e6e0db;
    --radius: 22px;
    --shadow: 0 18px 40px -30px rgba(28, 20, 12, 0.35);
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--ink);
    font: 16px/1.65 "Nunito Sans", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: -20% -10% -30% -10%;
    background:
        radial-gradient(45% 35% at 10% 0%, rgba(200, 184, 160, 0.12), transparent 65%),
        radial-gradient(40% 30% at 88% -10%, rgba(60, 127, 115, 0.12), transparent 65%),
        radial-gradient(35% 35% at 50% 110%, rgba(234, 219, 204, 0.45), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

main,
.site-header,
.section,
.site-footer {
    position: relative;
    z-index: 1;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    font-family: "Nunito", "Nunito Sans", sans-serif;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
}

.container {
    max-width: var(--max);
    margin-inline: auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    scroll-margin-top: 90px;
}

.section-tint {
    background: var(--surface-alt);
}

.section-title {
    margin: 0 0 12px;
    font-size: clamp(26px, 4.4vw, 38px);
}

.section-title.center {
    text-align: center;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 720px;
}

.section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
}

.section-head.center {
    justify-items: center;
    text-align: center;
}

.section-head.center .section-lead {
    text-align: center;
    margin-inline: auto;
}

.grid {
    display: grid;
    gap: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0.85rem 1.4rem;
    border-radius: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    background: var(--surface);
    color: var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px -20px rgba(28, 20, 12, 0.4);
}

.btn:focus-visible {
    outline: 3px solid rgba(200, 184, 160, 0.3);
    outline-offset: 2px;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #1c1208;
}

.btn-outline {
    border-color: var(--line);
    color: var(--ink);
    background: #fff;
}

.btn-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: #fff;
}

.btn-small {
    min-height: 36px;
    padding: 0.45rem 1rem;
    font-size: 0.9rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(249, 243, 234, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 26px -24px rgba(27, 23, 18, 0.35);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.logo {
    width: 52px;
    height: 32px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.brand-text small {
    color: var(--accent-dark);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.58rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px -26px rgba(28, 20, 12, 0.35);
    margin: 0 auto;
    width: clamp(520px, 52vw, 660px);
    flex: 0 0 auto;
}

.primary-nav a {
    position: relative;
    padding: 6px 12px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    border-radius: 999px;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
}

.primary-nav a::after {
    display: none;
}

.primary-nav a:hover {
    background: rgba(200, 184, 160, 0.2);
    color: var(--accent-dark);
}

.header-cta {
    display: none;
    white-space: nowrap;
    border-radius: 999px;
    min-height: 36px;
    padding: 0.5rem 1.1rem;
    box-shadow: 0 10px 24px -22px rgba(28, 20, 12, 0.35);
}

.lang-inline {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
}

.lang-desktop {
    display: none;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
}

.lang-btn {
    min-width: 44px;
    height: 36px;
    padding: 0 0.6rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}

.lang-btn[aria-pressed="true"] {
    border-color: var(--accent);
    background: rgba(200, 184, 160, 0.15);
}

.lang-desktop .lang-btn {
    min-width: 32px;
    height: 30px;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-size: 0.72rem;
    padding: 0 0.5rem;
}

.lang-desktop .lang-btn[aria-pressed="true"] {
    background: rgba(200, 184, 160, 0.35);
}

.lang-inline .lang-btn {
    min-width: 32px;
    height: 30px;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-size: 0.72rem;
    padding: 0 0.5rem;
}

.lang-inline .lang-btn[aria-pressed="true"] {
    background: rgba(200, 184, 160, 0.35);
}

.burger {
    width: 42px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.bar {
    position: relative;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.bar::before,
.bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.bar::before {
    top: -7px;
}

.bar::after {
    bottom: -7px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 16, 12, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 60;
    backdrop-filter: blur(2px);
}

.overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88%, 360px);
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--line);
    border-radius: 20px 0 0 20px;
    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    z-index: 70;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 24px;
    box-shadow: -18px 0 40px -30px rgba(28, 20, 12, 0.45);
}

.offcanvas.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 6px 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 10px;
}

.offcanvas-title {
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--muted);
}

.offcanvas-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 1.4rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.offcanvas ul {
    list-style: none;
    margin: 0;
    padding: 6px 4px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.offcanvas a:not(.btn) {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 6px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-size: 1rem;
}

.offcanvas a:not(.btn):hover {
    background: rgba(200, 184, 160, 0.12);
    border-radius: 12px;
}

.lang-mobile {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.offcanvas .btn {
    width: 100%;
    justify-content: center;
}

.lang-mobile .lang-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

html.no-scroll,
html.no-scroll body {
    overflow: hidden;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-img {
    position: relative;
    width: 100%;
    height: clamp(500px, 80vh, 760px);
    object-fit: cover;
    object-position: center 35%;
    transform: translate3d(0, var(--heroY, 0px), 0) scale(1.02);
    transition: transform 0.2s ease-out;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 22%;
    background: linear-gradient(to top, rgba(249, 243, 234, 0.85) 0%, rgba(249, 243, 234, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 56px;
    z-index: 2;
}

.hero-panel {
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-width: min(880px, 96vw);
    animation: heroRise 0.3s ease both;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    color: var(--accent-2);
    font-weight: 700;
}

.hero-title {
    font-size: clamp(28px, 5.6vw, 52px);
    line-height: 1.1;
}

.hero-sub {
    color: var(--muted);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    border: 1px solid var(--line);
    color: var(--accent-2);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
}

.hero-panel .cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 16px 36px -30px rgba(28, 20, 12, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -30px rgba(28, 20, 12, 0.45);
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
    display: grid;
    gap: 16px;
    min-height: 100%;
    --chip-bg: var(--chip-1);
    --chip-text: #a7631f;
    --corner-spot: rgba(200, 184, 160, 0.18);
}

.service-card:nth-child(2) {
    --chip-bg: var(--chip-2);
    --chip-text: #2e6e62;
    --corner-spot: rgba(60, 127, 115, 0.22);
}

.service-card:nth-child(3) {
    --chip-bg: var(--chip-3);
    --chip-text: #40362c;
    --corner-spot: rgba(64, 54, 44, 0.16);
}

.service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    background: var(--corner-spot);
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.28rem;
    line-height: 1.35;
}

.service-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.chip {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--chip-bg);
    color: var(--chip-text);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.checklist li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 8px;
}

.about-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.about-grid .checklist {
    margin-top: 12px;
}

.media-card {
    padding: 16px;
    display: grid;
    gap: 14px;
    grid-template-rows: minmax(0, 1fr) auto;
}

.about-photo {
    border-radius: 16px;
    aspect-ratio: auto;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.media-caption {
    font-size: 0.95rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

.cta-inline {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
}

.steps-grid::before {
    display: none;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    box-shadow: 0 12px 26px -22px rgba(28, 20, 12, 0.35);
    font-size: 1.05rem;
    line-height: 1.5;
}

.step h3 {
    position: static;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--chip-1);
    color: var(--accent-dark);
}

.step:nth-child(2) {
    border-left-color: rgba(60, 127, 115, 0.6);
}

.step:nth-child(2) h3 {
    background: var(--chip-2);
    color: #2e6e62;
}

.step:nth-child(3) {
    border-left-color: rgba(64, 54, 44, 0.4);
}

.step:nth-child(3) h3 {
    background: var(--chip-3);
    color: #40362c;
}

.step:nth-child(4) {
    border-left-color: rgba(200, 184, 160, 0.5);
}

.step:nth-child(4) h3 {
    background: #f3e7d9;
    color: var(--accent-dark);
}

.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    padding: 26px 26px 26px 80px;
    min-height: auto;
    display: grid;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 12px 28px -24px rgba(28, 20, 12, 0.35);
    font-size: 1.12rem;
    line-height: 1.5;
}

.why-card::before {
    content: attr(data-icon);
    position: absolute;
    left: 26px;
    top: 26px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--chip-1);
    border: 1px solid var(--line);
    color: var(--accent-dark);
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.why-card:nth-child(2)::before {
    background: var(--chip-2);
}

.why-card:nth-child(3)::before {
    background: var(--chip-3);
}

.why-card:nth-child(4)::before {
    background: #f3e7d9;
}

.request-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.form-card {
    display: grid;
    gap: 14px;
    background: #fffaf3;
    border: 1px solid var(--line);
}

.form-lead {
    color: var(--muted);
}

.request-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 6px;
}

label {
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 184, 160, 0.2);
}

.form-actions {
    display: grid;
    gap: 10px;
}

.form-status {
    min-height: 1.4em;
    font-weight: 600;
}

.form-status.success {
    color: var(--accent-2);
}

.form-status.error {
    color: #b24a3a;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.map-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 340px;
    display: grid;
    grid-template-rows: 1fr auto;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    grid-row: 1 / -1;
}

.map-meta {
    grid-row: 2;
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 14px 16px;
    display: grid;
    gap: 6px;
    max-width: 260px;
}

.map-label {
    font-weight: 700;
    color: var(--accent-2);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.contact-card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 28px 28px 30px;
    border-radius: 20px;
    border: 1px solid rgba(217, 204, 188, 0.7);
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
    box-shadow: 0 18px 40px -32px rgba(27, 23, 18, 0.45);
    min-height: 220px;
}

.ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(217, 204, 188, 0.9);
    display: grid;
    place-items: center;
    color: var(--accent-dark);
    background: rgba(255, 255, 255, 0.9);
}

.ico svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
}

.contact-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--muted);
}

.contact-card p {
    font-size: 1.05rem;
}

.contact-card small {
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    padding: 34px 0;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 980px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -28px rgba(28, 20, 12, 0.45);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    z-index: 120;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-content {
    display: grid;
    gap: 6px;
    max-width: 620px;
}

.cookie-title {
    font-size: 1.1rem;
}

.cookie-text {
    color: var(--muted);
    font-size: 0.98rem;
}

.cookie-link {
    color: var(--accent-dark);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand.mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legal {
    color: var(--muted);
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes langSwap {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-animate .site-header .brand-text,
.lang-animate .site-header .primary-nav a,
.lang-animate .site-header .header-cta,
.lang-animate .site-header .lang-btn,
.lang-animate .offcanvas .offcanvas-title,
.lang-animate .offcanvas a,
.lang-animate .offcanvas .btn,
.lang-animate .offcanvas .lang-btn,
.lang-animate .lang-inline .lang-btn {
    animation: langSwap 0.25s ease;
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }

    .hero-content {
        padding-bottom: 40px;
    }

    .hero-panel {
        padding: 22px;
    }

    .map-meta {
        position: static;
        max-width: none;
        border-radius: 0 0 var(--radius) var(--radius);
        border-top: 1px solid var(--line);
    }

    .map-card iframe {
        grid-row: 1 / 2;
    }

    .header-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }
}

@media (min-width: 720px) {
    .cta-inline {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .form-row.two {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }
}

@media (min-width: 960px) {
    .lang-desktop {
        display: flex;
    }

    .primary-nav {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .burger {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1.05fr 1fr;
    }

    .request-grid {
        grid-template-columns: 1.05fr 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .hero-panel {
        animation: none;
        transition: none;
    }

    .hero-img {
        transition: none;
        transform: none;
    }

    .card,
    .btn {
        transition: none;
    }

    .lang-animate .site-header *,
    .lang-animate .offcanvas * {
        animation: none !important;
    }
}
