    :root {
      --bg: #e9e9e9;
      --text: #2e2e2e;
      --muted: #9b9b9b;
      --red: #9d1116;
      --red-dark: #76080c;
      --line: #bdbdbd;
      --white: #ffffff;
      --radius-lg: 42px;
      --radius-md: 14px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }

    [hidden] { display: none !important; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
      font-size: 19px;
      font-weight: 300;
      line-height: 1.28;
    }

    .cookie-notice {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: min(420px, calc(100vw - 24px));
      padding: 10px 12px;
      border: 1px solid rgba(157, 17, 22, .2);
      border-radius: 12px;
      background: rgba(255, 255, 255, .96);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
      display: none;
    }

    .cookie-notice.is-visible {
      display: flex;
    }

    .cookie-notice__text {
      margin: 0;
      font-size: 13px;
      line-height: 1.3;
      color: #4f4f56;
    }

    .cookie-notice__link {
      color: var(--red-dark);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cookie-notice__close {
      flex: 0 0 auto;
      border: 1px solid rgba(157, 17, 22, .25);
      border-radius: 999px;
      background: #fff;
      color: var(--red-dark);
      font-size: 12px;
      line-height: 1;
      padding: 8px 12px;
      cursor: pointer;
      transition: background .2s ease, color .2s ease;
    }

    .cookie-notice__close:hover {
      background: var(--red-dark);
      color: #fff;
    }

    @media (max-width: 640px) {
      .cookie-notice {
        left: 10px;
        right: 10px;
        bottom: 10px;
        align-items: flex-start;
      }
    }

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

    .page {
      width: min(var(--max), calc(100% - 16px));
      margin: 0 auto;
    }

    .topbar {
      padding: 34px 0 24px;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 54px;
      max-width: none;
      margin: 0 auto;
      color: #666;
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 0;
    }

    .nav a {
      white-space: nowrap;
      font-weight: 400;
      font-size: 1.15em;
      transition: color .25s ease;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--red);
    }

    .burger {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(157, 17, 22, .18);
      border-radius: 999px;
      background: rgba(255,255,255,.55);
      cursor: pointer;
      position: relative;
      transition: all .25s ease;
    }

    .burger span,
    .burger::before,
    .burger::after {
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      height: 1px;
      background: var(--red);
      transition: .2s ease;
    }

    .burger span { top: 20px; }
    .burger::before { top: 14px; }
    .burger::after { top: 26px; }

    .hero {
      min-height: 520px;
      display: grid;
      grid-template-columns: 340px 1fr 330px;
      align-items: start;
      column-gap: 44px;
      padding: 45px 43px 0;
      position: relative;
    }

    .intro h1 {
      margin: 0 0 10px;
      font-size: 38px;
      font-weight: 400;
      letter-spacing: -1.2px;
    }

    .role {
      margin: 0 0 55px;
      color: var(--red);
      font-size: 16px;
      line-height: 1.12;
    }

    .intro p {
      max-width: 255px;
      color: #646464;
      margin: 0 0 19px;
      font-size: 16px;
      line-height: 1.25;
    }

    .intro b { color: var(--red); font-weight: 500; }

    .photo-wrap {
      display: flex;
      justify-content: center;
      transform: translateY(-22px);
    }

    .photo-shape {
      width: 286px;
      height: 520px;
      border-radius: 50% / 42%;
      overflow: hidden;
      background: linear-gradient(160deg, #d7d7d7, #f7f7f7 45%, #cecece);
      position: relative;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
    }

    .photo-shape::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 52% 18%, #f3c4aa 0 8%, transparent 9%),
        linear-gradient(90deg, transparent 0 31%, #151515 31% 69%, transparent 69%),
        linear-gradient(180deg, transparent 0 22%, #111 22% 72%, #181818 72% 100%);
      opacity: .98;
    }

    .photo-shape::after {
      content: "место\A для фото";
      white-space: pre;
      position: absolute;
      left: 50%;
      top: 51%;
      transform: translate(-50%, -50%);
      color: rgba(255,255,255,.65);
      font-size: 16px;
      text-align: center;
      letter-spacing: .4px;
    }


    .photo-shape img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 1;
    }

    .photo-shape.has-image::before,
    .photo-shape.has-image::after {
      display: none;
    }
    .offer {
      padding-top: 86px;
    }

    .offer h2 {
      margin: 0 0 30px;
      font-weight: 300;
      font-size: 30px;
      line-height: 1.08;
      letter-spacing: -.7px;
    }

    .offer ul {
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--red);
      font-size: 16px;
      line-height: 1.5;
    }

    .section-title {
      display: inline-block;
      margin: 0 0 37px 0;
      padding: 3px 6px 4px;
      background: var(--red-dark);
      color: white;
      font-size: 36px;
      font-weight: 400;
      letter-spacing: -1px;
      line-height: 1;
    }

    .works-title {
      margin-left: 43px;
    }

    .works-wrap {
      /*margin-top: -20px;*/
      padding: 0;
    }

    .works-box {
      border: 1px solid var(--red);
      border-radius: 32px;
      padding: 38px 43px 24px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 30px;
    }

    .work-card {
      min-height: 330px;
      border-radius: 12px;
      background: #fff;
      padding: 18px 18px 20px;
      box-shadow: 0 1px 12px rgba(0,0,0,.05);
      text-align: center;
      transition: transform .2s ease, box-shadow .2s ease;
      cursor: pointer;
    }

    .work-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(0,0,0,.08);
    }

    .work-card-link {
      color: inherit;
      text-decoration: none;
      display: block;
    }

    .work-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      margin-bottom: 17px;
      background: #ddd;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

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

    .work-img.dark {
      background:
        linear-gradient(90deg, #171717 0 48%, #2e2e2e 48% 100%);
    }

    .work-img.paper {
      background:
        linear-gradient(90deg, #efefef 0 43%, #fafafa 43% 100%);
    }

    .work-img.bw {
      background:
        linear-gradient(145deg, #dedede, #7a7a7a 52%, #f2f2f2);
      filter: grayscale(1);
    }

    .fake-layout {
      width: 70%;
      height: 78%;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.16);
      box-shadow: 22px 18px 0 rgba(0,0,0,.18);
    }

    .paper .fake-layout {
      background: rgba(70,70,70,.1);
      border-color: rgba(0,0,0,.08);
      box-shadow: 18px 16px 0 rgba(0,0,0,.08);
    }

    .bw .fake-layout {
      border-radius: 50%;
      width: 76%;
      height: 76%;
      background: rgba(0,0,0,.15);
      box-shadow: none;
    }

    .work-card h3 {
      min-height: 38px;
      margin: 0 0 11px;
      font-size: 18px;
      font-weight: 300;
      line-height: 1.15;
    }

    .work-card p {
      margin: 0;
      color: #777;
      font-size: 11px;
    }

    .box-links {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--red);
      font-size: 15px;
    }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin: 29px 0 78px;
    }

    .filter {
      border: 1px solid var(--red);
      border-radius: 999px;
      padding: 6px 11px 5px;
      background: transparent;
      color: #8f3030;
      font-size: 15px;
      line-height: 1;
      cursor: pointer;
      transition: .2s ease;
    }

    .filter.active,
    .filter:hover {
      background: var(--red);
      color: #fff;
    }

    .process {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 78px 110px 72px;
      margin-bottom: 70px;
    }

    .process .section-title {
      margin-left: 0;
      margin-bottom: 58px;
      font-size: 36px;
    }

    .process h2:not(.section-title) {
      margin: 0;
      font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
      font-weight: 400;
      color: var(--red);
    }

    .step {
      margin-bottom: 2em;
    }

    .step:last-child { margin-bottom: 0; }

    .step-header {
      display: flex;
      align-items: baseline;
      gap: 26px;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid #9d9d9d;
    }

    .step-body {
      min-width: 0;
    }

    .step-num {
      flex: 0 0 auto;
      color: #aaa;
      font-size: 35px;
      line-height: 1;
      font-weight: 200;
      margin-top: 1px;
    }

    .step-body h3 {
      margin: 0;
      font-size: 35px;
      line-height: 1;
      font-weight: 300;
      letter-spacing: -.9px;
    }

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

    .mini-links {
      color: #aaa;
      font-size: 15px;
      line-height: 1.8;
    }

    .accent-text {
      display: contents;
    }

    .accent-text p,
    .about-col p {
      margin: 0 0 42px;
      color: #aaa;
      font-size: 18px;
      line-height: 1.16;
    }

    .accent-text b {
      display: block;
      color: var(--red);
      font-weight: 500;
      margin-bottom: 3px;
    }

    .reviews-head {
      margin: 0 0 22px;
      color: #aaa;
      font-size: 15px;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 34px;
    }

    .review {
      min-height: 160px;
      border: 1px solid #8d8d8d;
      border-radius: 13px;
      padding: 20px 23px;
    }

    .review h4 {
      margin: 0 0 24px;
      color: var(--red);
      font-size: 15px;
      line-height: 1.15;
      font-weight: 500;
    }

    .review p {
      margin: 0 0 13px;
      color: #646464;
      font-size: 16px;
      line-height: 1.25em;
    }

    .review a {
      color: #aaa;
      font-size: 10.5px;
    }

    .review-links {
      display: flex;
      justify-content: space-between;
      color: var(--red);
      font-size: 15px;
    }

    .cta {
      text-align: center;
      padding-bottom: 130px;
    }

    .cta-card {
      max-width: 500px;
      margin: 0 auto;
      padding: 32px 24px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
    }

    .cta h2 {
      margin: 0 0 5px;
      color: var(--red);
      font-size: 22px;
      font-weight: 300;
      line-height: 1.05;
    }

    .cta p {
      margin: 0 0 23px;
      font-size: 17px;
      line-height: 1.05;
    }

.cta small {
  color: #aaa;
  font-size: 15px;
}

.footer-links {
  margin: 0 auto 1em;
  font-size: 13px;
  display: flex;
  gap: 1em;
  justify-content: center;
  padding: 0 1em;
}

.site-footer {
  text-align: center;
  padding-top: 56px;
  padding-bottom: 130px;
}

.site-content > :last-child {
  margin-bottom: 0;
}

.site-content > main:last-of-type > :last-child {
  margin-bottom: 0;
}

.site-footer h2 {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.05;
}

.site-footer p {
  margin: 0 0 23px;
  font-size: 20px;
  line-height: 1.25;
}

    @media (max-width: 900px) {
      .page { width: min(760px, calc(100% - 16px)); }
      .topbar { padding-top: 24px; }
      .burger { display: block; margin-left: auto; }
      .nav {
        display: flex;
        margin-top: 16px;
        padding: 0 18px;
        border: 1px solid rgba(0,0,0,0);
        border-radius: 18px;
        background: rgba(255,255,255,.45);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-8px);
        transition: max-height .35s ease, opacity .25s ease, transform .25s ease, padding .25s ease, border-color .25s ease;
      }
      .nav.open {
        max-height: 380px;
        opacity: 1;
        transform: translateY(0);
        padding: 18px;
        border-color: rgba(0,0,0,.12);
      }
      .nav a {
        padding: 8px 0;
        font-size: 15px;
      }
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 24px;
        padding: 20px 0 0;
      }
      .photo-wrap { order: -1; transform: none; }
      .photo-shape { width: 250px; height: 390px; }
      .offer { padding-top: 0; }
      .intro p { max-width: 100%; }
      .cards,
      .review-grid,
      .about-grid,
      .accent-text { grid-template-columns: 1fr; }
      /*.works-wrap { margin-top: 55px; }*/
      .catalog-page .works-title {
        margin-top: 0 !important;
        margin-left: 0 !important;
      }
      .catalog-page .filters {
            margin: 0 0 26px 0  !important;
      }
      .works-box { padding: 25px 20px; }
      .process { padding: 42px 24px; border-radius: 30px; }
      .works-wrap { padding: 0; }
      .section-title { margin-left: 4px; }
      .works-title { margin-left: 4px; }
      .step {
        display: block;
      }
      .step-header {
        display: block;
        margin-bottom: 20px;
      }
      .step-num { margin-bottom: 8px; }
      .review-links,
      .box-links { gap: 18px; flex-direction: column; align-items: flex-start; }
    }


.content-page {
  padding: 60px 0 0;
}

.public-page-card {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 34px;
  background: rgba(255, 255, 255, .68);
  padding: 42px;
}

.public-page-card.public-page-card-contacts {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
}

.public-page-card h1 {
  margin: 0 0 28px;
  color: var(--red);
  font-size: clamp(42px, 8vw, 55px);
  font-weight: 300;
  line-height: .9;
}

.public-section {
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding: 26px 0 0;
  margin-top: 26px;
}

.public-section h2 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 400;
}

.public-section p {
  max-width: 760px;
  line-height: 1.45;
}

.reviews-cta-row {
  margin: 18px 0 30px;
}

.reviews-open-button {
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  color: var(--red);
  font-size: 14px;
  line-height: 1;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, transform .2s ease;
}

.reviews-open-button:hover {
  background: var(--red);
  color: #fff;
}

.reviews-open-button:active {
  transform: translateY(1px);
}

.portfolio-back-wrap {
  margin-top: 34px;
  padding-top: 18px;
}

.portfolio-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(157, 17, 22, .35);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  color: var(--red);
  font-size: 15px;
  line-height: 1;
  padding: 12px 16px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.portfolio-back-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.review-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 20, 25, .54);
  backdrop-filter: blur(2px);
}

.review-modal-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  padding: 30px 26px 24px;
  transform: translateY(14px) scale(.985);
  transition: transform .28s ease;
}

.review-modal.is-open .review-modal-content {
  transform: translateY(0) scale(1);
}

.review-modal-content h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
}

.review-modal-note {
  margin: 0 0 18px;
  color: #6f7078;
  font-size: 14px;
  line-height: 1.4;
}

.review-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  color: #7a7a82;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.review-modal .admin-form {
  margin-top: 0;
}

.review-modal[data-services-modal] .review-modal-content {
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.review-field {
  display: grid;
  gap: 7px;
}

.review-field span {
  color: #32343d;
  font-size: 16px;
  line-height: 1.1;
}

.review-field input,
.review-field textarea {
  width: 100%;
  border: 1px solid rgba(34, 35, 42, .35);
  border-radius: 12px;
  background: #fff;
  padding: 11px 13px;
  color: #262832;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.3;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.review-field input[type="checkbox"] {
  width: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.review-field textarea {
  min-height: 148px;
  resize: vertical;
}

.review-field input:focus,
.review-field textarea:focus {
  outline: none;
  border-color: rgba(157, 17, 22, .65);
  box-shadow: 0 0 0 3px rgba(157, 17, 22, .08);
}

.review-form .form-error {
  color: var(--red);
  font-size: 13px;
}

.review-form-actions {
  margin-top: 6px;
}

.review-submit-button {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.review-submit-button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

@media (max-width: 900px) {
  .review-modal {
    padding: 12px;
  }

  .review-modal-content {
    border-radius: 20px;
    padding: 22px 18px 18px;
  }

  .review-modal-content h3 {
    font-size: 24px;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }
}


.catalog-page .works-title {
  margin-top: 28px;
  margin-left: 43px;
  margin-bottom: 24px;
}

.catalog-page .filters {
  margin: 0 0 26px 43px;
  justify-content: flex-start;
  gap: 10px;
}

.catalog-page .works-box {
  border-color: var(--red);
  padding: 34px 36px 28px;
}

.catalog-page .filter {
  padding: 8px 13px 7px;
}

.catalog-page .work-card,
.catalog-page .shop-card {
  border: 1px solid #e3e3e3;
  border-radius: 14px;
}

.services-page {
  margin-top: 22px;
  margin-bottom: 0;
}

.services-hero,
.services-list-block,
.services-portfolio,
.services-pricing-info {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border-radius: 30px;
  padding: 32px;
  margin-bottom: 20px;
}

.services-hero { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: 26px; }
.services-kicker { margin:0 0 9px; color:var(--red); font-size:14px; letter-spacing:.02em; }
.services-hero h1 { margin:0; font-size:46px; font-weight:400; letter-spacing:-1px; line-height:1.04; }
.services-lead { margin:16px 0 0; color:#5d5d5d; max-width:700px; }
.services-hero-actions { margin-top:24px; display:flex; gap:14px; flex-wrap:wrap; }
.service-link { display:inline-flex; align-items:center; padding:10px 14px; border-radius:999px; border:1px solid #cfcfcf; font-size:15px; }

.services-hero-stats { display:grid; gap:12px; }
.services-hero-stats article { background:#fff; border:1px solid #d8d8d8; border-radius:18px; padding:16px; }
.services-hero-stats strong { display:block; color:var(--red); font-size:45px; line-height:1; }
.services-hero-stats span { display:block; margin-top:1em; font-size:20px; color:#666; }

.services-head-row { display:flex; justify-content:space-between; align-items:flex-end; gap:18px; margin-bottom:20px; }
.services-head-row p { margin:0; max-width:540px; color:#666; font-size:16px; }
.services-subtitle {
  margin: 0 0 16px;
  color: var(--red-dark);
  font-size: 30px;
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -.7px;
}

.service-card { border:1px solid #d4d4d4; border-radius:22px; padding:22px; background:#fff; }
.service-card-head { display:flex; justify-content:space-between; gap:20px; }
.service-kind { margin:0; color:#8d8d8d; font-size:13px; text-transform:uppercase; letter-spacing:.06em; }
.service-card h3 { margin:8px 0 12px; font-size:36px; font-weight:400; line-height:1.02; }
.service-desc { margin:0; color:#5f5f5f; }
.service-card-grid { margin-top:18px; display:grid; grid-template-columns:1.2fr .8fr; gap:18px; }
.service-benefits { margin:0; padding-left:18px; color:#444; }
.service-benefits li + li { margin-top:8px; }
.service-includes { border:1px solid #ddd; border-radius:16px; background:#fafafa; padding:14px; }
.service-includes h4 { margin:0 0 10px; font-size:16px; font-weight:500; }
.service-includes ul { margin:0; padding-left:18px; }

.services-slider-placeholder { min-height:290px; border:1px dashed #b9b9b9; border-radius:18px; display:grid; place-items:center; padding:20px; text-align:center; color:#777; background:repeating-linear-gradient(-45deg,#fafafa,#fafafa 12px,#f4f4f4 12px,#f4f4f4 24px); }
.services-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.services-tags span { display:inline-block; border:1px solid #d4d4d4; border-radius:999px; padding:8px 14px; font-size:14px; }
.services-empty-cta { margin-top:18px; border-top:1px solid #ddd; padding-top:16px; display:flex; justify-content:space-between; gap:14px; align-items:center; }
.services-empty-cta p { margin:0; color:#666; }

.service-btn { align-self:flex-start; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--red); color:#fff; background:var(--red); border-radius:999px; padding:10px 18px; font-size:15px; transition:background .2s ease,border-color .2s ease; }
.service-btn:hover { background:var(--red-dark); border-color:var(--red-dark); }

.services-request-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.services-request-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.services-request-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, .52);
  backdrop-filter: blur(2px);
}

.services-request-content {
  position: relative;
  width: min(980px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid #d8d8d8;
  background: #fdfdfd;
  padding: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
  transform: translateY(14px) scale(.985);
  transition: transform .3s ease;
}

.services-request-modal.is-open .services-request-content {
  transform: translateY(0) scale(1);
}
.services-request-close { position:absolute; top:14px; right:14px; width:34px; height:34px; border:1px solid #ddd; border-radius:999px; background:#fff; cursor:pointer; font-size:24px; line-height:1; color:#666; }

.services-form { display:grid; grid-template-columns:1fr; gap:16px; }
.services-form-card { border:1px solid #ddd; border-radius:18px; padding:16px; background:#fff; }
.services-check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.services-check-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}







.services-form-span-2 { grid-column:1 / -1; }
.services-modal-form label, .services-modal-form fieldset { display:block; margin-bottom:0; }
.services-modal-form fieldset { border: 1px solid rgba(34, 35, 42, .2); border-radius: 12px; padding: 10px 14px 12px; margin-top: 4px; }
.services-modal-form fieldset legend { padding:0 8px; color:#6f7078; font-size:14px; }
.services-modal-form input, .services-modal-form textarea { width:100%; margin-top:6px; border:1px solid #cbcbcb; border-radius:12px; padding:10px 12px; font-size:15px; font-family:inherit; }
.services-modal-form input[type="checkbox"] { width:auto; }
.services-modal-form input:focus, .services-modal-form textarea:focus { outline:none; border-color:#9d1116; box-shadow:0 0 0 3px rgba(157,17,22,.12); }
.services-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-consent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 2px;
  font-size: 14px;
  line-height: 1.35;
  color: #32343d;
}

.services-consent input[type="checkbox"] {
  margin: 0;
}
.services-form-success {
  margin: 0 0 8px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 130, 76, .45);
  border-radius: 10px;
  background: rgba(36, 130, 76, .08);
  color: #205f39;
  font-size: 14px;
}

@media (max-width:1100px){ .services-hero{grid-template-columns:1fr;} }
@media (max-width:900px){
  .services-hero,.services-list-block,.services-portfolio,.services-pricing-info{border-radius:22px;padding:20px;}
  .services-request-content{padding:18px;border-radius:18px;}
  .services-hero h1{font-size:34px;}
  .services-head-row{flex-direction:column;align-items:flex-start;margin-bottom:14px;}
  .service-card h3{font-size:30px;}
  .service-card-head,.service-card-grid,.services-empty-cta{flex-direction:column;display:flex;}
  .services-check-grid,.services-form-grid{grid-template-columns:1fr;}
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  .content-page {
    padding-top: 0;
  }
  .services-page {
    margin-top: 0;
  }
}


.shop-product-page {
  margin: 22px auto 0;
}

.shop-product-shell {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border-radius: 30px;
  padding: 22px;
}

.shop-product-main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 24px;
}

.shop-product-gallery,
.shop-product-content {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
}

.shop-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 12px;
  align-items: start;
}

.shop-product-gallery-main {
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  min-height: 480px;
  overflow: hidden;
  background: #f9f9f9;
}

.shop-product-gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.shop-product-gallery-empty {
  min-height: 480px;
  display: grid;
  place-items: center;
  color: #757575;
  text-align: center;
  padding: 20px;
}

.shop-product-thumbs { display: grid; gap: 10px; max-height: 480px; overflow-y: auto; }
.shop-product-thumb { border:1px solid #d9d9d9; border-radius:12px; width:72px; height:72px; padding:0; overflow:hidden; background:#fff; cursor:pointer; justify-self:center; }
.shop-product-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.shop-product-thumb.is-active { border-color: var(--red); box-shadow: 0 0 0 2px rgb(255 31 31 / 20%); }

.shop-product-breadcrumbs { margin:0 0 12px; color:#7a7a7a; font-size:14px; }
.shop-product-breadcrumbs a { color:#7a7a7a; }
.shop-product-content h1 { margin:0; font-size:44px; line-height:1.05; }
.shop-product-excerpt { margin:14px 0 0; color:#585858; font-size:20px; }
.shop-product-buybox { margin-top:20px; border:1px solid #e7e7e7; border-radius:20px; padding:16px; background:#fff; display:grid; gap:10px; }
.shop-product-price { margin:0; font-size:44px; line-height:1; font-weight:700; }
.shop-product-price span { font-size:20px; font-weight:500; color:#5f5f5f; }
.shop-product-add { width:100%; justify-content:center; font-size:22px; padding:14px 22px; }
.shop-product-description { margin:14px 0 0; color:#4b4b4b;     font-size: .9em;
    line-height: 1.25em; }
.shop-product-back { margin:18px 0 0; }
.shop-product-back a { display:inline-flex; align-items:center; border:1px solid #d6d6d6; border-radius:999px; padding:7px 12px; color:#4e4e4e; font-size:13px; }

@media (max-width: 980px) {
  .shop-product-shell { padding: 16px; border-radius: 22px; }
  .shop-product-main { grid-template-columns: 1fr; }
  .shop-product-content h1 { font-size: 34px; }
  .shop-product-price { font-size: 34px; }
  .shop-product-gallery { grid-template-columns: 1fr; }
  .shop-product-thumbs { grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); grid-auto-flow: column; overflow-x: auto; overflow-y: hidden; max-height: none; }
  .shop-product-gallery-main,
  .shop-product-gallery-main img,
  .shop-product-gallery-empty { min-height: 320px; }
}


.shop-entry-status {
  margin: 0 0 14px;
}

.shop-auth-modal-content {
  max-width: 560px;
}

.shop-auth-steps {
  display: flex;
  gap: 10px;
  margin: 8px 0 18px;
}

.shop-auth-step {
  border: 1px solid rgba(34, 35, 42, .2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: #6f7078;
}

.shop-auth-step.is-active {
  border-color: rgba(157, 17, 22, .3);
  color: #9d1116;
  background: rgba(157, 17, 22, .08);
}

.shop-auth-form {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.shop-auth-form[hidden] {
  display: none;
}

.shop-auth-form input {
  width: 100%;
  border: 1px solid #cbcbcb;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
}

.shop-auth-form input:focus {
  outline: none;
  border-color: #9d1116;
  box-shadow: 0 0 0 3px rgba(157, 17, 22, .12);
}

.shop-auth-form-actions {
  display: flex;
  gap: 10px;
}

.service-btn--ghost {
  background: #fff;
  border: 1px solid #d3d4da;
  color: #32343d;
}

.shop-auth-message {
  margin: 10px 0 0;
}

.shop-cart-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.shop-cart-fab-count {
  position: absolute;
  top: -6px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.shop-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: #fff;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -8px 0 20px rgba(0, 0, 0, .12);
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}

.shop-cart-drawer.is-open { transform: translateX(0); }
.shop-cart-drawer__header { display:flex; align-items:center; justify-content:space-between; }
.shop-cart-close { border:0; background:none; font-size:30px; cursor:pointer; line-height:1; }
.shop-cart-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.28); z-index:1000; }
.shop-cart-items { display:grid; gap:10px; overflow:auto; padding-right:4px; }
.shop-cart-item { border:1px solid #e3e3e3; border-radius:12px; padding:10px; display:grid; grid-template-columns:84px 1fr; grid-template-areas:"media body" "actions actions"; gap:10px; align-items:start; }
.shop-cart-item__media { grid-area: media; width:84px; height:84px; border-radius:10px; overflow:hidden; background:#f3f3f3; }
.shop-cart-item__media img { width:100%; height:100%; object-fit:cover; display:block; }
.shop-cart-item__placeholder { width:100%; height:100%; display:grid; place-items:center; color:#888; font-size:11px; text-align:center; padding:6px; }
.shop-cart-item__body { grid-area: body; min-width:0; display:grid; gap:6px; }
.shop-cart-item__title { font-weight:600; }
.shop-cart-item__meta { color:#666; font-size:14px; }
.shop-cart-item__actions { grid-area: actions; display:flex; gap:8px; align-items:center; }
.shop-cart-item__actions button { border:1px solid #ddd; background:#fff; border-radius:8px; padding:4px 8px; cursor:pointer; }
.shop-cart-drawer__footer { border-top:1px solid #ececec; padding-top:12px; display:grid; gap:8px; background:#fff; }
.shop-cart-composition, .shop-cart-total { font-size:15px; color:#444; }
.shop-cart-total { font-weight:700; }
.shop-cart-checkout { width:100%; justify-content:center; }

.shop-checkout-card {
  max-width: 980px;
  margin: 0 auto;
}

.shop-checkout-title {
  margin: 0 0 16px;
  color: var(--red);
  font-size: clamp(42px, 8vw, 55px);
  line-height: .95;
  font-weight: 300;
}

.shop-checkout-form {
  display: grid;
  gap: 14px;
}

.shop-checkout-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.shop-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shop-checkout-field {
  display: grid;
  gap: 7px;
}

.shop-checkout-field span {
  color: #32343d;
  font-size: 16px;
  line-height: 1.1;
}

.shop-checkout-field input,
.shop-checkout-field textarea {
  width: 100%;
  border: 1px solid rgba(34, 35, 42, .35);
  border-radius: 12px;
  background: #fff;
  padding: 11px 13px;
  color: #262832;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.3;
}

.shop-checkout-field textarea {
  min-height: 120px;
  resize: vertical;
}

.shop-checkout-submit {
  justify-self: start;
}

.shop-checkout-composition {
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.shop-checkout-composition h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}

.shop-checkout-composition-list {
  display: grid;
  gap: 8px;
}

.shop-checkout-composition-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  border-bottom: 1px dashed rgba(0,0,0,.12);
  padding-bottom: 8px;
}

.shop-checkout-composition-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f1f1;
}

.shop-checkout-composition-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-checkout-composition-thumb-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #8a8a8a;
  font-size: 10px;
  text-align: center;
  padding: 4px;
}

.shop-checkout-composition-body {
  display: grid;
  gap: 4px;
  align-content: center;
}

.shop-checkout-composition-body a {
  color: #2e2e2e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-checkout-composition-total {
  font-weight: 700;
}

@media (max-width: 760px) {
  .shop-checkout-layout {
    grid-template-columns: 1fr;
  }
  .shop-checkout-grid {
    grid-template-columns: 1fr;
  }
}

.shop-page-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  align-items: center;
}

.shop-page-head .works-title {
  margin-bottom: 0;
}

.shop-page-head .shop-entry {
  text-align: right;
}

.shop-page-head .shop-entry-status {
  margin: 0 0 8px;
}


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

.shop-card {
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.shop-card-link {
  color: inherit;
  text-decoration: none;
  display: grid;
  gap: 10px;
}

.shop-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f1f1;
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-card-title {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.shop-card-price {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #2d2d2d;
}

.shop-card-excerpt {
  margin: 0;
  color: #5e5e5e;
  font-size: 15px;
}

.shop-card-action {
  justify-content: center;
}

.shop-related-products {
  margin-top: 2em;
}

.shop-related-products .shop-page .works-title {
  margin-bottom: 1em !important;
}

@media (max-width: 980px) {
  .shop-page-head {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-page-head .shop-entry {
    text-align: left;
  }

  .shop-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shop-page .works-box {
    padding: 16px;
  }

  .shop-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


.shop-auth-modal-content {
  max-width: 520px;
  border-radius: 20px;
  padding: 24px 24px 18px;
  background: #f4f4f4;
}

.shop-auth-modal-content h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #373b41;
}

.shop-auth-modal-content .review-modal-close {
  top: 12px;
  right: 12px;
  color: #8a8a8a;
  font-size: 34px;
}

.shop-auth-phone-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.shop-auth-phone-input > span {
  font-size: 22px;
  color: #373b41;
}

.shop-auth-form {
  gap: 12px;
  margin: 10px 0;
}

.shop-auth-form label {
  display: none;
}


.shop-auth-code-hint {
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.3;
  color: #4f4f56;
}

@media (max-width: 980px) {
  .shop-auth-code-hint { font-size: 13px; }
}
.shop-auth-form input {
  border-color: #ce2028;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 20px;
  line-height: 1.15;
  background: #f4f4f4;
}

.shop-auth-form input::placeholder {
  color: #8f8f8f;
}

.shop-auth-submit {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1.1;
  padding: 12px 14px;
  margin-top: 6px;
}

.shop-auth-form-actions .service-btn--ghost {
  border-radius: 999px;
  padding: 10px 22px;
}

.shop-auth-message {
  margin: 10px 0 0;
  font-size: 14px;
}

.shop-auth-policy {
  margin: 14px auto 0;
  max-width: 460px;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
  color: #4f4f56;
}

@media (max-width: 980px) {
  .shop-auth-modal-content {
    max-width: calc(100vw - 16px);
    padding: 20px 14px 14px;
    border-radius: 18px;
  }

  .shop-auth-modal-content h3 {
    font-size: 24px;
    margin-right: 28px;
  }

  .shop-auth-modal-content .review-modal-close {
    top: 12px;
    right: 12px;
    font-size: 30px;
  }

  .shop-auth-phone-input > span { font-size: 20px; }
  .shop-auth-form input { font-size: 18px; padding: 10px 12px; }
  .shop-auth-submit { font-size: 18px; padding: 10px 12px; }
  .shop-auth-policy { font-size: 12px; }
}
