:root {
      --red: #e31e24;
      --red-dark: #c4191f;
      --gray-bg: #ececec;
      --text: #2a2a2a;
      --text-muted: #555;
      --white: #fff;
      --container: 1200px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      -webkit-text-size-adjust: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
      background: var(--gray-bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
    }

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

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

    /* ── Header ── */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid #e5e5e5;
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .site-header .site-menu {
      border-bottom: none;
    }

    .header-row-mobile {
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 0;
    }

    .header-bar-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .header-tel-btn,
    .menu-toggle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      -webkit-tap-highlight-color: transparent;
    }

    .header-tel-btn {
      background: var(--red);
      color: var(--white);
    }

    .header-tel-btn svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .menu-toggle {
      background: var(--gray-bg);
      flex-direction: column;
      gap: 5px;
      padding: 0;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--text);
      border-radius: 1px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .menu-toggle.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .header-nav {
      display: block;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 0;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .brand img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
    }

    .brand-name {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--red);
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .header-info {
      display: flex;
      align-items: flex-start;
      gap: 28px;
      flex: 1;
      justify-content: center;
      flex-wrap: wrap;
    }

    .info-block {
      display: flex;
      gap: 10px;
      font-size: 0.78rem;
      line-height: 1.55;
      color: var(--text-muted);
    }

    .info-block svg {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      margin-top: 2px;
      stroke: var(--text);
    }

    .info-block strong,
    .info-block a {
      color: var(--text);
      font-weight: 600;
    }

    .phones-col a {
      display: block;
    }

    .btn-call {
      flex-shrink: 0;
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 999px;
      padding: 14px 28px;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-call:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
    }

    /* ── Hero ── */
    .hero {
      padding: 24px 0 40px;
    }

    .hero-top {
      display: grid;
      grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
      gap: 0;
      margin-bottom: 20px;
      min-height: 180px;
    }

    .hero-banner {
      background: var(--red);
      color: var(--white);
      display: flex;
      align-items: center;
      padding: 32px 40px;
      font-size: clamp(1.6rem, 3.8vw, 2.75rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 0;
      border: none;
    }

    .hero-stats {
      background: var(--gray-bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px 24px;
      gap: 16px;
    }

    .stats-row {
      display: flex;
      align-items: flex-end;
      gap: 36px;
    }

    .stat {
      text-align: center;
    }

    .stat-num {
      font-size: clamp(3rem, 6vw, 4.5rem);
      font-weight: 800;
      line-height: 1;
      color: var(--text);
      letter-spacing: -0.03em;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 4px;
      font-weight: 500;
    }

    .btn-catalog {
      display: inline-block;
      background: var(--white);
      color: var(--text);
      border: 2px solid var(--red);
      padding: 10px 28px;
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .btn-catalog:hover {
      background: var(--red);
      color: var(--white);
    }

    .hero-image {
      position: relative;
      overflow: hidden;
      line-height: 0;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 520px;
    }

    .hero-tag {
      position: absolute;
      left: 0;
      bottom: 28px;
      background: var(--red);
      color: var(--white);
      padding: 18px 56px 18px 32px;
      font-size: clamp(1.75rem, 4.5vw, 3rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    /* ── Modal ── */
    .mo {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 100;
      align-items: center;
      justify-content: center;
    }

    .mo.active { display: flex; }

    .md {
      background: var(--white);
      border-radius: 8px;
      padding: 40px 32px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      position: relative;
    }

    .md h3 {
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--red);
    }

    .md p {
      color: var(--text-muted);
      margin-bottom: 24px;
      font-size: 0.95rem;
    }

    .mc {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 1.5rem;
      cursor: pointer;
      color: #aaa;
      background: none;
      border: none;
    }

    .mc:hover { color: var(--text); }

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

    .mf input {
      padding: 14px 18px;
      border: 2px solid #ddd;
      border-radius: 4px;
      font-size: 1rem;
      font-family: inherit;
      outline: none;
    }

    .mf input:focus { border-color: var(--red); }

    .mf .btn-call { border-radius: 4px; width: 100%; }

    .ms { display: none; }
    .ms.active { display: block; }
    .ms .ck { font-size: 3rem; margin-bottom: 12px; }

    /* ── 3D-эскиз ── */
    .eskiz {
      background: var(--white);
      border-top: 1px solid #d8d8d8;
      padding: 48px 0 56px;
    }

    .eskiz-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .eskiz-title {
      font-size: clamp(1.25rem, 2.5vw, 1.85rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .eskiz-sub {
      color: var(--red);
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 28px;
    }

    .eskiz-list {
      list-style: none;
      margin-bottom: 32px;
    }

    .eskiz-list li {
      position: relative;
      padding-left: 18px;
      margin-bottom: 14px;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.45;
    }

    .eskiz-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--text-muted);
    }

    .eskiz-form {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      max-width: 480px;
      margin-bottom: 14px;
    }

    .eskiz-form input {
      flex: 1;
      min-width: 200px;
      padding: 14px 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: inherit;
      font-size: 0.95rem;
      color: var(--text);
      outline: none;
    }

    .eskiz-form input::placeholder {
      color: #aaa;
    }

    .eskiz-form input:focus {
      border-color: var(--red);
    }

    .btn-eskiz {
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 6px;
      padding: 14px 24px;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .btn-eskiz:hover {
      background: var(--red-dark);
    }

    .eskiz-privacy {
      font-size: 0.7rem;
      color: #999;
      line-height: 1.4;
      max-width: 420px;
    }

    .eskiz-privacy a {
      color: #999;
      text-decoration: underline;
    }

    .eskiz-privacy a:hover {
      color: var(--red);
    }

    .eskiz-visual {
      line-height: 0;
    }

    .eskiz-visual img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .eskiz-thanks {
      display: none;
      padding: 16px 0;
      font-weight: 600;
      color: var(--red);
    }

    .eskiz-thanks.active {
      display: block;
    }

    /* ── Факты о нас ── */
    .facts {
      background: var(--white);
      border-top: 1px solid #d8d8d8;
      padding: 40px 0 56px;
    }

    .facts-label {
      font-size: 0.72rem;
      font-weight: 500;
      color: #b5b5b5;
      letter-spacing: 0.04em;
      margin-bottom: 28px;
    }

    .facts-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 0;
      align-items: stretch;
    }

    .facts-photo {
      line-height: 0;
      min-height: 100%;
    }

    .facts-photo img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      display: block;
    }

    .facts-list {
      display: flex;
      flex-direction: column;
      border-left: 1px solid #e8e8e8;
    }

    .fact-row {
      flex: 1;
      display: grid;
      grid-template-columns: 28px 1fr auto;
      align-items: center;
      gap: 18px 24px;
      padding: 26px 28px;
      border-bottom: 1px solid #e0e0e0;
    }

    .fact-row:last-child {
      border-bottom: none;
    }

    .fact-arrow {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
    }

    .fact-arrow--left { transform: rotate(90deg); }
    .fact-arrow--up { transform: rotate(45deg); }
    .fact-arrow--down-left { transform: rotate(-90deg); }

    .fact-text {
      font-size: clamp(0.9rem, 1.6vw, 1.05rem);
      line-height: 1.45;
      color: var(--text);
      font-weight: 500;
    }

    .fact-value {
      font-size: clamp(1.75rem, 3.5vw, 2.65rem);
      font-weight: 800;
      line-height: 1.1;
      white-space: nowrap;
      text-align: right;
      letter-spacing: -0.02em;
    }

    /* ── Кухни по проекту ── */
    .projects {
      background: var(--white);
      border-top: 1px solid #d8d8d8;
      padding: 48px 0 40px;
    }

    .projects-label {
      font-size: 0.72rem;
      font-weight: 500;
      color: #b5b5b5;
      letter-spacing: 0.04em;
      margin-bottom: 32px;
    }

    .projects-mosaic {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      grid-template-rows: auto auto;
      gap: 14px;
    }

    .projects-intro {
      grid-column: 1;
      grid-row: 1;
      padding: 8px 0 24px;
      align-self: start;
    }

    .projects-title {
      font-size: clamp(1.5rem, 3vw, 2.35rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .projects-desc {
      font-size: clamp(0.9rem, 1.4vw, 1rem);
      color: var(--text-muted);
      line-height: 1.5;
      max-width: 340px;
    }

    .projects-cell {
      line-height: 0;
      overflow: hidden;
    }

    .projects-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .projects-cell--top {
      grid-column: 2;
      grid-row: 1;
      min-height: 320px;
    }

    .projects-cell--left {
      grid-column: 1;
      grid-row: 2;
      min-height: 300px;
    }

    .projects-cell--wide {
      grid-column: 2;
      grid-row: 2;
      min-height: 300px;
    }

    /* ── Галерея + замерщик ── */
    .kitchens {
      background: var(--white);
      padding: 0 0 48px;
    }

    .kitchens-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: stretch;
      margin-bottom: 14px;
    }

    .kitchens-hero-photo {
      line-height: 0;
      overflow: hidden;
      min-height: 380px;
    }

    .kitchens-hero-photo img {
      width: 100%;
      height: 100%;
      min-height: 380px;
      object-fit: cover;
      display: block;
    }

    .kitchens-hero-aside {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      gap: 12px;
      flex-shrink: 0;
    }

    .kitchens-vertical {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      color: var(--text-muted);
      text-transform: uppercase;
      align-self: center;
      padding: 8px 0;
    }

    .kitchens-cta-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      max-width: 160px;
    }

    .btn-measurer {
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      border: none;
      font-family: inherit;
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1.25;
      text-align: center;
      padding: 12px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-measurer:hover {
      background: var(--red-dark);
      transform: scale(1.03);
    }

    .kitchens-cta-text {
      font-size: 0.72rem;
      color: var(--text-muted);
      line-height: 1.45;
      text-align: center;
    }

    .kitchens-row {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
      gap: 14px;
      margin-bottom: 14px;
    }

    .kitchens-row .kitchens-photo {
      line-height: 0;
      overflow: hidden;
      min-height: 260px;
    }

    .kitchens-row .kitchens-photo img {
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      display: block;
    }

    .kitchens-bar {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
      gap: 0;
      min-height: 120px;
    }

    .kitchens-bar-red {
      background: var(--red);
      color: var(--white);
      display: flex;
      align-items: center;
      padding: 24px 28px;
      font-size: clamp(0.95rem, 1.8vw, 1.25rem);
      font-weight: 800;
      line-height: 1.25;
      text-transform: uppercase;
    }

    .kitchens-bar-stat {
      background: var(--gray-bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px 16px;
      text-align: center;
      border-left: 1px solid #ddd;
    }

    .kitchens-bar-num {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 800;
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -0.03em;
    }

    .kitchens-bar-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.35;
      max-width: 200px;
    }

    /* ── Преимущества ── */
    .benefits {
      background: var(--white);
      border-top: 1px solid #d8d8d8;
      padding: 48px 0 56px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      align-items: stretch;
    }

    .benefit-card {
      background: #f4f4f4;
      padding: 28px 24px 32px;
      display: flex;
      flex-direction: column;
    }

    .benefit-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 18px;
      flex-shrink: 0;
    }

    .benefit-icon svg {
      width: 100%;
      height: 100%;
    }

    .benefit-title {
      color: var(--red);
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .benefit-text {
      font-size: 0.88rem;
      line-height: 1.55;
      color: var(--text-muted);
      margin-bottom: 18px;
      flex: 1;
    }

    .benefit-footer {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.35;
    }

    .btn-benefit-catalog {
      display: inline-block;
      margin-top: 20px;
      background: var(--red);
      color: var(--white);
      padding: 14px 28px;
      font-family: inherit;
      font-size: 0.88rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 4px;
      transition: background 0.2s;
    }

    .btn-benefit-catalog:hover {
      background: var(--red-dark);
      color: var(--white);
    }

    /* ── Как заказать ── */
    .order {
      background: var(--white);
      border-top: 1px solid #d8d8d8;
      padding: 48px 0 56px;
    }

    .order-head {
      display: grid;
      grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
      gap: 0;
      margin-bottom: 20px;
      min-height: 100px;
    }

    .order-head-title {
      background: var(--red);
      color: var(--white);
      display: flex;
      align-items: center;
      padding: 24px 28px;
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 800;
      line-height: 1.2;
    }

    .order-timeline {
      background: var(--gray-bg);
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 12px 20px;
      padding: 20px 24px;
    }

    .order-tl-item {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
      min-width: 160px;
    }

    .order-tl-num {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1;
      color: var(--text);
    }

    .order-tl-arrow {
      color: var(--red);
      font-size: 1.25rem;
      font-weight: 700;
    }

    .order-tl-text {
      font-size: 0.72rem;
      line-height: 1.35;
      color: var(--text-muted);
      max-width: 140px;
    }

    .order-steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      align-items: start;
    }

    .order-step {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .order-step-box {
      background: #f4f4f4;
      padding: 24px 20px 28px;
      flex: 1;
    }

    .order-step-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .order-step-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
    }

    .order-step-icon svg {
      width: 100%;
      height: 100%;
    }

    .order-step-title {
      color: var(--red);
      font-size: 1rem;
      font-weight: 700;
    }

    .order-step-text {
      font-size: 0.82rem;
      line-height: 1.5;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .order-step-list {
      list-style: none;
      margin-bottom: 16px;
    }

    .order-step-list li {
      display: flex;
      gap: 8px;
      font-size: 0.82rem;
      line-height: 1.45;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .order-step-list li span:first-child {
      color: var(--red);
      font-weight: 800;
      flex-shrink: 0;
    }

    .order-actions {
      display: grid;
      gap: 10px;
    }

    .order-actions--4 {
      grid-template-columns: repeat(2, 1fr);
    }

    .order-actions--2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .order-action {
      background: var(--white);
      border: 1px solid #e0e0e0;
      padding: 14px 10px;
      text-align: center;
      font-size: 0.7rem;
      line-height: 1.3;
      color: var(--text);
      text-decoration: none;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
      font-family: inherit;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .order-action:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .order-action svg {
      width: 32px;
      height: 32px;
    }

    .order-step-note {
      font-size: 0.78rem;
      line-height: 1.45;
      color: var(--text-muted);
      margin-top: 14px;
      padding-right: 20px;
      position: relative;
    }

    .order-step-note::after {
      content: "↘";
      position: absolute;
      right: 0;
      bottom: 0;
      color: var(--red);
      font-size: 1rem;
      font-weight: 700;
    }

    .order-step-note strong {
      color: var(--text);
      font-weight: 700;
    }

    .order-step-outside {
      font-size: 0.78rem;
      line-height: 1.45;
      color: var(--text-muted);
      padding: 0 4px;
    }

    /* ── Отзывы ── */
    .reviews {
      background: var(--gray-bg);
      border-top: 1px solid #d8d8d8;
      padding: 52px 0 60px;
    }

    .reviews-title {
      text-align: center;
      font-size: clamp(1.35rem, 2.8vw, 1.85rem);
      font-weight: 800;
      margin-bottom: 36px;
      letter-spacing: -0.02em;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 24px;
    }

    .review-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .review-bubble {
      position: relative;
      background: var(--white);
      border-radius: 10px;
      padding: 24px 26px 28px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    }

    .review-bubble::after {
      content: "";
      position: absolute;
      left: 28px;
      bottom: -10px;
      width: 18px;
      height: 18px;
      background: var(--white);
      transform: rotate(45deg);
      box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.03);
    }

    .review-text {
      font-size: 0.88rem;
      line-height: 1.55;
      color: var(--text-muted);
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-left: 8px;
    }

    .review-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: #ddd;
    }

    .review-avatar--placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      background: linear-gradient(135deg, #c4c4c4, #888);
    }

    .review-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text);
    }

    /* ── Контакты / футер ── */
    .contacts {
      background: var(--white);
      border-top: 1px solid #d8d8d8;
    }

    .contacts-top {
      padding: 48px 0 40px;
    }

    .contacts-title {
      text-align: center;
      color: var(--red);
      font-size: clamp(1.35rem, 2.8vw, 1.85rem);
      font-weight: 800;
      margin-bottom: 36px;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px 48px;
      align-items: start;
    }

    .contacts-info {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text);
    }

    .contacts-phones {
      margin-bottom: 12px;
    }

    .contacts-phones a {
      display: block;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
    }

    .contacts-phones a:hover {
      color: var(--red);
    }

    .contacts-info a {
      color: var(--text);
      font-weight: 500;
    }

    .contacts-info a:hover {
      color: var(--red);
    }

    .contacts-info p {
      margin-bottom: 6px;
    }

    .contacts-social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .contacts-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.15s;
    }

    .contacts-social a:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      color: var(--white);
    }

    .contacts-social svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .contacts-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contacts-form input,
    .contacts-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-family: inherit;
      font-size: 0.9rem;
      color: var(--text);
      outline: none;
      background: var(--white);
    }

    .contacts-form textarea {
      min-height: 100px;
      resize: vertical;
    }

    .contacts-form input::placeholder,
    .contacts-form textarea::placeholder {
      color: #aaa;
    }

    .contacts-form input:focus,
    .contacts-form textarea:focus {
      border-color: var(--red);
    }

    .btn-callback {
      align-self: flex-start;
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 999px;
      padding: 14px 32px;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      margin-top: 4px;
      transition: background 0.2s;
    }

    .btn-callback:hover {
      background: var(--red-dark);
    }

    .contacts-thanks {
      display: none;
      color: var(--red);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .contacts-thanks.active {
      display: block;
    }

    .contacts-map {
      line-height: 0;
      width: 100%;
    }

    .contacts-map iframe {
      width: 100%;
      height: 420px;
      border: 0;
      display: block;
    }

    .site-copy {
      background: #2a2a2a;
      color: #999;
      text-align: center;
      padding: 16px 20px;
      font-size: 0.8rem;
    }

    .site-copy a {
      color: #ccc;
    }

    /* Плавающая кнопка звонка (мобильные) */
    .fab-call {
      display: none;
      position: fixed;
      right: 16px;
      bottom: calc(16px + env(safe-area-inset-bottom, 0px));
      z-index: 45;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(227, 30, 36, 0.45);
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: transparent;
      transition: transform 0.15s, background 0.2s;
    }

    .fab-call:active {
      transform: scale(0.95);
    }

    .fab-call svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    body.menu-open {
      overflow: hidden;
    }

    @media (max-width: 900px) {
      .container {
        padding: 0 16px;
      }

      .header-row-mobile {
        display: flex;
      }

      .header-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }

      .header-nav.is-open {
        max-height: 520px;
      }

      .header-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0 0 16px;
        gap: 16px;
      }

      .brand--header-desktop {
        display: none;
      }

      .header-info {
        width: 100%;
        flex-direction: column;
        gap: 16px;
      }

      .info-block {
        font-size: 0.85rem;
      }

      .btn-call {
        width: 100%;
        text-align: center;
        padding: 16px 28px;
        min-height: 48px;
      }

      .fab-call {
        display: flex;
      }

      body {
        padding-bottom: 72px;
      }

      .hero {
        padding: 16px 0 28px;
      }

      .hero-top {
        min-height: auto;
      }

      .hero-banner {
        padding: 22px 18px;
        font-size: clamp(1.2rem, 5.5vw, 1.65rem);
      }

      .hero-stats {
        padding: 18px 16px;
      }

      .stat-num {
        font-size: clamp(2.25rem, 10vw, 3rem);
      }

      .btn-catalog {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        min-height: 44px;
      }

      .hero-image img {
        max-height: 280px;
      }

      .hero-tag {
        padding: 12px 28px 12px 18px;
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        bottom: 14px;
      }

      .eskiz {
        padding: 36px 0 40px;
      }

      .eskiz-title {
        font-size: clamp(1.1rem, 4.5vw, 1.4rem);
      }

      .eskiz-form {
        max-width: none;
        flex-direction: column;
      }

      .eskiz-form input,
      .btn-eskiz {
        width: 100%;
        min-height: 48px;
      }

      .facts {
        padding: 32px 0 40px;
      }

      .fact-row {
        grid-template-columns: 24px 1fr;
        grid-template-rows: auto auto;
        gap: 10px 12px;
        padding: 20px 16px;
      }

      .fact-value {
        grid-column: 1 / -1;
        text-align: left;
        white-space: normal;
        font-size: clamp(1.5rem, 6vw, 2rem);
        padding-top: 4px;
      }

      .facts-photo img {
        min-height: 220px;
      }

      .projects {
        padding: 36px 0 32px;
      }

      .projects-cell--top,
      .projects-cell--left,
      .projects-cell--wide {
        min-height: 200px;
      }

      .kitchens {
        padding-bottom: 32px;
      }

      .kitchens-hero-photo,
      .kitchens-hero-photo img {
        min-height: 240px;
      }

      .kitchens-hero-aside {
        flex-direction: column;
        align-items: center;
        padding: 12px 0;
      }

      .kitchens-cta-wrap {
        max-width: none;
        width: 100%;
      }

      .btn-measurer {
        width: 140px;
        height: 140px;
      }

      .kitchens-row .kitchens-photo,
      .kitchens-row .kitchens-photo img {
        min-height: 200px;
      }

      .kitchens-bar-red {
        padding: 20px 18px;
        font-size: 1rem;
      }

      .benefits {
        padding: 36px 0 40px;
      }

      .benefit-card {
        padding: 22px 18px 26px;
      }

      .btn-benefit-catalog {
        width: 100%;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .order {
        padding: 36px 0 40px;
      }

      .order-head-title {
        padding: 20px 18px;
        font-size: 1.15rem;
      }

      .order-timeline {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 18px;
      }

      .order-tl-item {
        min-width: 0;
        width: 100%;
      }

      .order-tl-text {
        max-width: none;
        flex: 1;
      }

      .order-step-box {
        padding: 20px 16px 24px;
      }

      .order-actions--4,
      .order-actions--2 {
        grid-template-columns: 1fr 1fr;
      }

      .order-action {
        min-height: 88px;
        font-size: 0.65rem;
      }

      .reviews {
        padding: 36px 0 44px;
      }

      .review-bubble {
        padding: 20px 18px 24px;
      }

      .contacts-top {
        padding: 36px 0 28px;
      }

      .btn-callback {
        width: 100%;
        text-align: center;
        min-height: 48px;
      }

      .contacts-map iframe {
        height: 300px;
      }

      .md {
        margin: 16px;
        width: calc(100% - 32px);
        max-width: none;
      }
      .hero-top { grid-template-columns: 1fr; }
      .hero-stats { align-items: center; }
      .stats-row { justify-content: center; }
      .eskiz-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .facts-grid {
        grid-template-columns: 1fr;
      }
      .facts-list {
        border-left: none;
        border-top: 1px solid #e8e8e8;
      }
      .facts-photo img {
        min-height: 280px;
      }
      .projects-mosaic {
        grid-template-columns: 1fr;
      }
      .projects-intro,
      .projects-cell--top,
      .projects-cell--left,
      .projects-cell--wide {
        grid-column: 1;
        grid-row: auto;
      }
      .kitchens-hero {
        grid-template-columns: 1fr;
      }
      .kitchens-hero-aside {
        flex-direction: row;
        justify-content: center;
        max-width: none;
      }
      .kitchens-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 0.1em;
      }
      .kitchens-row {
        grid-template-columns: 1fr;
      }
      .kitchens-bar {
        grid-template-columns: 1fr;
      }
      .kitchens-bar-stat {
        border-left: none;
        border-top: 1px solid #ddd;
      }
      .benefits-grid {
        grid-template-columns: 1fr;
      }
      .order-head {
        grid-template-columns: 1fr;
      }
      .order-steps {
        grid-template-columns: 1fr;
      }
      .order-timeline {
        justify-content: flex-start;
      }
      .reviews-grid {
        grid-template-columns: 1fr;
      }
      .contacts-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (min-width: 601px) and (max-width: 900px) {
      .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 520px) {
      .brand img {
        width: 48px;
        height: 48px;
      }

      .brand-name {
        font-size: 0.95rem;
        max-width: 160px;
      }

      .stats-row {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .stat {
        min-width: 100px;
      }

      .order-actions--4,
      .order-actions--2 {
        grid-template-columns: 1fr;
      }

      .order-action {
        min-height: 72px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 12px 14px;
        gap: 12px;
      }

      .order-action svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
      }

      .kitchens-bar-num {
        font-size: 2.25rem;
      }

      .contacts-grid {
        gap: 24px 0;
      }

      .contacts-phones a {
        font-size: 1.1rem;
        padding: 6px 0;
      }

      .btn-callback {
        width: 100%;
        text-align: center;
        align-self: stretch;
        padding: 16px 20px;
      }

      .contacts-form input,
      .contacts-form textarea {
        font-size: 1rem;
      }

      .contacts-top {
        padding: 32px 0 24px;
      }
    }

    @media (min-width: 901px) {
      .header-nav {
        max-height: none !important;
        overflow: visible;
      }

      .header-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
      }

      .brand--header-desktop {
        display: flex;
      }
    }

    /* ── Меню ── */
    .site-menu {
      background: #1a1a1a;
      padding: 10px 16px;
      border-top: 1px solid #333;
    }

    .site-menu-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 12px;
      align-items: center;
      justify-content: center;
    }

    .site-menu-link {
      color: #e8c97a;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: normal;
      white-space: nowrap;
      transition: color 0.2s;
    }

    .site-menu-link:hover,
    .site-menu-link.is-active {
      color: #fff;
    }

    .site-menu-sep {
      color: #555;
      font-size: 0.8rem;
      user-select: none;
    }

    /* ── Каталог ── */
    .catalog-page {
      background: var(--white);
      padding: 40px 0 56px;
    }

    .catalog-head {
      margin-bottom: 36px;
    }

    .catalog-label {
      font-size: 0.72rem;
      font-weight: 500;
      color: #b5b5b5;
      letter-spacing: 0.04em;
      margin-bottom: 12px;
    }

    .catalog-title {
      font-size: clamp(1.5rem, 3vw, 2.35rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .catalog-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.5;
      max-width: 560px;
    }

    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .catalog-card {
      background: var(--gray-bg);
      overflow: hidden;
    }

    .catalog-card__img {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      line-height: 0;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .catalog-card__img--placeholder::after {
      content: attr(data-num);
      font-size: 2.5rem;
      font-weight: 800;
      color: #bbb;
      line-height: 1;
    }

    .catalog-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .catalog-card__img:not(.catalog-card__img--placeholder) img {
      min-height: 100%;
    }

    .catalog-card__title {
      padding: 14px 16px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
    }

    .catalog-cta {
      margin-top: 40px;
      text-align: center;
    }

    /* ── Галерея (наши работы) ── */
    .gallery-grid {
      margin-bottom: 8px;
    }

    .gallery-item {
      border: none;
      padding: 0;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      width: 100%;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .gallery-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .gallery-item:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
    }

    .gallery-item .catalog-card__title {
      display: none;
    }

    .gallery-item .catalog-card__img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      transition: background 0.2s;
      pointer-events: none;
    }

    .gallery-item .catalog-card__img {
      position: relative;
    }

    .gallery-item:hover .catalog-card__img::after {
      background: rgba(0, 0, 0, 0.08);
    }

    .gallery-lb {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      align-items: center;
      justify-content: center;
    }

    .gallery-lb.active {
      display: flex;
    }

    .gallery-lb__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.92);
      cursor: pointer;
    }

    .gallery-lb__stage {
      position: relative;
      z-index: 1;
      max-width: min(1200px, 94vw);
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 0 56px;
    }

    .gallery-lb__img {
      max-width: 100%;
      max-height: calc(90vh - 48px);
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    }

    .gallery-lb__counter {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.85rem;
      font-weight: 500;
    }

    .gallery-lb__close,
    .gallery-lb__nav {
      position: absolute;
      z-index: 2;
      border: none;
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      cursor: pointer;
      transition: background 0.2s;
      -webkit-tap-highlight-color: transparent;
    }

    .gallery-lb__close:hover,
    .gallery-lb__nav:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    .gallery-lb__close {
      top: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.75rem;
      line-height: 1;
    }

    .gallery-lb__nav {
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      font-size: 2rem;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 2px;
    }

    .gallery-lb__prev { left: 12px; }
    .gallery-lb__next { right: 12px; }

    body.gallery-open {
      overflow: hidden;
    }

    /* ── Оплата и доставка ── */
    .paydel-page {
      background: var(--white);
      padding: 40px 0 0;
    }

    .paydel-page + .order {
      padding-top: 48px;
    }

    .paydel-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: auto auto;
      gap: 0;
      border: 1px solid #e0e0e0;
    }

    .paydel-block__head {
      background: var(--red);
      color: var(--white);
      padding: 18px 24px;
      font-size: clamp(1rem, 2vw, 1.35rem);
      font-weight: 800;
      line-height: 1.2;
    }

    .paydel-block__body {
      background: #f4f4f4;
      padding: 28px 24px 32px;
      height: 100%;
    }

    .paydel-block__icon {
      width: 44px;
      height: 44px;
      margin-bottom: 16px;
    }

    .paydel-block__icon svg {
      width: 100%;
      height: 100%;
    }

    .paydel-subtitle {
      color: var(--red);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .paydel-text {
      font-size: 0.88rem;
      line-height: 1.55;
      color: var(--text-muted);
      margin-bottom: 22px;
    }

    .paydel-text:last-child {
      margin-bottom: 0;
    }

    .paydel-item {
      margin-bottom: 20px;
    }

    .paydel-item:last-child {
      margin-bottom: 0;
    }

    .paydel-item__title {
      color: var(--red);
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .paydel-photo {
      line-height: 0;
      overflow: hidden;
      min-height: 340px;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .paydel-photo img {
      width: 100%;
      height: 100%;
      min-height: 340px;
      object-fit: cover;
      display: block;
    }

    .paydel-photo--placeholder::after {
      content: "Фото скоро";
      font-size: 1rem;
      font-weight: 600;
      color: #aaa;
      position: absolute;
    }

    .paydel-photo--placeholder {
      position: relative;
    }

    .paydel-photo--placeholder img {
      display: none;
    }

    @media (max-width: 900px) {
      .paydel-page {
        padding: 28px 0 40px;
      }

      .paydel-grid {
        grid-template-columns: 1fr;
      }

      .paydel-photo {
        min-height: 260px;
      }

      .paydel-photo img {
        min-height: 260px;
      }

      .paydel-block__body {
        padding: 22px 18px 26px;
      }
    }

    @media (max-width: 520px) {
      .gallery-lb__stage {
        padding: 0 44px;
      }

      .gallery-lb__nav {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
      }

      .gallery-lb__prev { left: 6px; }
      .gallery-lb__next { right: 6px; }
    }

    @media (max-width: 900px) {
      .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }

      .catalog-page {
        padding: 28px 0 40px;
      }
    }

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

      .site-menu-link {
        font-size: 0.8rem;
      }
    }
