:root {
  --bg: #090b0e;
  --panel: #11151a;
  --paper: #f4f2ed;
  --ink: #111318;
  --muted: #6d7279;
  --red: #ed3b35;
  --line: #d9d8d3;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  font:
    16px/1.55 Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.header {
  z-index: 20;
  color: #fff;
  background: linear-gradient(rgba(8, 10, 13, 0.81), transparent);
  align-items: center;
  gap: 44px;
  padding: 20px max(28px, 50vw - 620px);
  transition: all 0.25s;
  display: flex;
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
}
.header.scrolled {
  background: rgba(9, 11, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.094);
  padding-top: 13px;
  padding-bottom: 13px;
}
.brand {
  letter-spacing: -1.5px;
  white-space: nowrap;
  font-size: 27px;
  font-weight: 900;
  line-height: 0.85;
}
.brand span {
  color: var(--red);
}
.brand small {
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9da3aa;
  margin-top: 8px;
  font-size: 8px;
  display: block;
}
.header nav {
  gap: 26px;
  margin-left: auto;
  display: flex;
}
.header nav a {
  color: #d7d9dc;
  font-size: 13px;
}
.phone {
  font-weight: 700;
}
.menu {
  color: #fff;
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  padding: 8px 13px;
  display: none;
}
.hero {
  color: #fff;
  align-items: center;
  height: 100vh;
  min-height: 780px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero-media,
.hero-shade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-media {
  background: image-set(
      url(assets/hero-1920.webp) type("image/webp"),
      url(assets/hero.jpg) type("image/jpeg")
    )
    50% / cover no-repeat;
  transform: scale(1.02);
}
.hero-content {
  width: min(1240px, 100% - 56px);
  margin: auto;
  padding-top: 70px;
  position: relative;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 800;
}
.hero h1 {
  letter-spacing: -5px;
  max-width: 890px;
  margin: 0 0 28px;
  font-size: max(52px, min(7vw, 102px));
  line-height: 0.93;
}
.hero h1 em {
  color: var(--red);
  font-family: Georgia, serif;
  font-weight: 400;
}
.lead {
  color: #d4d7da;
  max-width: 670px;
  font-size: max(18px, min(2vw, 25px));
  line-height: 1.45;
}
.actions {
  gap: 12px;
  margin: 38px 0;
  display: flex;
}
.button {
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 27px;
  font-weight: 800;
  display: inline-flex;
}
.primary {
  background: var(--red);
  color: #fff;
}
.primary:hover {
  background: #ff4a43;
}
.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.314);
}
.hero-proof {
  gap: 42px;
  margin-top: 55px;
  display: flex;
}
.hero-proof a,
.hero-proof > span {
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 11px;
  display: grid;
}
.hero-proof b {
  font-size: 26px;
}
.hero-proof small {
  color: #aeb2b7;
  grid-column: 1/3;
}
.stars {
  color: #ffba27;
  letter-spacing: 1px;
}
.scroll {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
  font-size: 12px;
  position: absolute;
  bottom: 30px;
  right: max(28px, 50vw - 620px);
}
.scroll span {
  color: var(--red);
  font-size: 20px;
}
.section {
  padding: 120px max(28px, 50vw - 620px);
}
.section-head {
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  margin-bottom: 60px;
  display: grid;
}
.section-head .eyebrow {
  grid-column: 1/3;
}
.section h2,
.map h2 {
  letter-spacing: -2.5px;
  margin: 0;
  font-size: max(38px, min(5vw, 68px));
  line-height: 1.02;
}
.section-head > p:last-child {
  color: var(--muted);
  align-self: end;
  font-size: 18px;
}
.services {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.services article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
  transition: all 0.2s;
  display: flex;
}
.services article:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.067);
}
.services article > span {
  color: var(--red);
  font-size: 12px;
}
.services h3 {
  margin: 45px 0 14px;
  font-size: 26px;
  line-height: 1.1;
}
.services p {
  color: var(--muted);
  margin: 0;
}
.services a {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
}
.process {
  background: var(--bg);
  color: #fff;
}
.light h2 {
  color: #fff;
}
.process ol {
  counter-reset: item;
  border-top: 1px solid rgba(255, 255, 255, 0.125);
  margin: 0;
  padding: 0;
  list-style: none;
}
.process li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.125);
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 25px;
  padding: 28px 0;
  display: grid;
}
.process li:before {
  counter-increment: item;
  content: "0" counter(item);
  color: var(--red);
  font-size: 12px;
}
.process li b {
  font-size: 22px;
}
.process li span {
  color: #aeb2b7;
}
.gallery-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  display: grid;
}
.gallery-grid button {
  cursor: zoom-in;
  background: #ddd;
  border: 0;
  padding: 0;
  overflow: hidden;
}
.gallery-grid button:first-child,
.gallery-grid button:nth-child(6) {
  grid-column: span 7;
}
.gallery-grid button:nth-child(2),
.gallery-grid button:nth-child(5) {
  grid-column: span 5;
}
.gallery-grid button:nth-child(3),
.gallery-grid button:nth-child(4) {
  grid-column: span 6;
}
.gallery-grid picture {
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-grid img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.gallery-grid button:hover img {
  transform: scale(1.035);
}
.reviews {
  background: #e9e6df;
}
.review-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  display: grid;
}
.review-grid blockquote {
  background: #f8f6f1;
  flex-direction: column;
  min-height: 280px;
  margin: 0;
  padding: 34px;
  display: flex;
}
.review-grid blockquote div {
  color: #e7a51b;
  letter-spacing: 3px;
}
.review-grid blockquote p {
  font:
    22px/1.45 Georgia,
    serif;
}
.review-grid footer {
  color: var(--muted);
  margin-top: auto;
  font-size: 13px;
}
.text-link {
  border-bottom: 1px solid;
  margin-top: 26px;
  font-weight: 800;
  display: inline-block;
}
.request {
  background: var(--bg);
  color: #fff;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  display: grid;
}
.request > div > p:not(.eyebrow) {
  color: #aeb2b7;
  max-width: 520px;
  font-size: 18px;
}
.contact-list {
  color: #c7cacf;
  flex-direction: column;
  gap: 8px;
  margin-top: 35px;
  display: flex;
}
.contact-list a {
  color: #fff;
  font-size: 27px;
  font-weight: 800;
}
.request form {
  background: #14181d;
  flex-direction: column;
  gap: 20px;
  padding: 38px;
  display: flex;
}
.request label {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9da3aa;
  font-size: 12px;
}
.request input,
.request select {
  color: #fff;
  background: #0b0e12;
  border: 1px solid rgba(255, 255, 255, 0.125);
  outline: none;
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  display: block;
}
.request input:focus,
.request select:focus {
  border-color: var(--red);
}
.consent {
  align-items: center;
  gap: 10px;
  display: flex;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.consent input {
  width: auto;
  margin: 0;
}
.map {
  background: #d8d5ce;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 100px max(28px, 50vw - 620px);
  display: grid;
}
.map p {
  color: var(--muted);
}
.map-card {
  background-color: #e9e6df;
  background-image:
    linear-gradient(25deg, #c9c6be 1px, transparent 1px),
    linear-gradient(115deg, #c9c6be 1px, transparent 1px);
  background-size: 45px 45px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 330px;
  display: flex;
}
.pin {
  background: var(--red);
  color: #fff;
  border-radius: 50% 50% 50% 0;
  align-items: center;
  justify-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  font-size: 12px;
  display: grid;
  transform: rotate(-45deg);
}
.map-card b,
.map-card small {
  transform: none;
}
.map-card b {
  font-size: 25px;
}
.map-card small {
  color: var(--muted);
}
.footer {
  color: #fff;
  background: #07090b;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 30px;
  padding: 60px max(28px, 50vw - 620px);
  display: grid;
}
.footer > div {
  justify-content: flex-end;
  gap: 22px;
  display: flex;
}
.footer > p {
  color: #6f757c;
  border-top: 1px solid rgba(255, 255, 255, 0.082);
  grid-column: 1/3;
  padding-top: 20px;
  font-size: 12px;
}
.mobile-bar {
  display: none;
}
dialog {
  background: #07090b;
  border: 0;
  width: min(1000px, 94vw);
  height: min(760px, 90vh);
  padding: 0;
}
dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.867);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.867);
}
#lightbox img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#lightbox > button {
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.667);
  border: 0;
  width: 40px;
  height: 40px;
  font-size: 28px;
  position: absolute;
  top: 8px;
  right: 12px;
}
@media (max-width: 850px) {
  .header {
    padding: 15px 18px;
  }
  .header nav,
  .header .phone {
    display: none;
  }
  .menu {
    margin-left: auto;
    display: block;
  }
  .header.open nav {
    background: #090b0e;
    flex-direction: column;
    padding: 24px;
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
  }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    width: calc(100% - 36px);
  }
  .hero h1 {
    letter-spacing: -2.8px;
  }
  .hero-proof {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    padding: 80px 18px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }
  .section-head .eyebrow {
    grid-column: auto;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .services article {
    min-height: 250px;
  }
  .process li {
    grid-template-columns: 50px 1fr;
  }
  .process li span {
    grid-column: 2;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-grid button:nth-child(n) {
    grid-column: auto;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .request,
  .map {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .request form {
    padding: 24px 18px;
  }
  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }
  .footer > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer > p {
    grid-column: auto;
  }
  .mobile-bar {
    z-index: 30;
    background: #080a0d;
    border-top: 1px solid rgba(255, 255, 255, 0.125);
    grid-template-columns: 1fr 1.4fr;
    display: grid;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .mobile-bar a {
    color: #fff;
    text-align: center;
    padding: 15px 8px;
    font-size: 13px;
    font-weight: 800;
  }
  .mobile-bar a:last-child {
    background: var(--red);
  }
}

/* Service cards: clear value, scope and price hierarchy */
.services {
  border: 0;
  gap: 16px;
}
.services article.service-card {
  background: #f7f5f0;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 16px;
  min-height: 430px;
  padding: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(17, 19, 24, 0.045);
}
.services article.service-card:before {
  content: "";
  background: linear-gradient(90deg, var(--red), transparent);
  width: 100%;
  height: 3px;
  position: absolute;
  inset: 0 0 auto;
  opacity: 0;
  transition: opacity 0.2s;
}
.services article.service-card:hover:before,
.services article.service-card.featured:before {
  opacity: 1;
}
.service-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.services .service-top > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}
.service-top b {
  color: #5c6268;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #ebe8e1;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 10px;
}
.services article.featured .service-top b {
  color: #fff;
  background: var(--red);
}
.services article.service-card h3 {
  margin: 30px 0 13px;
  font-size: 27px;
}
.services article.service-card > p {
  line-height: 1.55;
}
.services article.service-card ul {
  color: #464b50;
  border-top: 1px solid rgba(17, 19, 24, 0.09);
  margin: 22px 0 24px;
  padding: 18px 0 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.7;
}
.services article.service-card li:before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
  font-weight: 900;
}
.service-footer {
  border-top: 1px solid rgba(17, 19, 24, 0.09);
  align-items: end;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  display: flex;
}
.service-footer > div {
  flex: 1;
}
.service-footer small {
  color: #74797f;
  margin-bottom: 3px;
  display: block;
  font-size: 10px;
}
.service-footer strong {
  white-space: nowrap;
  font-size: 22px;
}
.services .service-footer a {
  color: #fff;
  background: #15181d;
  border-radius: 8px;
  margin: 0;
  padding: 11px 12px;
  font-size: 11px;
}
.services .service-footer a:hover {
  background: var(--red);
}
.price-note {
  max-width: 850px;
  line-height: 1.5;
}

/* Taller, easier-to-read CAPTCHA without increasing payload materially */
.captcha-image {
  aspect-ratio: 30 / 13;
  height: auto;
  min-height: 220px;
  border-radius: 10px;
}
.captcha-piece {
  width: 56px !important;
  height: 56px !important;
}

.map-card {
  position: relative;
}
.map-interaction {
  color: #fff;
  cursor: pointer;
  background: rgba(15, 18, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 11px 14px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}
.map-interaction[hidden] {
  display: none;
}
@media (min-width: 851px) {
  .map-interaction {
    display: none;
  }
}
@media (max-width: 850px) {
  .services {
    gap: 16px;
  }
  .services article.service-card {
    min-height: 0;
    padding: 22px;
  }
  .services article.service-card h3 {
    margin-top: 24px;
  }
  .service-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .services .service-footer a {
    text-align: center;
    padding: 13px;
  }
  .captcha-image {
    min-height: 0;
  }
  .map-card iframe {
    pointer-events: none;
  }
  .map-card.interactive iframe {
    pointer-events: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.header {
  color: var(--ink);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(247, 245, 240, 0.95);
  border-bottom: 1px solid rgba(17, 19, 24, 0.094);
  padding-top: 12px;
  padding-bottom: 12px;
}
.header.scrolled {
  background: rgba(247, 245, 240, 0.98);
  border-bottom-color: rgba(17, 19, 24, 0.133);
}
.brand {
  align-items: center;
  display: inline-flex;
}
.brand img {
  mix-blend-mode: multiply;
  width: 132px;
  height: auto;
  display: block;
}
.header nav {
  margin-left: auto;
}
.header nav a {
  color: #4d5259;
}
.header nav a:hover,
.header .phone {
  color: #090b0e;
}
.menu {
  color: #090b0e;
  border-color: rgba(17, 19, 24, 0.25);
}
.hero {
  align-items: flex-end;
  min-height: 820px;
}
.hero-media {
  background-position: top;
}
.hero-shade {
  background: linear-gradient(
    transparent 0%,
    transparent 28%,
    rgba(8, 10, 13, 0.26) 46%,
    rgba(8, 10, 13, 0.96) 82%,
    #080a0d 100%
  );
}
.hero-content {
  grid-template-columns: minmax(0, 790px) auto;
  align-items: end;
  column-gap: 54px;
  width: min(1240px, 100% - 56px);
  margin: 0 auto;
  padding: 0 0 42px;
  display: grid;
}
.hero-copy {
  border-left: 4px solid var(--red);
  padding-left: 24px;
}
.hero h1 {
  letter-spacing: -3.5px;
  text-shadow: 0 2px 22px #000;
  max-width: 790px;
  margin-bottom: 22px;
  font-size: max(48px, min(5.3vw, 78px));
  line-height: 0.95;
}
.hero .lead {
  max-width: 620px;
  margin-bottom: 0;
  font-size: max(17px, min(1.6vw, 22px));
}
.hero .actions {
  flex-direction: column;
  grid-column: 2;
  min-width: 230px;
  margin: 0;
}
.hero .actions .button {
  width: 100%;
}
.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-column: 1/3;
  margin-top: 32px;
  padding-top: 22px;
}
.scroll {
  display: none;
}
.gallery-grid button {
  position: relative;
}
.gallery-grid button span {
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 38px 18px 14px;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.gallery-grid button:nth-child(2) img,
.gallery-grid button:nth-child(3) img,
.gallery-grid button:nth-child(4) img {
  object-position: center 55%;
}
.faq {
  background: #f8f6f1;
}
.faq-list {
  max-width: 920px;
  margin-left: auto;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  padding: 24px 50px 24px 0;
  font-size: 22px;
  font-weight: 800;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  color: var(--red);
  font-size: 30px;
  font-weight: 400;
  position: absolute;
  top: 16px;
  right: 8px;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  color: var(--muted);
  max-width: 760px;
  margin: 0;
  padding: 0 0 26px;
}
.consent a {
  text-underline-offset: 2px;
  text-decoration: underline;
}
.form-note {
  color: #737a82;
  line-height: 1.4;
}
.legal {
  max-width: 850px;
  margin: 0 auto;
  padding: 70px 28px 120px;
}
.legal > a {
  color: var(--red);
  font-weight: 800;
}
.legal h1 {
  margin: 60px 0 35px;
  font-size: max(38px, min(6vw, 64px));
  line-height: 1;
}
.legal h2 {
  margin-top: 35px;
}
.legal p {
  color: var(--muted);
}
@media (max-width: 850px) {
  .header {
    padding: 9px 14px;
  }
  .brand img {
    width: 112px;
  }
  .header.open nav {
    color: #111;
    background: #f7f5f0;
    top: 61px;
  }
  .hero {
    height: auto;
    min-height: 860px;
  }
  .hero-media {
    background-color: #0a0c0f;
    background-image: image-set(
      url(assets/hero-mobile-960.webp) type("image/webp"),
      url(assets/work-1.jpg) type("image/jpeg")
    );
    background-position: 58%;
    background-size: cover;
  }
  .hero-shade {
    background: linear-gradient(
      rgba(8, 10, 13, 0.125) 0%,
      rgba(8, 10, 13, 0.55) 24%,
      rgba(8, 10, 13, 0.95) 55%,
      #080a0d 100%
    );
  }
  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 120px 0 86px;
    display: block;
  }
  .hero-copy {
    padding-left: 16px;
  }
  .hero h1 {
    letter-spacing: -2.3px;
    font-size: max(44px, min(13vw, 62px));
  }
  .hero .lead {
    font-size: 17px;
  }
  .hero .actions {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    margin: 26px 0 0;
    display: grid;
  }
  .hero .actions .button {
    padding: 0 12px;
    font-size: 13px;
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
    display: grid;
  }
  .hero-proof a,
  .hero-proof > span,
  .hero-proof small {
    display: block;
  }
  .hero-proof b {
    font-size: 21px;
  }
  .stars {
    font-size: 11px;
  }
  .section h2,
  .map h2 {
    letter-spacing: -1.6px;
  }
  .gallery-grid button:nth-child(n) {
    height: 280px;
  }
  .gallery-grid button:nth-child(2),
  .gallery-grid button:nth-child(3),
  .gallery-grid button:nth-child(4) {
    height: 360px;
  }
  .faq-list {
    margin: 0;
  }
  .faq-list summary {
    font-size: 18px;
  }
  .footer .brand img {
    mix-blend-mode: normal;
    background: #fff;
    padding: 5px;
  }
  .header.open .menu {
    color: #111;
  }
}
.hero {
  max-height: 1000px;
}
@media (max-width: 850px) {
  .hero {
    max-height: none;
  }
}
.service-price {
  margin-top: 24px;
  font-size: 21px;
  display: block;
}
.services a {
  padding-top: 16px;
}
.price-note {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 13px;
}
.trust-strip {
  background: var(--bg);
  color: #fff;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  display: grid;
}
.trust-strip div {
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  padding: 30px;
}
.trust-strip div:last-child {
  border: 0;
}
.trust-strip b,
.trust-strip span {
  display: block;
}
.trust-strip b {
  margin-bottom: 5px;
  font-size: 22px;
}
.trust-strip span {
  color: #aeb2b7;
  font-size: 14px;
}
.optional {
  float: right;
  color: #6f757c;
  text-transform: none;
  letter-spacing: 0;
}
.form-trap {
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -10000px !important;
}
.captcha {
  background: #0b0e12;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 17px;
}
.captcha-head {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  display: flex;
}
.captcha-head button {
  color: #d7d9dc;
  cursor: pointer;
  background: 0 0;
  border: 0;
  font-size: 12px;
}
.captcha-image {
  background: #151a20;
  height: 88px;
  overflow: hidden;
}
.captcha-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.captcha label {
  margin-top: 12px;
  display: block;
}
.captcha input[type="range"] {
  accent-color: var(--red);
  border: 0;
  padding: 0;
}
.form-status {
  margin: 0;
  padding: 12px;
  font-size: 14px;
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.success {
  color: #c8f2d7;
  background: #153524;
}
.form-status.error {
  color: #ffd2d2;
  background: #451d1d;
}
.form-note {
  color: #777f88;
}
.request form[aria-busy="true"] {
  opacity: 0.72;
  pointer-events: none;
}
@media (max-width: 850px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .trust-strip div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    border-right: 0;
  }
  .services article {
    min-height: 290px;
  }
  .optional {
    float: none;
    margin-top: 3px;
    display: block;
  }
}
.captcha-image {
  height: 180px;
  position: relative;
}
.captcha-image > [data-captcha-image] {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.captcha-image.loading:after {
  content: "Загружаем новое задание…";
  z-index: 3;
  color: #c7cbd0;
  background: rgba(21, 26, 32, 0.95);
  align-items: center;
  justify-items: center;
  font-size: 12px;
  display: grid;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.captcha-image.loading > [data-captcha-image],
.captcha-image.loading > .captcha-piece {
  visibility: hidden;
}
.captcha-piece {
  z-index: 2;
  object-fit: cover;
  pointer-events: none;
  border-radius: 2px;
  position: absolute;
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.733);
  width: 48px !important;
  height: 48px !important;
}
.map-card {
  background: #c9c6be;
  display: block;
  overflow: hidden;
}
.map-card iframe {
  border: 0;
  width: 100%;
  height: 330px;
  display: block;
}
.captcha {
  background: linear-gradient(145deg, #1c2025, #111419);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 20px;
}
.captcha-head {
  text-transform: none;
  letter-spacing: 0;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 17px;
}
.captcha-head div {
  flex-direction: column;
  display: flex;
}
.captcha-head span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 10px;
  font-weight: 800;
}
.captcha-head strong {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.2;
}
.captcha-head small {
  color: #8e959d;
  margin-top: 4px;
  font-size: 11px;
}
.captcha-head .captcha-shield {
  width: 38px;
  height: 38px;
  color: var(--red);
  letter-spacing: 0;
  background: rgba(237, 59, 53, 0.07);
  border: 1px solid rgba(237, 59, 53, 0.333);
  border-radius: 11px;
  flex: 0 0 38px;
  align-items: center;
  justify-items: center;
  font-size: 17px;
  display: grid;
}
.captcha-image {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #282d33;
  border-radius: 11px;
  height: 190px;
}
.captcha-piece {
  border: 2px solid #fff;
  border-radius: 7px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.8);
}
.captcha-refresh {
  z-index: 4;
  color: #fff;
  cursor: pointer;
  background: rgba(15, 17, 19, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  align-items: center;
  justify-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  font-size: 23px;
  line-height: 1;
  display: grid;
  position: absolute;
  top: 9px;
  right: 9px;
}
.captcha-refresh:hover {
  color: var(--red);
  border-color: rgba(237, 59, 53, 0.467);
}
.captcha-success {
  z-index: 3;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  background: rgba(16, 27, 20, 0.667);
  align-items: center;
  justify-items: center;
  font-size: 34px;
  display: grid;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.captcha-image.solved .captcha-success {
  opacity: 1;
  visibility: visible;
}
.captcha-slider {
  touch-action: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #24282d;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  height: 54px;
  margin-top: 13px;
  position: relative;
  overflow: hidden;
}
.captcha-progress {
  background: linear-gradient(
    90deg,
    rgba(237, 59, 53, 0.25),
    rgba(237, 59, 53, 0.07)
  );
  border-right: 1px solid rgba(237, 59, 53, 0.5);
  width: 27px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
}
.captcha-slider-label {
  color: #8f969e;
  align-items: center;
  justify-items: center;
  padding-left: 40px;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.captcha-thumb {
  background: var(--red);
  color: #fff;
  cursor: grab;
  border: 0;
  border-radius: 8px;
  align-items: center;
  justify-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  display: grid;
  position: absolute;
  top: 4px;
  left: 4px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.333);
}
.captcha-thumb:active {
  cursor: grabbing;
}
.captcha-thumb:focus-visible {
  outline-offset: -4px;
  outline: 3px solid #fff;
}
.captcha-thumb:disabled {
  cursor: wait;
  opacity: 0.55;
}
.captcha-slider.dragging .captcha-slider-label {
  opacity: 0.3;
}
.captcha-slider.error {
  border-color: rgba(255, 101, 79, 0.7);
  animation: 0.35s captcha-shake;
}
.captcha-slider.solved {
  border-color: rgba(82, 202, 123, 0.5);
}
.captcha-slider.solved .captcha-progress {
  background: rgba(82, 202, 123, 0.11);
  width: 100% !important;
}
.captcha-slider.solved .captcha-slider-label {
  color: #7ee29f;
  padding-left: 0;
}
.captcha-slider.solved .captcha-thumb {
  opacity: 0;
  pointer-events: none;
}
.captcha-status {
  color: #777f88;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 16px;
  margin-top: 12px;
  font-size: 10px;
  display: flex;
}
.captcha-status span {
  background: var(--red);
  width: 5px;
  height: 5px;
  box-shadow: 0 0 6px var(--red);
  border-radius: 50%;
}
.captcha-status.success {
  color: #7ee29f;
}
.captcha-status.success span {
  background: #52ca7b;
  box-shadow: 0 0 6px #52ca7b;
}
.captcha-status.error {
  color: #ff7b68;
}
.captcha-status.error span {
  background: #ff654f;
  box-shadow: 0 0 6px #ff654f;
}
@keyframes captcha-shake {
  25% {
    transform: translate(-6px);
  }
  50% {
    transform: translate(5px);
  }
  75% {
    transform: translate(-3px);
  }
}
@media (max-width: 850px) {
  .gallery-grid {
    gap: 18px;
  }
  .gallery-grid button:nth-child(n) {
    aspect-ratio: 4/3;
    border-radius: 4px;
    height: auto;
  }
  .gallery-grid button:nth-child(2),
  .gallery-grid button:nth-child(3),
  .gallery-grid button:nth-child(4) {
    aspect-ratio: 4/5;
    height: auto;
  }
  .gallery-grid button span {
    padding: 52px 16px 14px;
  }
  .captcha {
    padding: 16px;
  }
  .captcha-image {
    height: 170px;
  }
  .captcha-head .captcha-shield {
    display: none;
  }
}
.map {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.map-card {
  border-radius: 8px;
  min-height: 460px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.133);
}
.map-card iframe {
  width: 100%;
  height: 460px;
}
.map-placeholder {
  text-align: center;
  background: linear-gradient(145deg, #c9c6be, #e7e4dd);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 460px;
  padding: 38px;
  display: flex;
}
.map-placeholder[hidden] {
  display: none;
}
.map-placeholder strong {
  font-size: 24px;
}
.map-placeholder p {
  max-width: 430px;
  margin: 10px 0 24px;
}
.footer > div button {
  color: #fff;
  cursor: pointer;
  background: 0 0;
  border: 0;
  padding: 0;
}
.footer > div button:hover {
  text-decoration: underline;
}
.cookie-banner {
  z-index: 50;
  color: #fff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(17, 21, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: min(960px, 100% - 48px);
  margin: auto;
  padding: 22px 24px;
  display: flex;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.533);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner strong {
  font-size: 18px;
}
.cookie-banner p {
  color: #b7bcc2;
  max-width: 610px;
  margin: 5px 0 0;
  font-size: 13px;
}
.cookie-banner p a {
  text-decoration: underline;
}
.cookie-banner > div:last-child {
  flex: none;
  gap: 10px;
  display: flex;
}
.legal code {
  background: #e7e4dd;
  padding: 2px 5px;
}
.legal-warning {
  border-left: 4px solid var(--red);
  background: #fff0ec;
  margin-top: 42px;
  padding: 18px;
}
@media (max-width: 850px) {
  .hero .actions {
    display: none;
  }
  .map {
    padding: 68px 0 0;
    display: block;
  }
  .map-copy {
    padding: 0 18px 42px;
  }
  .map-card,
  .map-card iframe,
  .map-placeholder {
    height: 380px;
    min-height: 380px;
    box-shadow: none;
    border-radius: 0;
  }
  .map-placeholder {
    padding: 28px 18px;
  }
  .cookie-banner {
    width: auto;
    padding: 18px;
    display: block;
    bottom: 76px;
    left: 12px;
    right: 12px;
  }
  .cookie-banner > div:last-child {
    grid-template-columns: 1fr;
    margin-top: 15px;
    display: grid;
  }
  .cookie-banner .button {
    width: 100%;
    min-height: 46px;
  }
  .cookie-banner .ghost {
    border-color: rgba(255, 255, 255, 0.314);
  }
  .footer > div button {
    font-size: 16px;
  }
}
.brand img {
  mix-blend-mode: normal;
  width: 152px;
  height: auto;
}
.header {
  gap: 30px;
}
.header nav {
  background: #ebe9e4;
  border: 1px solid rgba(17, 19, 24, 0.07);
  border-radius: 999px;
  gap: 4px;
  padding: 4px;
}
.header nav a {
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.header nav a:hover {
  background: #fff;
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.067);
}
.hero-copy > .eyebrow {
  color: #ff625c;
  text-shadow: 0 1px 4px #000;
  background: rgba(8, 10, 13, 0.74);
  border-radius: 3px;
  width: auto;
  margin-bottom: 18px;
  padding: 8px 11px;
  display: inline-flex;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.333);
}
.footer .brand img {
  filter: invert();
  width: 175px;
}
.footer .brand {
  align-self: center;
}
.captcha {
  display: none;
}
.captcha.active {
  display: block;
}
.cookie-banner .ghost {
  color: #fff;
  background: #30363d;
  border-color: #6f7780;
}
.cookie-banner .ghost:hover {
  background: #3a424a;
}
.map-card iframe {
  border: 0;
  display: block;
}
@media (max-width: 850px) {
  .brand img {
    width: 128px;
  }
  .header.open nav {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(247, 245, 240, 0.97);
    border: 1px solid rgba(17, 19, 24, 0.094);
    border-radius: 14px;
    gap: 6px;
    padding: 10px;
    top: 66px;
    left: 12px;
    right: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  }
  .header.open nav a {
    color: #222;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .header.open nav a:hover {
    box-shadow: none;
    background: #ebe9e4;
  }
  .menu {
    background: #ebe9e4;
    border-color: rgba(17, 19, 24, 0.14);
    padding: 9px 15px;
    font-weight: 700;
  }
  .hero-copy > .eyebrow {
    font-size: 10px;
    line-height: 1.4;
  }
  .footer .brand img {
    width: 160px;
  }
  .cookie-banner p {
    font-size: 11px;
    line-height: 1.45;
  }
  .cookie-banner[hidden] + main {
    margin-top: 0;
  }
  .gallery {
    padding-left: 22px;
    padding-right: 22px;
  }
  .gallery-grid {
    gap: 24px;
  }
  .gallery-grid button:nth-child(n) {
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(17, 17, 17, 0.133);
  }
  .gallery-grid img {
    display: block;
  }
  .map-card iframe {
    pointer-events: none;
  }
  .map-copy {
    padding-bottom: 34px;
  }
  .cookie-banner {
    z-index: 29;
    border-radius: 10px;
    width: auto;
    margin: 0;
    padding: 12px 14px;
    position: fixed;
    bottom: 68px;
    left: 10px;
    right: 10px;
  }
  .cookie-banner strong {
    font-size: 14px;
  }
  .cookie-banner p {
    max-width: none;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.35;
  }
  .cookie-banner > div:last-child {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 9px;
  }
  .cookie-banner .button {
    min-height: 36px;
    padding: 0 7px;
    font-size: 10px;
  }
  .hero {
    height: 100svh;
    min-height: 620px;
    max-height: 900px;
  }
  .hero-media {
    background-position: 58%;
  }
  .hero-shade {
    background: linear-gradient(
      rgba(8, 10, 13, 0.07) 0%,
      rgba(8, 10, 13, 0.384) 28%,
      rgba(8, 10, 13, 0.91) 58%,
      #080a0d 100%
    );
  }
  .hero-content {
    width: calc(100% - 32px);
    padding: 82px 0 72px;
  }
  .hero-copy {
    padding-left: 13px;
  }
  .hero-copy > .eyebrow {
    margin-bottom: 12px;
    padding: 6px 8px;
    font-size: 9px;
  }
  .hero h1 {
    letter-spacing: -1.8px;
    max-width: 350px;
    margin-bottom: 14px;
    font-size: max(34px, min(10.5vw, 46px));
    line-height: 0.94;
  }
  .hero .lead {
    max-width: 350px;
    font-size: 14px;
    line-height: 1.4;
  }
  .hero-proof {
    gap: 8px;
    margin-top: 18px;
    padding-top: 14px;
  }
  .hero-proof b {
    font-size: 18px;
  }
  .hero-proof small {
    font-size: 10px;
    line-height: 1.3;
  }
  .stars {
    font-size: 9px;
  }
}
@media (max-width: 370px), (max-height: 700px) {
  .hero-content {
    padding-top: 72px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero .lead {
    font-size: 13px;
  }
  .hero-proof {
    margin-top: 12px;
  }
  .cookie-banner p {
    display: none;
  }
}
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 18px;
}
.gallery-grid button:nth-child(n) {
  aspect-ratio: 4/3;
  border-radius: 8px;
  grid-column: auto;
  height: auto;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.133);
}
.gallery-grid button:nth-child(n) img {
  object-position: center;
}
@media (max-width: 850px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-grid button:nth-child(n) {
    aspect-ratio: 4/3;
    border-radius: 10px;
    height: auto;
  }
}
.captcha-image {
  aspect-ratio: 30/13;
  height: auto;
  min-height: 220px;
  border-radius: 10px;
}
.captcha-piece {
  aspect-ratio: 1;
  transform: none;
  width: 9.333% !important;
  height: auto !important;
}
@media (max-width: 850px) {
  .captcha-image {
    min-height: 0;
  }
  .map-card.interactive iframe {
    pointer-events: auto;
  }
}

/* Touch maps remain scrollable; open the full map in a separate tab. */
@media (max-width: 850px), (any-pointer: coarse) {
  .map-card iframe,
  .map-card.interactive iframe {
    pointer-events: none;
  }
  .map-card { touch-action: pan-y pinch-zoom; }
  .map-interaction { display: block; }
}

.call-dialog {
  width: min(560px, calc(100% - 24px));
  max-height: 90dvh;
  overflow-y: auto;
  padding: 24px;
  margin: auto;
  color: #f5f5f3;
  background: #171b20;
  border: 1px solid #444;
  border-radius: 16px;
}
.call-dialog::backdrop { background: rgb(0 0 0 / 75%); }
.call-dialog h2 { padding-right: 30px; font-size: 26px; }
.call-dialog > p { margin: 12px 0; }
.call-close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px 14px;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}
.call-dialog .captcha-image { min-height: 0; }
.call-dialog [hidden] { display: none !important; }
.call-dialog .captcha { margin: 16px 0; }

/* Granular consent settings */
.cookie-banner > div:last-child {
  grid-template-columns: repeat(3, max-content);
}
.cookie-dialog {
  color: #f5f5f3;
  background: #171b20;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  width: min(620px, calc(100% - 32px));
  height: auto;
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}
.cookie-dialog::backdrop {
  background: rgba(5, 7, 9, 0.72);
  backdrop-filter: blur(5px);
}
.cookie-dialog form {
  padding: 26px;
}
.cookie-dialog-head {
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  display: flex;
}
.cookie-dialog-head span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 800;
}
.cookie-dialog h2 {
  margin: 5px 0 0;
  font-size: 30px;
}
.cookie-dialog-head > button {
  color: #fff;
  cursor: pointer;
  background: #2b3037;
  border: 0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 23px;
}
.cookie-dialog > form > p {
  color: #afb4ba;
  margin: 14px 0 22px;
  line-height: 1.5;
}
.cookie-option {
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  background: #20252b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  padding: 16px;
  display: flex;
}
.cookie-option.locked {
  cursor: default;
  opacity: 0.76;
}
.cookie-option strong,
.cookie-option small {
  display: block;
}
.cookie-option strong {
  margin-bottom: 4px;
  font-size: 15px;
}
.cookie-option small {
  color: #aeb4bb;
  line-height: 1.4;
}
.cookie-option input {
  accent-color: var(--red);
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 0;
}
.cookie-dialog-actions {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
  display: grid;
}
.cookie-dialog .ghost {
  color: #fff;
  background: #30363d;
  border-color: #6f7780;
}
.photo-warning {
  color: #9299a1;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 8px;
  display: block;
  font-size: 11px;
  line-height: 1.45;
}
@media (max-width: 850px) {
  .cookie-banner > div:last-child {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner [data-cookie-accept] {
    grid-column: 1 / -1;
  }
  .cookie-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 88px);
    margin-bottom: 78px;
  }
  .cookie-dialog form {
    padding: 18px;
  }
  .cookie-dialog h2 {
    font-size: 24px;
  }
  .cookie-dialog-actions {
    grid-template-columns: 1fr;
  }
}

/* Replaceable mobile campaign offer */
.hero-promo {
  display: none;
}
@media (max-width: 850px) {
  .hero-promo {
    z-index: 3;
    color: #fff;
    background: rgba(13, 16, 20, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid var(--red);
    border-radius: 0 12px 12px 0;
    width: min(330px, calc(100% - 48px));
    padding: 14px 16px;
    display: flex;
    position: absolute;
    top: 92px;
    left: 0;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  }
  .hero-promo span {
    color: #ff6b65;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 9px;
    font-weight: 900;
  }
  .hero-promo strong {
    margin-top: 5px;
    font-size: 20px;
    line-height: 1.1;
  }
  .hero-promo small {
    color: #d0d3d6;
    margin-top: 4px;
    font-size: 11px;
  }
  .hero-promo b {
    color: #fff;
    margin-top: 10px;
    font-size: 11px;
  }
}

[data-max-link][hidden] { display: none !important; }
.mobile-bar:has([data-max-link]:not([hidden])) {
  grid-template-columns: 1fr 1.5fr 0.7fr;
}
