@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("fonts/unbounded-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("fonts/unbounded-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("fonts/golos-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("fonts/golos-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "JetBrains Mono";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("fonts/jbmono-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "JetBrains Mono";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("fonts/jbmono-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* Зелень — основа настроения */
    --green: #1C7A3E;        /* травяной: кнопки, ссылки, бренд */
    --green-deep: #0E3A20;   /* тёмно-лесной: тёмные секции, заголовки */
    --green-bright: #43A047;  /* сочный лист: акцентный текст на светлом, активные рамки */
    --leaf: #7AC143;          /* светлая листва */
    /* Солнце — тёплый акцент */
    --sun: #F6C12B;           /* солнечный жёлтый: заливки, маркеры, акценты на тёмном */
    --sun-deep: #E59A00;      /* насыщенное солнце: мелкий тёплый текст на белом */
    --sun-soft: #FBE7A0;      /* мягкое солнце: подсветки, фоны-намёки */
    /* Тёплые нейтральные */
    --cream: #F4EFE1;         /* тёплый кремовый фон секций (вместо холодного голубого) */
    --paper: #FFFDF6;         /* тёплый белый фон страницы */
    --ink: #1B2A1D;           /* тёплый тёмно-зелёный текст */
    --muted: #5E6D5B;         /* приглушённый зелёно-серый */
    --line: #DCD8C5;          /* тёплая линия */
    --grid: rgba(28, 122, 62, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-warm: 16px 16px 0 rgba(28, 122, 62, 0.10);
    --font-display: "Unbounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-body: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-mono: "JetBrains Mono", "SF Mono", "Courier New", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.mono {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.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;
}

:focus-visible {
    outline: 2px solid var(--green-bright);
    outline-offset: 2px;
}

/* ── Шапка ─────────────────────────────────────────── */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 246, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
}

.brand-mark {
    flex: none;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    line-height: 1.35;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 600;
    font-size: 14px;
}

.navlinks a {
    color: var(--muted);
    transition: color 0.2s;
}

.navlinks a:hover {
    color: var(--green);
}

.nav-side {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    color: var(--green);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--green);
    transition: 0.25s;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Кнопки ────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--green);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-lg {
    padding: 17px 28px;
    font-size: 13px;
}

.btn-wide {
    width: 100%;
}

.btn-solid {
    background: var(--green);
    color: #ffffff;
}

.btn-solid:hover {
    background: var(--sun);
    border-color: var(--sun);
    color: var(--green-deep);
}

.btn-line {
    background: transparent;
    color: var(--green);
}

.btn-line:hover {
    background: var(--green);
    color: #ffffff;
}

/* ── Главный экран ─────────────────────────────────── */

.hero {
    position: relative;
    padding: 22px 0 0;
    background: #11271A url("images/hero-room.webp") center / cover no-repeat;
    border-bottom: 1px solid var(--line);
}

/* затемняем фото: слева плотнее (под светлый текст), справа легче (виден мастер) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(94deg, rgba(8, 26, 16, 0.88) 0%, rgba(8, 26, 16, 0.72) 36%, rgba(8, 26, 16, 0.44) 62%, rgba(8, 26, 16, 0.20) 100%),
        linear-gradient(to top, rgba(8, 26, 16, 0.62) 0%, rgba(8, 26, 16, 0) 26%),
        radial-gradient(60% 50% at 88% 6%, rgba(246, 193, 43, 0.18), transparent 62%);
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 48px;
    align-items: stretch;
    padding: 30px 0 0;
    min-height: 520px;
}

.hero-grid > * {
    min-width: 0;
}

.hero-copy {
    align-self: start;
    padding: 92px 0 0;
    position: relative;
    z-index: 2;
}

.kicker {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 26px;
}

.kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--sun);
    flex: none;
}

h1 {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.06;
    margin: 0 0 24px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--green-deep);
}

.lead {
    font-size: clamp(16px, 1.6vw, 19px);
    max-width: 520px;
    margin: 0 0 36px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust {
    max-width: 590px;
    margin: 0 0 36px;
    padding-left: 18px;
    border-left: 3px solid var(--sun);
    color: var(--green-deep);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.7;
}

.hero-facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.hero-facts li {
    flex: 1 1 0;
    min-width: 150px;
    padding: 14px 18px 0 0;
    margin-right: 18px;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--green);
    position: relative;
}

.hero-facts li::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--sun);
}

.hero-facts li:last-child {
    margin-right: 0;
}

/* светлый текст поверх затемнённого фото */
.hero h1 {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(8, 26, 16, 0.55), 0 1px 4px rgba(8, 26, 16, 0.4);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.85);
}

.hero .kicker {
    color: rgba(255, 255, 255, 0.82);
}

.hero .hero-trust {
    color: #ffffff;
}

.hero .hero-facts li {
    color: #ffffff;
    border-top-color: rgba(255, 255, 255, 0.32);
}

.hero .btn-line {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn-line:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--green-deep);
}

/* карточка-цитата руководителя — плавает справа поверх мастера */
.hero-quote {
    position: absolute;
    right: 0;
    bottom: 26px;
    z-index: 3;
    width: min(430px, 42%);
    margin: 0;
    padding: 22px 26px;
    border-radius: var(--radius);
    background: rgba(11, 31, 20, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 3px solid var(--sun);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 44px rgba(8, 28, 16, 0.42);
}

.hero-quote blockquote {
    margin: 0 0 16px;
    font-size: 15.5px;
    font-style: italic;
    line-height: 1.66;
    color: rgba(255, 255, 255, 0.90);
}

.hero-quote figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-quote-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
}

.hero-quote-role {
    color: var(--sun);
    font-size: 11px;
}

/* демо-слайдер на главном экране */

.hero-demo {
    margin: 0;
    position: relative;
    min-width: 0;
}

.hero-demo .compare {
    height: 540px;
}

.hero-demo-note {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 14px;
    text-align: center;
}

/* мастер в каске на первом экране */

.hero-master {
    margin: 0;
    position: relative;
    min-width: 0;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.master-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* контактная тень — мастер «стоит» на полу, а не висит */
.master-card::after {
    content: "";
    position: absolute;
    left: 60%;
    bottom: 0;
    width: 54%;
    height: 30px;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(8, 28, 16, 0.30), rgba(8, 28, 16, 0) 72%);
    z-index: 0;
    pointer-events: none;
}

.master-photo {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: none;
    height: clamp(540px, 72vh, 700px);
    object-fit: contain;
    object-position: bottom center;
    align-self: flex-end;
    transform: translateX(7%);
    filter: drop-shadow(0 24px 30px rgba(8, 28, 16, 0.28));
}

.master-badge {
    position: absolute;
    left: 3%;
    bottom: 12%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(8, 28, 16, 0.24);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.master-badge-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: var(--green-deep);
}

.master-badge-text {
    color: var(--muted);
    font-size: 10px;
}

/* 3D-комната на первом экране */

.room3d-box {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    background:
        radial-gradient(120% 90% at 80% 0%, rgba(246, 193, 43, 0.16), transparent 60%),
        linear-gradient(160deg, #FCFAEF 0%, #EBF2E0 100%);
}

.room3d-box canvas {
    display: block;
    width: 100%;
    height: clamp(330px, 56vh, 560px);
}

.room3d-stage {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    background: var(--green-deep);
    color: #ffffff;
    font-size: 11px;
    pointer-events: none;
    transition: background 0.3s;
}

.room3d-stage.is-done {
    background: var(--sun);
    color: var(--green-deep);
}

.room3d-ctrl {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.room3d-ctrl .mono {
    color: var(--muted);
    font-size: 11px;
    white-space: nowrap;
}

.room-range {
    flex: 1;
    appearance: none;
    -webkit-appearance: none;
    height: 5px;
    background: linear-gradient(to right, var(--sun) 0%, var(--sun) var(--progress, 0%), var(--line) var(--progress, 0%));
    border-radius: 999px;
    outline-offset: 4px;
    cursor: ew-resize;
}

.room-range::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--sun);
    border: 1px solid var(--green-deep);
    border-radius: 50%;
    box-shadow: 3px 3px 0 rgba(28, 122, 62, 0.25);
    cursor: ew-resize;
}

.room-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--sun);
    border: 1px solid var(--green-deep);
    border-radius: 50%;
    box-shadow: 3px 3px 0 rgba(28, 122, 62, 0.25);
    cursor: ew-resize;
}

/* ── Бегущая строка ────────────────────────────────── */

.ticker {
    position: relative;
    overflow: hidden;
    contain: paint;
    height: 45px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.ticker-track {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    gap: 34px;
    padding: 13px 0;
    white-space: nowrap;
    width: max-content;
    animation: ticker 56s linear infinite;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
}

.ticker-track i {
    font-style: normal;
    font-size: 8px;
    color: var(--sun-deep);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Секции ────────────────────────────────────────── */

section {
    padding: 88px 0;
}

.section-ice {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-dark {
    background:
        radial-gradient(78% 60% at 82% -4%, rgba(122, 193, 67, 0.18), transparent 58%),
        radial-gradient(60% 55% at 6% 104%, rgba(246, 193, 43, 0.12), transparent 55%),
        linear-gradient(158deg, #0F3D22 0%, #0A2C18 100%);
    color: #ffffff;
}

.section-head {
    margin-bottom: 44px;
}

.section-index {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 26px;
}

.section-index::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--sun);
    flex: none;
}

.section-index::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.section-dark .section-index {
    color: rgba(255, 255, 255, 0.65);
}

.section-dark .section-index::after {
    background: rgba(255, 255, 255, 0.18);
}

.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

h2 {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1.1;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--green-deep);
}

.section-dark h2 {
    color: #ffffff;
}

.section-note {
    max-width: 380px;
    margin: 0;
    font-size: 14.5px;
    color: var(--muted);
}

/* ── Слайдер «До / После» ──────────────────────────── */

.before-after-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.work-tab {
    border: 1px solid var(--green);
    background: transparent;
    color: var(--green);
    border-radius: 999px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
}

.work-tab:hover {
    background: var(--cream);
}

.work-tab.active {
    background: var(--green);
    color: #ffffff;
}

.before-after-wrapper {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 34px;
    align-items: stretch;
    margin-bottom: 48px;
}

.compare {
    position: relative;
    height: 600px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--green-deep);
    --compare-position: 50%;
}

.compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-before {
    z-index: 1;
}

.compare-after-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 var(--compare-position));
}

.compare-after {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-label {
    position: absolute;
    top: 14px;
    z-index: 5;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--green-deep);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
}

.compare-label-before {
    left: 14px;
}

.compare-label-after {
    right: 14px;
    background: var(--sun);
}

.compare-line {
    position: absolute;
    top: 0;
    left: var(--compare-position);
    z-index: 4;
    width: 2px;
    height: 100%;
    background: #ffffff;
    transform: translateX(-50%);
    pointer-events: none;
}

.compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: var(--green);
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(14, 58, 32, 0.35);
}

.compare-range {
    position: absolute;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.work-info {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-warm);
    display: flex;
    flex-direction: column;
}

.work-index {
    color: var(--muted);
    margin: 0 0 14px;
}

.work-index b {
    color: var(--green-bright);
}

.work-info h3 {
    font-family: var(--font-display);
    font-weight: 600;
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.15;
    color: var(--green-deep);
}

.work-info > p.work-text {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 15px;
}

.work-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.thumb {
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    height: 116px;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.85;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover,
.thumb.active {
    border-color: var(--green-bright);
    opacity: 1;
}

/* ── О компании ────────────────────────────────────── */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: stretch;
}

.about-photo {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.about-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.about-photo figcaption {
    color: var(--muted);
    padding-top: 12px;
}

.about-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 52px 48px;
    box-shadow: var(--shadow-warm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-role {
    color: var(--green-bright);
    margin: 14px 0 22px;
}

.about-text {
    font-size: 16.5px;
    margin: 0;
    color: var(--muted);
}

/* ── Услуги ────────────────────────────────────────── */

.service-rows {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1.1fr 1.6fr;
    align-items: center;
    gap: 24px;
    padding: 30px 18px;
    border-top: 1px solid var(--line);
    position: relative;
    transition: background 0.2s;
}

.service-row:last-child {
    border-bottom: 1px solid var(--line);
}

.service-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px;
    width: 3px;
    background: var(--sun);
    transform: scaleY(0);
    transition: transform 0.25s;
}

.service-row:hover {
    background: var(--cream);
}

.service-row:hover::before {
    transform: scaleY(1);
}

.service-num {
    font-size: 14px;
    color: var(--muted);
}

.service-row h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 21px;
    margin: 0;
    color: var(--green-deep);
}

.service-row p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* ── Замер ─────────────────────────────────────────── */

.measure-section {
    background: #F4EEE1;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.measure-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: stretch;
    min-height: 440px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background:
        linear-gradient(138deg, rgba(246, 193, 43, 0.24), transparent 42%),
        #ffffff;
    box-shadow: var(--shadow-warm);
}

.measure-copy {
    padding: clamp(26px, 3.4vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.measure-copy .section-index {
    width: 100%;
}

.measure-copy h2 {
    max-width: 680px;
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.12;
}

.measure-copy p:not(.section-index) {
    margin: 18px 0 26px;
    color: var(--muted);
    font-size: 16px;
    max-width: 520px;
}

.measure-photo {
    margin: 0;
    position: relative;
    min-height: 0;
}

.measure-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Цены ──────────────────────────────────────────── */

.price-wrap {
    max-width: 860px;
}

.price-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.price-table th {
    text-align: left;
    padding: 14px 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 2px solid var(--green);
}

.price-table td {
    padding: 21px 16px;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    color: var(--green-deep);
}

.price-table td.mono {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
    text-transform: none;
}

.price-note {
    color: var(--muted);
    margin: 0;
    font-size: 11px;
}

/* ── Консультация ──────────────────────────────────── */

.consult-grid {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    gap: 34px;
    align-items: start;
}

.consult-photo {
    margin: 0;
    position: relative;
    min-height: 0;
    height: clamp(400px, 38vw, 480px);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

.consult-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 72%;
}

.consult-photo figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 22px;
    border-radius: var(--radius-sm);
    background: rgba(14, 58, 32, 0.88);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.consult-photo .mono {
    color: var(--sun);
    font-size: 11px;
}

.consult-photo ul {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.consult-photo li {
    position: relative;
    padding-left: 18px;
    font-weight: 600;
    font-size: 15px;
}

.consult-photo li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    background: var(--sun);
}

/* ── Квиз-калькулятор ──────────────────────────────── */

.quiz {
    background: #ffffff;
    border: 1px solid var(--green);
    border-radius: var(--radius);
    padding: 40px 44px 32px;
    box-shadow: var(--shadow-warm);
    position: relative;
    max-width: 880px;
    width: 100%;
}

.quiz-head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 30px;
}

.quiz-progress {
    color: var(--muted);
    margin: 0;
    white-space: nowrap;
}

.quiz-progress b {
    color: var(--green-bright);
}

.quiz-bar {
    flex: 1;
    height: 5px;
    background: var(--cream);
    border-radius: 999px;
    overflow: hidden;
}

.quiz-bar-fill {
    display: block;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--green), var(--leaf));
    transition: width 0.35s ease;
}

.quiz-step {
    display: none;
    border: none;
    padding: 0;
    margin: 0;
}

.quiz-step.active {
    display: block;
    animation: quiz-in 0.3s ease;
}

@keyframes quiz-in {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.quiz-q {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(20px, 2.4vw, 28px);
    color: var(--green-deep);
    padding: 0;
    margin: 0 0 24px;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 19px 20px;
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--green-deep);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.quiz-option:hover {
    border-color: var(--green-bright);
    background: #F6F3E7;
    transform: translateY(-1px);
}

.quiz-option.selected {
    border-color: var(--green-bright);
    background: #EFF6E6;
}

.quiz-option-num {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    flex: none;
    font-size: 12px;
    transition: 0.2s;
}

.quiz-option:hover .quiz-option-num,
.quiz-option.selected .quiz-option-num {
    background: var(--sun);
    border-color: var(--sun);
    color: var(--green-deep);
}

.quiz-contact {
    max-width: 420px;
}

.quiz-hint {
    color: var(--muted);
    margin: 14px 0 0;
    font-size: 11px;
}

.quiz-back {
    margin-top: 26px;
    border: none;
    background: none;
    padding: 6px 0;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
}

.quiz-back:hover {
    color: var(--green);
}

.quiz-done-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 12px;
    color: var(--green-deep);
}

.quiz-done-text {
    color: var(--muted);
    margin: 0 0 14px;
    font-size: 16px;
}

.quiz-summary {
    color: var(--green);
    background: var(--cream);
    padding: 14px 18px;
    margin: 0 0 24px;
    line-height: 1.8;
    border-radius: var(--radius-sm);
}

.field {
    width: 100%;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    margin: 7px 0;
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    transition: border-color 0.2s;
}

.field::placeholder {
    color: #9CA690;
    font-weight: 500;
}

.field:hover {
    border-color: var(--green);
}

.field:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(246, 193, 43, 0.35);
}

.field-error {
    color: #B3261E;
    font-size: 13px;
    font-weight: 700;
    margin: 4px 0 0;
}

.quiz-contact .btn {
    margin-top: 14px;
}

/* ── Объекты ───────────────────────────────────────── */

.gallery {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.85fr;
    grid-auto-rows: 290px;
    gap: 22px;
}

.gallery figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.gallery figure:first-child {
    grid-row: span 2;
}

.gallery-extra {
    margin-top: 22px;
}

.gallery-extra[hidden] {
    display: none;
}

.gallery img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: zoom-in;
    transition: opacity 0.2s;
}

.gallery img:hover {
    opacity: 0.92;
}

.gallery-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.gallery-more-btn[hidden] {
    display: none;
}

/* просмотр фото на весь экран */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(8, 28, 16, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    cursor: zoom-out;
}

.lightbox[hidden] {
    display: none;
}

html.js .lightbox:not([hidden]) {
    animation: lightbox-in 0.22s ease;
}

@keyframes lightbox-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-body {
    margin: 0;
    max-width: min(1200px, 94vw);
    cursor: default;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    background: var(--green-deep);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.75);
    padding-top: 12px;
    font-size: 11px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
}

.lightbox-close:hover {
    background: var(--sun);
    border-color: var(--sun);
    color: var(--green-deep);
}

@media (prefers-reduced-motion: reduce) {
    html.js .lightbox:not([hidden]) {
        animation: none;
    }
}

.gallery figcaption {
    color: var(--muted);
    font-size: 11px;
    padding: 11px 0 0;
}

/* ── Процесс ───────────────────────────────────────── */

.process-title {
    margin-bottom: 40px;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.step {
    position: relative;
}

.step-num {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: var(--green-deep);
    color: var(--sun);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    margin: 0 0 8px;
    color: #ffffff;
}

.step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14.5px;
}

/* ── Контакты ──────────────────────────────────────── */

.contacts {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.contact-phone {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 3.2vw, 40px);
    color: #ffffff;
    margin: 30px 0 26px;
    transition: color 0.2s;
}

.contact-phone:hover {
    color: var(--sun);
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-bottom: 34px;
}

.contact-list a,
.contact-list span {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.82);
}

.contact-list a:hover {
    color: var(--sun);
}

.contact-actions {
    display: flex;
    gap: 12px;
}

.contact-actions a {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #ffffff;
    display: grid;
    place-items: center;
    transition: 0.2s;
}

.contact-actions a:hover {
    background: var(--sun);
    border-color: var(--sun);
    color: var(--green-deep);
}

.contact-panel {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background:
        linear-gradient(135deg, rgba(246, 193, 43, 0.13), transparent 42%),
        rgba(255, 255, 255, 0.06);
    box-shadow: 12px 12px 0 rgba(255, 255, 255, 0.06);
    padding: clamp(26px, 4vw, 46px);
    border-radius: var(--radius);
}

.panel-kicker {
    color: var(--sun);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 18px;
}

.contact-panel h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 28px;
    max-width: 620px;
}

.contact-steps {
    display: grid;
    gap: 18px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.contact-steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

.contact-steps span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    color: var(--sun);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
}

.contact-steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15.5px;
}

.contact-panel-cta {
    width: fit-content;
}

/* ── Дизайнер ──────────────────────────────────────── */

.designer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: stretch;
}

.designer-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(28px, 4vw, 46px);
    box-shadow: var(--shadow-warm);
    display: flex;
    flex-direction: column;
}

.designer-tag {
    align-self: flex-start;
    background: var(--green);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 11px;
    margin-bottom: 22px;
}

.designer-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.1;
    color: var(--green-deep);
    margin: 0 0 16px;
}

.designer-lead {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 16px;
    max-width: 580px;
}

.designer-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 24px;
}

.designer-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.4;
}

.designer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5 10 17 19 7' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.designer-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: auto;
}

.designer-photo {
    margin: 0;
    position: relative;
    min-height: 560px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-warm);
}

.designer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.designer-photo figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px 22px;
    border-radius: var(--radius-sm);
    background: rgba(14, 58, 32, 0.90);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    gap: 4px;
}

.designer-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
}

.designer-role {
    color: var(--sun);
    font-size: 11px;
    margin-bottom: 6px;
}

.designer-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    margin-bottom: 8px;
}

.designer-contact {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    transition: color 0.2s;
}

.designer-contact:hover {
    color: var(--sun);
}

/* ── Подвал ────────────────────────────────────────── */

footer {
    background: #ffffff;
    border-top: 1px solid var(--line);
    padding: 30px 0;
}

.foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-foot {
    color: var(--green);
}

.brand-foot .brand-name {
    font-size: 10px;
}

.foot-copy {
    color: var(--muted);
    font-size: 11px;
}

.foot-dev {
    color: var(--green);
    transition: color 0.2s;
}

.foot-dev:hover {
    color: var(--sun-deep);
}

.foot-phone {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--green);
}

/* ── Появление при прокрутке ───────────────────────── */

html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    html.js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ticker-track {
        animation: none;
    }
}

/* ── Мобильная версия ──────────────────────────────── */

@media (max-width: 980px) {
    .navlinks {
        display: none;
    }

    .burger {
        display: flex;
    }

    .navlinks.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(14, 58, 32, 0.12);
        padding: 6px 0;
    }

    .navlinks.open a {
        padding: 15px 24px;
        font-size: 16px;
        color: var(--green);
        border-bottom: 1px solid var(--cream);
    }

    .navlinks.open a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 880px) {
    h1 {
        font-size: 36px;
        line-height: 1.12;
    }

    h2 {
        font-size: 32px;
    }

    .nav {
        height: 64px;
        gap: 14px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 52px 0 64px;
    }

    .hero-demo .compare {
        height: 440px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(8, 26, 16, 0.88) 0%, rgba(8, 26, 16, 0.66) 40%, rgba(8, 26, 16, 0.52) 72%, rgba(8, 26, 16, 0.42) 100%),
            radial-gradient(60% 30% at 80% 2%, rgba(246, 193, 43, 0.16), transparent 60%);
    }

    .master-card {
        min-height: 0;
        padding-top: 24px;
    }

    .master-card::after {
        left: 50%;
    }

    .master-photo {
        height: clamp(360px, 70vw, 500px);
        transform: none;
    }

    .hero-quote {
        position: static;
        width: auto;
        max-width: 100%;
        margin-top: 18px;
    }

    .hero-quote {
        position: static;
        width: auto;
        max-width: 100%;
        margin-top: 8px;
    }

    .hero-facts {
        display: grid;
        gap: 0;
    }

    .hero-facts li {
        margin-right: 0;
        padding: 12px 0;
    }

    .section-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .before-after-wrapper {
        grid-template-columns: 1fr;
    }

    .compare {
        height: 440px;
    }

    .split,
    .contacts,
    .measure-card,
    .consult-grid,
    .designer-grid {
        grid-template-columns: 1fr;
    }

    .designer-list {
        grid-template-columns: 1fr;
    }

    .designer-photo {
        min-height: 460px;
        order: -1;
    }

    .about-photo img {
        height: 400px;
    }

    .room3d-box canvas {
        height: clamp(300px, 42vh, 430px);
    }

    .hero-grid {
        min-height: 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .steps::before {
        display: none;
    }

    .quiz {
        padding: 26px 20px 24px;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .price-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .price-wrap {
        overflow-x: visible;
    }

    .price-table {
        min-width: 0;
        table-layout: fixed;
        font-size: 15px;
    }

    .price-table th,
    .price-table td {
        padding-left: 10px;
        padding-right: 10px;
    }

    .price-table th:last-child,
    .price-table td:last-child {
        width: 42%;
    }

    .price-table td.mono {
        font-size: 11px;
    }

    .measure-photo {
        min-height: 320px;
        order: -1;
    }

    .consult-photo {
        min-height: 420px;
    }

    .service-row {
        grid-template-columns: 48px 1fr;
        grid-template-areas:
            "num title"
            "num text";
        row-gap: 6px;
        padding: 24px 12px;
    }

    .service-num {
        grid-area: num;
        align-self: start;
    }

    .service-row h3 {
        grid-area: title;
    }

    .service-row p {
        grid-area: text;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery figure:first-child {
        grid-row: auto;
    }

    .contact-steps li {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .contact-steps span {
        width: 38px;
        height: 38px;
    }

    .foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 25px;
        line-height: 1.16;
    }

    h2 {
        font-size: 28px;
    }
}
