/* ==============================================================
   ОКНА БРО СЕРВИС — фронтенд
   Стиль: смелая типографика, оконный мотив, асимметрия,
   чёткий контраст тёмно-синего и тёплого охристого акцента.
============================================================== */

:root {
    --bg: #f4f1ea;          /* тёплый светлый фон, не белый */
    --paper: #ffffff;
    --ink: #0d1b2a;
    --ink-soft: #34465c;
    --muted: #6a7585;
    --line: #d8d4c8;
    --line-soft: #e8e4d9;
    --primary: #0d1b2a;     /* почти чёрный синий */
    --primary-2: #1b2c44;
    --accent: #d97a1f;      /* тёплый охристый */
    --accent-2: #b8631a;
    --accent-soft: #f6e6d4;
    --danger: #b3261e;
    --ok: #1f7a3a;
    --maxw: 1240px;
    --shadow-card: 0 2px 0 0 var(--line), 0 16px 32px -22px rgba(13, 27, 42, .25);
    --shadow-lg: 0 30px 60px -30px rgba(13, 27, 42, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
    font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: 0;
}
.display {
    font-family: "Manrope", "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: .96;
    text-wrap: balance;
}
h1.display { font-size: clamp(44px, 8vw, 110px); }
h2.display { font-size: clamp(32px, 5.5vw, 72px); }
.display-accent { color: var(--accent); font-style: italic; font-family: "Manrope", "Georgia", serif; font-weight: 800; }

p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

::selection { background: var(--accent); color: var(--paper); }

/* ============================================================
   PROMO BANNER + STICKER
============================================================ */
.promo-banner {
    display: block;
    background: var(--accent);
    color: var(--ink);
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
    padding: 10px 0;
    text-decoration: none;
}
.promo-banner:hover { background: var(--accent-2); color: var(--ink); }
.promo-banner-track {
    display: inline-flex; align-items: center; gap: 24px;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    padding-left: 100%;
}
.promo-tag {
    background: var(--ink); color: var(--accent);
    padding: 4px 12px;
    text-transform: uppercase; font-weight: 800; letter-spacing: .14em; font-size: 12px;
}
.promo-text { color: var(--ink); }
.promo-discount {
    background: var(--ink); color: var(--paper);
    padding: 4px 12px;
    font-weight: 800;
}

/* Стикер-«−15%» в hero */
.promo-sticker {
    position: absolute;
    top: 60px;
    right: -30px;
    width: 150px;
    height: 150px;
    z-index: 5;
    transform: rotate(12deg);
    pointer-events: none;
    filter: drop-shadow(0 8px 12px rgba(13, 27, 42, .25));
}
.promo-sticker .sticker-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    animation: sticker-spin 20s linear infinite;
}
.sticker-text {
    fill: var(--ink);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .12em;
}
.promo-sticker::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--accent);
    border-radius: 50%;
    border: 2.5px solid var(--ink);
}
.sticker-inner {
    position: absolute; inset: 28px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    background: var(--paper);
    border-radius: 50%;
    border: 1.5px dashed var(--ink);
}
.sticker-discount {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -.03em;
}
.sticker-label {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-top: 4px;
}
@keyframes sticker-spin {
    from { transform: rotate(0); }
    to   { transform: rotate(360deg); }
}
@media (max-width: 980px) {
    .promo-sticker { top: 20px; right: 20px; width: 120px; height: 120px; }
    .sticker-discount { font-size: 22px; }
    .sticker-inner { inset: 22px; }
}

/* ============================================================
   THEMES (праздничные оверлеи)
============================================================ */
.theme-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}
body:not(.theme-newyear):not(.theme-valentine):not(.theme-spring):not(.theme-autumn):not(.theme-patriot) .theme-overlay { display: none; }

/* падающие частицы — общий контейнер */
.theme-overlay::before, .theme-overlay::after {
    content: "";
    position: absolute; top: -120px; left: 0; right: 0; bottom: 0;
    background-repeat: repeat;
    background-size: 240px 240px;
    opacity: .85;
    will-change: transform;
}

/* НОВЫЙ ГОД — снежинки */
body.theme-newyear .theme-overlay::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g fill='white' opacity='0.9'><circle cx='40' cy='30' r='2.5'/><circle cx='180' cy='80' r='1.8'/><circle cx='90' cy='150' r='2.2'/><circle cx='200' cy='200' r='1.5'/><circle cx='20' cy='200' r='2'/><circle cx='130' cy='40' r='1.6'/></g></svg>");
    animation: snow-fall 14s linear infinite;
}
body.theme-newyear .theme-overlay::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g fill='white' opacity='0.6'><circle cx='110' cy='60' r='3.5'/><circle cx='30' cy='120' r='3'/><circle cx='200' cy='160' r='3.2'/><circle cx='160' cy='30' r='2.8'/></g></svg>");
    animation: snow-fall 22s linear infinite;
}
@keyframes snow-fall {
    from { transform: translateY(-120px); }
    to   { transform: translateY(calc(100vh + 120px)); }
}

/* ВАЛЕНТИНКИ — сердечки */
body.theme-valentine .theme-overlay::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g fill='%23e63946' opacity='0.55'><path d='M40 40c-6-9-22-2-12 9l12 14 12-14c10-11-6-18-12-9z'/><path d='M180 110c-4-7-16-2-9 7l9 11 9-11c7-9-5-14-9-7z' opacity='0.7'/><path d='M90 180c-5-8-19-2-10 8l10 13 10-13c9-10-5-16-10-8z'/></g></svg>");
    animation: snow-fall 18s linear infinite;
}
body.theme-valentine .theme-overlay::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g fill='%23ff8fa3' opacity='0.45'><path d='M150 50c-6-10-22-2-12 9l12 14 12-14c10-11-6-19-12-9z'/><path d='M50 150c-5-8-18-2-9 7l9 11 9-11c9-9-4-15-9-7z'/></g></svg>");
    animation: snow-fall 24s linear infinite;
}

/* ВЕСНА (8 марта) — лепестки */
body.theme-spring .theme-overlay::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g fill='%23ff9bb3' opacity='0.6'><ellipse cx='40' cy='40' rx='8' ry='4' transform='rotate(20 40 40)'/><ellipse cx='180' cy='100' rx='9' ry='4' transform='rotate(-30 180 100)'/><ellipse cx='90' cy='180' rx='7' ry='3.5' transform='rotate(45 90 180)'/></g></svg>");
    animation: snow-fall 20s linear infinite;
}
body.theme-spring .theme-overlay::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g fill='%23fde0e0' opacity='0.7'><ellipse cx='160' cy='60' rx='9' ry='4' transform='rotate(-15 160 60)'/><ellipse cx='30' cy='160' rx='8' ry='4' transform='rotate(60 30 160)'/></g></svg>");
    animation: snow-fall 28s linear infinite;
}

/* ОСЕНЬ — листья */
body.theme-autumn .theme-overlay::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g opacity='0.7'><path d='M40 40c-6 0-12 6-12 12s6 12 12 12c8 0 12-6 12-14 0-6-4-10-12-10z' fill='%23d97a1f'/><path d='M180 100c-5 0-10 5-10 10s5 10 10 10c7 0 10-5 10-12 0-5-3-8-10-8z' fill='%23a04a0e'/><path d='M90 180c-6 0-11 5-11 11s5 11 11 11c7 0 11-5 11-13 0-5-4-9-11-9z' fill='%23c98a2b'/></g></svg>");
    animation: snow-fall 18s linear infinite;
}
body.theme-autumn .theme-overlay::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g opacity='0.55'><path d='M150 50c-5 0-9 4-9 9s4 9 9 9c6 0 9-4 9-11 0-4-3-7-9-7z' fill='%23b8631a'/><path d='M40 150c-5 0-9 4-9 9s4 9 9 9c6 0 9-4 9-11 0-4-3-7-9-7z' fill='%23e09040'/></g></svg>");
    animation: snow-fall 26s linear infinite;
}

/* ПАТРИОТИЧЕСКАЯ — полоса наверху */
body.theme-patriot .theme-overlay {
    background:
        linear-gradient(180deg,
            #ffffff 0, #ffffff 6px,
            #1e3a8a 6px, #1e3a8a 12px,
            #b91c1c 12px, #b91c1c 18px,
            transparent 18px);
    opacity: .85;
}

/* лёгкая «снежная шапка» сверху для новогодней темы */
body.theme-newyear::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; height: 8px;
    background: #fff;
    z-index: 99;
    box-shadow: 0 0 12px rgba(255,255,255,.9);
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 18px 28px; }

.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; color: var(--ink); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
    font-family: "Manrope", "Inter", sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.brand-tag { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: .04em; }

.nav { display: flex; gap: 28px; }
.nav a {
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .02em;
    position: relative;
    padding: 6px 0;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s cubic-bezier(.5,.1,.2,1);
}
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link {
    font-family: "Manrope", sans-serif;
    font-weight: 700; color: var(--ink); font-size: 17px; letter-spacing: -.01em;
}
.phone-link:hover { color: var(--accent-2); }

@media (max-width: 980px) { .nav { display: none; } .header-inner { gap: 12px; } }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 26px;
    border-radius: 0;        /* квадратные углы — характернее */
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .01em;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
    text-align: center;
    text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-2); color: var(--paper); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--primary-2); color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ico { display: inline-flex; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    color: var(--ink);
    opacity: .9;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,0) 80%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,0) 80%);
}
.hero-bg svg { width: 100%; height: 100%; }
.hero-grid {
    position: relative;
    display: grid; grid-template-columns: 1.5fr .9fr;
    gap: 56px; align-items: end;
}

.eyebrow {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    color: var(--accent-2);
    padding: 6px 12px;
    border: 1px solid var(--accent-2);
    margin-bottom: 24px;
}
.eyebrow-light { color: var(--accent); border-color: var(--accent); }

.hero-content h1 { margin-bottom: 28px; }
.hero-sub { font-size: 19px; color: var(--ink-soft); max-width: 600px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* «Окно» в hero как декоративный элемент со статистикой */
.hero-window {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}
.window-frame {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border: 3px solid var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: rotate(-1.5deg);
}
.window-pane {
    border: 1.5px solid var(--ink);
    margin: -.75px;             /* объединяем границы в крест */
    padding: 22px 20px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 0;
    position: relative;
    background: linear-gradient(135deg, rgba(217,122,31,.06), transparent 60%);
}
.window-pane .pane-num {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--ink);
}
.window-pane .pane-label {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.25;
    text-transform: lowercase;
    letter-spacing: .02em;
}
.window-pane-cta { background: var(--ink); color: var(--paper); }
.window-pane-cta .pane-cta-text {
    font-family: "Manrope", sans-serif;
    font-weight: 700; font-size: 17px; line-height: 1.25;
}
.window-pane-cta .pane-cta-link {
    color: var(--accent);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: 12px;
}
.window-pane-cta .pane-cta-link:hover { color: var(--paper); }

.window-handle {
    position: absolute;
    right: -10px; top: 50%;
    width: 14px; height: 80px;
    background: var(--ink);
    transform: translateY(-50%) rotate(-1.5deg);
    border-radius: 3px;
}

@media (max-width: 980px) {
    .hero { padding: 56px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-window { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee {
    background: var(--ink);
    color: var(--paper);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 3vw, 32px);
    letter-spacing: -.01em;
    text-transform: lowercase;
}
.marquee-track span:not(.m-dot) { color: var(--paper); }
.m-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-dark { background: var(--ink); color: #c9d2dd; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--paper); }

.big-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 56px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--ink);
}
.big-head-light { border-bottom-color: rgba(255,255,255,.18); }
.big-num {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: clamp(60px, 9vw, 130px);
    line-height: .8;
    color: var(--accent);
    letter-spacing: -.06em;
}
.big-num-inline { display: block; margin-bottom: 12px; font-size: clamp(48px, 7vw, 90px); }
.big-lead { color: var(--ink-soft); font-size: 18px; max-width: 640px; margin-top: 18px; }
.section-dark .big-lead { color: #b8c2d4; }

@media (max-width: 700px) {
    .section { padding: 72px 0; }
    .big-head { grid-template-columns: 1fr; gap: 8px; margin-bottom: 36px; padding-bottom: 24px; }
}

/* ============================================================
   SERVICES
============================================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.card {
    background: var(--paper);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 32px 30px 30px;
    transition: background .25s ease, transform .25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}
.card::before {
    content: "";
    position: absolute; left: 0; top: 0; width: 0; height: 3px;
    background: var(--accent);
    transition: width .35s cubic-bezier(.5,.1,.2,1);
}
.card:hover { background: var(--bg); transform: translateY(-2px); z-index: 1; }
.card:hover::before { width: 100%; }
.card-num {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--accent-2);
    letter-spacing: .1em;
    margin-bottom: 14px;
}
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); flex-grow: 1; margin-bottom: 22px; }
.card .price {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: var(--ink);
    font-size: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card .price::after {
    content: "→";
    color: var(--accent-2);
    font-size: 18px;
    transition: transform .2s ease;
}
.card:hover .price::after { transform: translateX(4px); }

/* ============================================================
   ADVANTAGES
============================================================ */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}
.adv {
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 36px 32px;
    transition: background .2s ease;
}
.adv:hover { background: rgba(255,255,255,.03); }
.adv-num {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 13px;
    letter-spacing: .12em;
    margin-bottom: 18px;
}
.adv h3 { font-size: 22px; margin-bottom: 10px; color: var(--paper); }
.adv p { color: #b8c2d4; font-size: 15px; line-height: 1.6; }

/* ============================================================
   STEPS
============================================================ */
.steps {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--ink);
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
.steps li {
    padding: 36px 26px 32px;
    border-right: 1px solid var(--line);
    position: relative;
    background: var(--paper);
}
.steps li:last-child { border-right: none; }
.steps li::before {
    content: ""; position: absolute; top: -2px; left: 0; width: 30%; height: 4px;
    background: var(--accent);
    transition: width .3s ease;
}
.steps li:hover::before { width: 100%; }
.step-num {
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 18px;
}
.steps h3 { font-size: 20px; margin-bottom: 8px; }
.steps p { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   CONTACTS
============================================================ */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 980px) { .contacts-grid { grid-template-columns: 1fr; gap: 48px; } }
.contacts-info h2 { margin-bottom: 18px; }

.contact-list { list-style: none; padding: 0; margin: 32px 0 28px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: none; }
.ci {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--ink);
    color: var(--accent);
    flex-shrink: 0;
}
.ci-label { font-family: "Manrope", sans-serif; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 4px; }
.ci-value { font-size: 17px; color: var(--ink); font-weight: 600; font-family: "Manrope", sans-serif; }
.link { color: var(--ink); }
.link:hover { color: var(--accent-2); }

.socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.socials a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px;
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-weight: 700; font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .15s ease;
}
.socials a:hover { background: var(--ink); color: var(--accent); }
.socials-footer a { border-color: rgba(255,255,255,.4); color: var(--paper); }
.socials-footer a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* ============================================================
   FORM
============================================================ */
.form {
    background: var(--paper);
    border: 1.5px solid var(--ink);
    padding: 40px 36px;
    display: flex; flex-direction: column; gap: 18px;
    box-shadow: 12px 12px 0 0 var(--ink);
    position: relative;
}
.form-tag {
    position: absolute;
    top: -14px; left: 24px;
    background: var(--accent);
    color: var(--ink);
    padding: 4px 12px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.form h3 { font-size: 24px; margin: 4px 0 6px; line-height: 1.2; }
.form label { display: flex; flex-direction: column; gap: 8px; font-family: "Manrope", sans-serif; font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.form input, .form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 0;
    font: 400 16px/1.5 "Inter", sans-serif;
    color: var(--ink);
    background: var(--paper);
    transition: border-color .15s ease, box-shadow .15s ease;
    text-transform: none;
    letter-spacing: 0;
}
.form input::placeholder, .form textarea::placeholder { color: var(--muted); }
.form input:focus, .form textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 4px 4px 0 0 var(--accent);
}
.form textarea { resize: vertical; min-height: 100px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { margin: 0; font-size: 14px; min-height: 1em; font-weight: 600; font-family: "Manrope", sans-serif; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: var(--danger); }
.form-note { margin: 0; color: var(--muted); font-size: 12px; text-align: center; line-height: 1.5; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--ink);
    color: #b8c2d4;
    padding: 64px 0 0;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .brand { color: var(--paper); }
.footer-brand .brand:hover { color: var(--paper); }
.footer-brand .brand-mark { color: var(--paper); }
.footer-brand .brand-name { color: var(--paper); }
.footer-brand .brand-tag { color: rgba(255,255,255,.5); }
.footer-about { margin-top: 18px; color: rgba(255,255,255,.65); max-width: 420px; font-size: 14px; }
.site-footer h4 { color: var(--paper); font-family: "Manrope", sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 16px; }
.site-footer p { margin: 0 0 8px; color: rgba(255,255,255,.65); font-size: 14px; }
.link-light { color: var(--paper); font-weight: 700; font-size: 19px; font-family: "Manrope", sans-serif; }
.link-light:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 28px; font-size: 13px; color: rgba(255,255,255,.45); }
@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   CREDIT (made with love by Whynot) — встроена в футер
============================================================ */
.credit-link {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    font-family: "Manrope", sans-serif;
}
.credit-link:hover { transform: translateY(-1px); background: rgba(255,255,255,.12); border-color: var(--accent); }
.credit-tag {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .65;
    font-weight: 600;
}
.credit-name {
    font-family: "Brush Script MT", "Lucida Handwriting", "Segoe Script", "Comic Sans MS", cursive;
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
    font-style: italic;
    letter-spacing: .02em;
}

dialog.credit-modal {
    border: 1.5px solid var(--ink);
    border-radius: 0;
    padding: 0;
    max-width: 440px;
    width: 92%;
    background: var(--paper);
    box-shadow: 14px 14px 0 0 var(--ink);
    color: var(--ink);
}
dialog.credit-modal::backdrop { background: rgba(13, 27, 42, .55); backdrop-filter: blur(3px); }
.credit-card { padding: 36px 32px; position: relative; display: flex; flex-direction: column; gap: 14px; }
.credit-close {
    position: absolute; top: 12px; right: 16px;
    background: transparent; border: 0;
    font-size: 28px; color: var(--ink); cursor: pointer;
    line-height: 1;
}
.credit-close:hover { color: var(--accent-2); }
.credit-eyebrow {
    font-family: "Manrope", sans-serif;
    font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
    font-weight: 700; color: var(--accent-2);
    border: 1px solid var(--accent-2);
    padding: 4px 10px;
    align-self: flex-start;
}
.credit-name-big {
    font-family: "Brush Script MT", "Lucida Handwriting", "Segoe Script", "Comic Sans MS", cursive;
    font-size: 64px;
    color: var(--ink);
    line-height: 1;
    font-style: italic;
    letter-spacing: .02em;
    margin-top: 4px;
}
.credit-desc { color: var(--ink-soft); font-size: 15px; margin: 4px 0 8px; }
.credit-links { display: flex; gap: 10px; flex-wrap: wrap; }
.credit-links a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px;
    background: var(--ink); color: var(--paper);
    font-family: "Manrope", sans-serif; font-weight: 700;
    font-size: 14px; letter-spacing: .03em;
    text-transform: uppercase;
    border: 1.5px solid var(--ink);
    transition: all .15s ease;
}
.credit-links a:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.review-card {
    background: var(--primary-2);
    border: 1px solid rgba(255,255,255,.08);
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 10px;
}
.rv-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rv-head strong { color: var(--paper); font-size: 16px; }
.rv-city { color: var(--muted); font-size: 13px; }
.rv-city::before { content: '·'; margin-right: 6px; }
.rv-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.rv-star { color: rgba(255,255,255,.2); }
.rv-star-on { color: var(--accent); }
.review-card p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.6; margin: 0; flex: 1; }
.rv-date { color: var(--muted); font-size: 13px; }
.reviews-empty { color: var(--muted); text-align: center; padding: 40px 20px; font-size: 15px; }

.review-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.review-form {
    background: var(--primary-2);
    border: 1px solid rgba(255,255,255,.08);
    padding: 32px 28px;
}
.review-form h3 { color: var(--paper); margin: 0 0 20px; font-size: 20px; }
.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-form label {
    display: block; color: rgba(255,255,255,.7); font-size: 13px;
    font-weight: 600; margin-bottom: 14px;
}
.review-form input,
.review-form textarea {
    display: block; width: 100%; margin-top: 6px;
    padding: 12px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--paper);
    font-family: inherit; font-size: 15px;
    transition: border-color .15s;
}
.review-form input:focus,
.review-form textarea:focus { border-color: var(--accent); outline: none; }
.review-form textarea { resize: vertical; }
.review-form .btn { margin-top: 8px; width: 100%; }
.review-form .form-msg { color: var(--paper); margin-top: 10px; }
.review-form .form-msg.ok { color: var(--ok); }
.review-form .form-msg.err { color: var(--danger); }
.review-form .form-note { color: var(--muted); font-size: 12px; margin-top: 10px; }

.star-rating { display: flex; gap: 4px; margin-top: 6px; }
.star-rating .star {
    background: none; border: none; cursor: pointer; padding: 0;
    font-size: 28px; color: rgba(255,255,255,.2);
    transition: color .1s;
}
.star-rating .star.active { color: var(--accent); }
.star-rating .star:hover { color: var(--accent); }

@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .review-form-grid { grid-template-columns: 1fr; }
    .review-form { padding: 24px 18px; }
}

@media (max-width: 600px) {
    .credit-link { right: 12px; bottom: 12px; padding: 8px 14px; }
    .credit-name { font-size: 18px; }
    .credit-tag { display: none; }
}
