    :root {
      --bg: #f4efe6;
      --bg-soft: #e8dece;
      --sand: #d4c1a0;
      --earth: #8b6947;
      --ink: #1b1815;
      --ink-soft: rgba(27, 24, 21, 0.72);
      --line: rgba(27, 24, 21, 0.12);
      --accent: #b85c2f;
      --accent-dark: #87411f;
      --white: #fffdf9;
      --shadow: 0 16px 40px rgba(39, 28, 17, 0.12);
      --radius: 22px;
      --content: min(1140px, calc(100vw - 48px));
      --header-h: 72px;
      --transition: 240ms ease;
    }

    body {
      min-width: 320px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      font-size: 16px;
      color: var(--ink);
      line-height: 1.6;
      text-wrap: pretty;
      overflow-wrap: break-word;
      hyphens: manual;
      background:
        radial-gradient(circle at top left, rgba(212, 193, 160, 0.5), transparent 32%),
        linear-gradient(180deg, #f7f3ec 0%, #efe5d5 100%);
    }

    img,
    video {
      display: block;
      width: 100%;
    }

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

    p,
    h1,
    h2,
    h3,
    summary,
    strong,
    span,
    li {
      word-break: normal;
      overflow-wrap: normal;
    }

    .contact-line a,
    .footer-links a {
      overflow-wrap: anywhere;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .page-shell {
      position: relative;
      overflow: clip;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
    }

    .site-header.is-solid {
      background: rgba(247, 243, 236, 0.88);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(27, 24, 21, 0.08);
    }

    .header-inner {
      width: var(--content);
      min-height: var(--header-h);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: grid;
      gap: 4px;
    }

    .brand-mark {
      font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 253, 249, 0.82);
      transition: color var(--transition);
    }

    .site-header.is-solid .brand-mark,
    .site-header.is-solid .brand-note,
    .site-header.is-solid .nav-link,
    .site-header.is-solid .header-phone {
      color: var(--ink);
    }

    .brand-note {
      max-width: 340px;
      font-size: 0.9rem;
      color: rgba(255, 253, 249, 0.86);
      transition: color var(--transition);
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
    }

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

    .nav-link,
    .header-phone {
      font-size: 0.9rem;
      color: var(--white);
      transition: color var(--transition), opacity var(--transition);
      white-space: nowrap;
    }

    .nav-link:hover,
    .header-phone:hover {
      opacity: 0.68;
    }

    .header-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      padding: 9px 13px;
      border-radius: 999px;
      border: 1px solid rgba(255, 253, 249, 0.24);
      background: rgba(255, 253, 249, 0.08);
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 700;
      transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    }

    .header-chip:hover {
      transform: translateY(-1px);
      background: rgba(255, 253, 249, 0.16);
    }

    .site-header.is-solid .header-chip {
      color: var(--ink);
      border-color: rgba(27, 24, 21, 0.12);
      background: rgba(27, 24, 21, 0.04);
    }

    .cta-inline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.92rem;
      font-weight: 700;
      transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
      cursor: pointer;
    }

    .cta-inline:hover {
      transform: translateY(-2px);
    }

    .cta-inline:active {
      transform: translateY(0) scale(0.98);
    }

    .cta-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 16px 30px rgba(184, 92, 47, 0.24);
    }

    .cta-primary:hover {
      background: var(--accent-dark);
    }

    .cta-soft {
      border-color: rgba(27, 24, 21, 0.12);
      background: rgba(255, 253, 249, 0.72);
      color: var(--ink);
    }

    .cta-soft:hover {
      background: rgba(255, 253, 249, 0.96);
    }

    .cta-ghost {
      border-color: rgba(255, 253, 249, 0.28);
      color: var(--white);
      background: rgba(255, 253, 249, 0.06);
    }

    .site-header.is-solid .cta-ghost {
      color: var(--ink);
      border-color: rgba(27, 24, 21, 0.14);
      background: rgba(27, 24, 21, 0.03);
    }

    .hero {
      min-height: 78svh;
      padding: calc(var(--header-h) + 18px) 0 28px;
      position: relative;
      display: flex;
      align-items: center;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(16, 13, 11, 0.72) 0%, rgba(16, 13, 11, 0.3) 46%, rgba(16, 13, 11, 0.18) 100%),
        linear-gradient(180deg, rgba(16, 13, 11, 0.14), rgba(16, 13, 11, 0.55)),
        url("media/бурение абиссинской скважины в доме 2.jpg") center center / cover no-repeat;
      background-attachment: scroll;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 180px;
      background: linear-gradient(180deg, transparent, rgba(16, 13, 11, 0.46));
      pointer-events: none;
    }

    .hero-inner {
      width: var(--content);
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      grid-template-areas:
        "top"
        "main"
        "actions"
        "meta";
      gap: 24px;
      align-items: center;
      justify-items: center;
    }

    .hero-top {
      grid-area: top;
      width: 100%;
      text-align: center;
    }

    .eyebrow {
      font-size: 0.76rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 253, 249, 0.72);
      margin-bottom: 14px;
      text-wrap: balance;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      font-family: "Montserrat", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      font-weight: 700;
      line-height: 1.08;
      text-wrap: balance;
    }

    h1 {
      max-width: none;
      font-size: clamp(1.9rem, 4.2vw, 3.35rem);
      margin-bottom: 0;
      letter-spacing: -0.03em;
    }

    .hero-main {
      grid-area: main;
      width: 100%;
      max-width: 760px;
      justify-self: center;
      text-align: center;
    }

    .hero-copy {
      max-width: 42rem;
      font-size: clamp(1rem, 1.4vw, 1.08rem);
      line-height: 1.65;
      color: rgba(255, 253, 249, 0.84);
      margin: 0;
    }

    .hero-actions {
      grid-area: actions;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin: 0;
    }

    .hero-meta {
      grid-area: meta;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 18px;
      font-size: 0.88rem;
      color: rgba(255, 253, 249, 0.84);
    }

    .hero-meta span {
      position: relative;
      padding-left: 16px;
    }

    .hero-meta span::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.48em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sand);
    }

    .section {
      width: var(--content);
      margin: 0 auto;
      padding: 72px 0;
    }

    .section-cta {
      padding-top: 0;
      padding-bottom: 28px;
    }

    .inline-cta {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px 24px;
      align-items: center;
      padding: 20px 22px;
      border-radius: 22px;
      background: rgba(255, 253, 249, 0.64);
      box-shadow: inset 0 0 0 1px rgba(27, 24, 21, 0.06);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .inline-cta-copy {
      display: grid;
      gap: 8px;
      text-align: left;
    }

    .inline-cta-copy strong {
      font-family: "Montserrat", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      font-size: 1.02rem;
      line-height: 1.3;
    }

    .inline-cta-copy p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .inline-cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .section-heading {
      max-width: 780px;
      margin-bottom: 24px;
      margin-inline: auto;
      text-align: center;
    }

    .section-kicker {
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent);
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(1.7rem, 3vw, 2.7rem);
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .section-lead {
      max-width: 42rem;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ink-soft);
      margin-inline: auto;
    }

    .indoor-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
      gap: 24px;
      align-items: stretch;
    }

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

    .media-panel {
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 520px;
      position: relative;
      box-shadow: var(--shadow);
      background: #271d14;
    }

    .media-panel img {
      height: 100%;
      object-fit: cover;
    }

    .media-caption {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px;
      display: flex;
      gap: 12px;
      align-items: flex-end;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 253, 249, 0.22);
      color: var(--white);
    }

    .media-caption strong {
      display: block;
      margin-bottom: 6px;
      font-size: 0.95rem;
    }

    .media-caption span {
      display: block;
      max-width: 18rem;
      font-size: 0.86rem;
      color: rgba(255, 253, 249, 0.72);
      line-height: 1.5;
    }

    .copy-panel {
      padding: 12px 0 0;
      display: grid;
      align-content: start;
      gap: 20px;
    }

    .large-claim {
      font-size: clamp(1.45rem, 2.4vw, 2.15rem);
      line-height: 1.2;
      max-width: 20ch;
      letter-spacing: -0.02em;
    }

    .text-block {
      display: grid;
      gap: 12px;
      color: var(--ink-soft);
      font-size: 0.98rem;
      line-height: 1.72;
    }

    .text-block p {
      margin: 0;
    }

    .point-list,
    .plain-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
      font-size: 0.95rem;
    }

    .point-list li,
    .plain-list li {
      padding: 12px 0;
      border-top: 1px solid var(--line);
      line-height: 1.55;
    }

    .plain-list li:last-child,
    .point-list li:last-child {
      border-bottom: 1px solid var(--line);
    }

    .price-strip {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      padding-top: 8px;
    }

    .price-item {
      padding: 14px 0 18px;
      border-top: 1px solid var(--ink);
    }

    .price-label {
      display: block;
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--ink-soft);
      margin-bottom: 14px;
    }

    .price-value {
      display: block;
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      line-height: 1;
      margin-bottom: 10px;
    }

    .price-note {
      font-size: 0.94rem;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    .notes-band {
      margin-top: 28px;
      padding: 20px 22px;
      border-radius: calc(var(--radius) - 8px);
      background: rgba(255, 253, 249, 0.56);
      box-shadow: inset 0 0 0 1px rgba(27, 24, 21, 0.06);
      display: grid;
      gap: 16px;
    }

    .notes-band strong {
      font-size: 0.94rem;
    }

    .notes-band p {
      margin: 0;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    .pricing-section {
      position: relative;
      overflow: visible;
      border-radius: 0;
      padding-inline: 28px;
      color: var(--white);
    }

    .pricing-section::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 100vw;
      background:
        linear-gradient(180deg, rgba(16, 13, 11, 0.56), rgba(16, 13, 11, 0.4)),
        url("media/Бурение абиссинской скважины.jpg") center center / cover no-repeat;
      transform: translateX(-50%);
      z-index: 0;
    }

    .pricing-section > * {
      position: relative;
      z-index: 1;
    }

    .pricing-section .section-kicker,
    .pricing-section .section-lead,
    .pricing-section .price-label,
    .pricing-section .price-note,
    .pricing-section .notes-band p {
      color: rgba(255, 253, 249, 0.86);
    }

    .pricing-section .section-kicker,
    .pricing-section .price-label {
      color: rgba(255, 253, 249, 0.72);
    }

    .pricing-section .price-item,
    .pricing-section .notes-band {
      border-color: rgba(255, 253, 249, 0.2);
    }

    .pricing-section .notes-band {
      background: rgba(255, 253, 249, 0.08);
      box-shadow: inset 0 0 0 1px rgba(255, 253, 249, 0.08);
    }

    .pricing-section .price-value,
    .pricing-section .notes-band strong {
      color: var(--white);
    }

    .service-ribbon {
      width: 100%;
      overflow: hidden;
      border-block: 1px solid rgba(27, 24, 21, 0.12);
      background: rgba(255, 253, 249, 0.34);
    }

    .service-track {
      display: flex;
      gap: 22px;
      width: max-content;
      padding: 14px 0;
      animation: marquee 28s linear infinite;
      font-size: 0.88rem;
      color: var(--ink-soft);
    }

    .service-track span::after {
      content: "•";
      margin-left: 22px;
      color: var(--accent);
    }

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

    .support-grid,
    .trust-grid,
    .gallery-grid,
    .reviews-grid {
      display: grid;
      gap: 20px;
    }

    .support-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: start;
    }

    .about-layout,
    .fit-grid,
    .scope-grid {
      display: grid;
      gap: 20px;
    }

    .about-layout {
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      align-items: center;
    }

    .about-media {
      position: relative;
      min-height: 460px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #21170f;
    }

    .about-media img {
      height: 100%;
      object-fit: cover;
    }

    .about-copy {
      padding-top: 8px;
    }

    .about-copy p {
      margin: 0 0 14px;
      max-width: 42rem;
      line-height: 1.7;
      color: var(--ink-soft);
    }

    .fit-grid,
    .scope-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .support-item {
      padding-top: 14px;
      border-top: 1px solid var(--ink);
    }

    .support-item strong {
      display: block;
      margin-bottom: 10px;
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--ink-soft);
    }

    .support-item p,
    .support-item ul {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.65;
    }

    .support-item ul {
      padding-left: 16px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
    }

    .process-step {
      padding-top: 14px;
      border-top: 1px solid var(--ink);
    }

    .process-step span {
      display: block;
      margin-bottom: 12px;
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--accent);
    }

    .process-step strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1.12rem;
      line-height: 1.25;
    }

    .process-step p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    .gallery-carousel {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .gallery-viewport {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      box-shadow: var(--shadow);
      background: #201710;
      touch-action: pan-y;
    }

    .gallery-track {
      display: flex;
      transition: transform 320ms ease;
      will-change: transform;
    }

    .gallery-slide {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 100%;
      min-width: 100%;
      height: clamp(360px, 68svh, 760px);
      margin: 0;
      overflow: hidden;
      background: #201710;
    }

    .gallery-slide::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 26%;
      background: linear-gradient(180deg, transparent, rgba(16, 13, 11, 0.78));
      pointer-events: none;
    }

    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 16px 16px 84px;
      background: #201710;
    }

    .gallery-slide-copy {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 20px;
      z-index: 1;
      display: grid;
      gap: 6px;
      color: var(--white);
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(20, 16, 12, 0.48);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .gallery-slide-copy strong {
      display: block;
      font-size: 1.22rem;
      line-height: 1.2;
    }

    .gallery-slide-copy span {
      display: block;
      max-width: 34rem;
      font-size: 0.92rem;
      line-height: 1.55;
      color: rgba(255, 253, 249, 0.84);
    }

    .gallery-controls {
      display: flex;
      justify-content: center;
      padding-top: 2px;
    }

    .gallery-nav {
      position: absolute;
      top: calc(50% - 22px);
      z-index: 2;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 253, 249, 0.24);
      border-radius: 999px;
      background: rgba(20, 16, 12, 0.48);
      color: var(--white);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition);
    }

    .gallery-nav:hover {
      background: rgba(20, 16, 12, 0.72);
      transform: translateY(-1px);
    }

    .gallery-nav[data-carousel-prev] {
      left: 16px;
    }

    .gallery-nav[data-carousel-next] {
      right: 16px;
    }

    .gallery-dots {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .gallery-dot {
      width: 9px;
      height: 9px;
      border: 0;
      border-radius: 999px;
      background: rgba(27, 24, 21, 0.22);
      cursor: pointer;
      transition: transform var(--transition), background var(--transition);
    }

    .gallery-dot.is-active {
      background: var(--accent);
      transform: scale(1.2);
    }

    .reviews-carousel {
      justify-items: center;
    }

    .reviews-viewport {
      width: min(100%, 560px);
      border-radius: 22px;
      background: rgba(255, 253, 249, 0.54);
    }

    .review-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      height: clamp(520px, 82svh, 920px);
      background: rgba(255, 253, 249, 0.7);
    }

    .review-slide::after {
      display: none;
    }

    .review-slide img {
      width: auto;
      max-width: 100%;
      height: 100%;
      max-height: 100%;
      object-fit: contain;
      padding: 12px;
      background: transparent;
    }

    .reviews-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .review-card {
      background: rgba(255, 253, 249, 0.6);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(27, 24, 21, 0.05);
    }

    .review-card img {
      aspect-ratio: 9 / 16;
      object-fit: cover;
      background: #d7cec0;
    }

    .review-card p {
      margin: 0;
      padding: 14px 16px 18px;
      font-size: 0.92rem;
      line-height: 1.55;
      color: var(--ink-soft);
    }

    .trust-grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: start;
    }

    .guarantee-block,
    .limits-block {
      padding-top: 14px;
      border-top: 1px solid var(--ink);
    }

    .guarantee-block p,
    .limits-block p {
      margin: 0 0 14px;
      font-size: 0.96rem;
      line-height: 1.68;
      color: var(--ink-soft);
    }

    .guarantee-block strong,
    .limits-block strong {
      display: block;
      margin-bottom: 14px;
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--accent);
    }

    .faq-list {
      display: grid;
      gap: 10px;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
      gap: 28px;
      align-items: start;
    }

    .faq-media {
      margin: 0;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #231912;
      align-self: stretch;
    }

    .faq-media img {
      width: 100%;
      height: 100%;
      min-height: 620px;
      object-fit: cover;
      object-position: center;
    }

    details {
      border-top: 1px solid var(--ink);
      padding-top: 14px;
    }

    details:last-child {
      border-bottom: 1px solid var(--line);
      padding-bottom: 14px;
    }

    summary {
      list-style: none;
      cursor: pointer;
      font-size: 1.02rem;
      line-height: 1.45;
      padding-right: 36px;
      position: relative;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      position: absolute;
      right: 0;
      top: -2px;
      font-size: 1.35rem;
      color: var(--accent);
      transition: transform var(--transition);
    }

    details[open] summary::after {
      transform: rotate(45deg);
    }

    details p {
      margin: 14px 0 0;
      max-width: 44rem;
      font-size: 0.96rem;
      color: var(--ink-soft);
      line-height: 1.68;
    }

    .contact-wrap {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: #15110f;
    }

    .contact-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(16, 13, 11, 0.2), rgba(16, 13, 11, 0.42)),
        url("media/бурение абиссинской скважины в доме 2.jpg") center center / cover no-repeat;
      transform: scale(1.03);
      z-index: 0;
      background-repeat: no-repeat;
      transition: none;
    }

    .contact-wrap .section {
      position: relative;
      z-index: 1;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
      gap: 28px;
      align-items: start;
      min-height: 560px;
    }

    .contact-copy h2,
    .contact-copy p,
    .contact-copy .section-kicker {
      color: inherit;
    }

    .contact-copy .section-kicker {
      opacity: 0.74;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }

    .contact-line {
      display: flex;
      gap: 10px;
      align-items: baseline;
      flex-wrap: wrap;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 253, 249, 0.547);
    }

    .contact-line span {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      opacity: 1;
      color: rgba(255, 253, 249, 0.9);
    }

    .contact-line a,
    .contact-line strong {
      font-size: 1rem;
      font-weight: 400;
    }

    .contact-form {
      position: relative;
      background: rgba(255, 253, 249, 0.33);
      color: var(--ink);
      border-radius: 22px;
      padding: 14px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 253, 249, 0.22);
      overflow: hidden;
      transition: box-shadow var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
    }

    .contact-form:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 48px rgba(39, 28, 17, 0.16);
    }

    .contact-form.is-submitting {
      box-shadow: 0 20px 44px rgba(184, 92, 47, 0.14);
    }

    .contact-form.is-success {
      box-shadow: 0 20px 44px rgba(52, 127, 78, 0.18);
    }

    .contact-form.is-error {
      box-shadow: 0 20px 44px rgba(184, 92, 47, 0.18);
      animation: formShake 320ms ease;
    }

    .contact-form-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      align-items: center;
      padding: 14px 18px;
      border: 0;
      border-radius: 999px;
      background:
        linear-gradient(135deg, rgba(255, 253, 249, 0.9), rgba(255, 248, 240, 0.68));
      color: var(--ink);
      text-align: center;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .contact-form-toggle:hover {
      background:
        linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(255, 247, 238, 0.72));
      box-shadow: inset 0 0 0 1px rgba(184, 92, 47, 0.14);
    }

    .contact-form-title {
      font-family: "Montserrat", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      font-size: 0.98rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--ink);
      text-align: center;
    }

    .contact-form-toggle-icon {
      position: relative;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(184, 92, 47, 0.12);
      color: var(--accent);
      flex: 0 0 auto;
    }

    .contact-form-toggle-icon::before,
    .contact-form-toggle-icon::after {
      content: "";
      position: absolute;
      width: 14px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform var(--transition), opacity var(--transition);
    }

    .contact-form-toggle-icon::after {
      transform: rotate(90deg);
    }

    .contact-form.is-open .contact-form-toggle-icon::after {
      opacity: 0;
      transform: rotate(90deg) scaleX(0.2);
    }

    .contact-form.is-open .contact-form-toggle {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      width: 32px;
      height: 32px;
      margin-bottom: 0;
      padding: 0;
      justify-content: center;
      box-shadow: none;
      border-radius: 999px;
      background: rgba(27, 24, 21, 0.08);
      color: rgba(27, 24, 21, 0.54);
    }

    .contact-form.is-open .contact-form-title {
      display: none;
    }

    .contact-form.is-open .contact-form-toggle:hover {
      background: rgba(27, 24, 21, 0.12);
    }

    .contact-form-body {
      display: grid;
      gap: 0;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateY(-8px);
      transition: max-height 360ms ease, opacity 240ms ease, padding var(--transition), transform 320ms ease;
      padding: 0 10px;
    }

    .contact-form.is-open .contact-form-body {
      max-height: 1200px;
      opacity: 1;
      transform: translateY(0);
      padding: 2px 10px 10px;
    }

    .contact-form.is-open .contact-form-toggle-icon {
      width: 32px;
      height: 32px;
      background: transparent;
      color: rgba(27, 24, 21, 0.52);
    }

    .contact-form.is-open .contact-form-toggle-icon::before,
    .contact-form.is-open .contact-form-toggle-icon::after {
      width: 10px;
    }

    .contact-form h3 {
      font-size: 1.45rem;
      margin-bottom: 10px;
    }

    .contact-form p {
      margin: 0 0 20px;
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    .form-grid {
      display: grid;
      gap: 12px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field label {
      font-size: 0.8rem;
      color: var(--ink-soft);
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(27, 24, 21, 0.16);
      border-radius: 14px;
      background: rgba(255, 253, 251, 0.92);
      padding: 12px 14px;
      color: var(--ink);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .field input:focus,
    .field textarea:focus {
      outline: none;
      border-color: rgba(184, 92, 47, 0.45);
      box-shadow: 0 0 0 4px rgba(184, 92, 47, 0.1);
    }

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

    .form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-top: 8px;
    }

    .form-note,
    .form-status {
      font-size: 0.84rem;
      line-height: 1.55;
      color: var(--ink-soft);
    }

    .form-status {
      min-height: 1.4em;
    }

    .form-status.is-success {
      color: #2f6b46;
    }

    .form-status.is-error {
      color: #9b4723;
    }

    .submit-spinner {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.34);
      border-top-color: var(--white);
      animation: spin 0.8s linear infinite;
    }

    .site-footer {
      width: var(--content);
      margin: 0 auto;
      padding: 24px 0 96px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 0.88rem;
      color: var(--ink-soft);
      align-items: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .footer-links a {
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

    .mobile-fab-stack {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 30;
      display: none;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }

    .mobile-call-fab {
      position: static;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
      padding: 0;
      border-radius: 999px;
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 14px 28px rgba(184, 92, 47, 0.34);
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 0;
      text-decoration: none;
    }

    .mobile-call-fab:hover {
      background: var(--accent-dark);
    }

    .mobile-max-fab {
      background: #2f6b46;
      box-shadow: 0 14px 28px rgba(47, 107, 70, 0.28);
    }

    .mobile-max-fab:hover {
      background: #255638;
    }

    .mobile-call-fab svg {
      display: block;
      width: 25px;
      height: 25px;
      flex: 0 0 auto;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    @keyframes formShake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-4px); }
      75% { transform: translateX(4px); }
    }

    .reveal-delay-1 { transition-delay: 80ms; }
    .reveal-delay-2 { transition-delay: 160ms; }
    .reveal-delay-3 { transition-delay: 240ms; }

    @media (max-width: 1240px) {
      :root {
        --content: min(1080px, calc(100vw - 40px));
      }

      .header-inner {
        gap: 12px;
      }

      .brand-note {
        max-width: 260px;
        font-size: 0.84rem;
      }

      .header-nav {
        gap: 12px;
      }

      .nav-link,
      .header-phone {
        font-size: 0.84rem;
      }

      .hero-inner {
        gap: 24px;
      }

      h1 {
        font-size: clamp(1.85rem, 3.8vw, 3rem);
      }

      h2 {
        font-size: clamp(1.55rem, 2.7vw, 2.35rem);
      }
    }

    @media (max-width: 1080px) {
      .hero-inner,
      .indoor-layout,
      .about-layout,
      .faq-layout,
      .contact-layout,
      .trust-grid {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
          "top"
          "main"
          "actions"
          "meta";
      }

      .hero-main {
        justify-self: start;
        max-width: none;
      }

      .header-inner {
        gap: 10px;
      }

      .brand-note {
        display: none;
      }

      .header-nav {
        gap: 10px;
      }

      .nav-link {
        display: none;
      }

      .site-footer {
        justify-content: center;
        text-align: center;
      }

      .contact-layout {
        min-height: 0;
      }

      .support-grid,
      .fit-grid,
      .scope-grid,
      .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      :root {
        --content: min(100vw - 24px, 1000px);
        --header-h: 64px;
        --radius: 18px;
      }

      .header-inner {
        gap: 8px;
      }

      .header-phone {
        display: none;
      }

      .site-header {
        background: rgba(247, 243, 236, 0.92);
        backdrop-filter: blur(14px);
        box-shadow: 0 1px 0 rgba(27, 24, 21, 0.08);
      }

      .site-header .brand-mark,
      .site-header .header-chip {
        color: var(--ink);
      }

      .site-header .header-chip {
        border-color: rgba(27, 24, 21, 0.12);
        background: rgba(27, 24, 21, 0.04);
      }

      .header-links {
        gap: 6px;
      }

      .header-chip {
        min-width: 38px;
        padding: 8px 10px;
        font-size: 0.76rem;
      }

      .hero {
        min-height: 84svh;
        padding-top: calc(var(--header-h) + 10px);
        padding-bottom: 28px;
        align-items: center;
        background:
          linear-gradient(180deg, rgba(16, 13, 11, 0.2) 0%, rgba(16, 13, 11, 0.36) 42%, rgba(16, 13, 11, 0.72) 100%),
          url("media/я в процессе бурения 5.jpg") center top / cover no-repeat;
      }

      .hero-inner {
        gap: 18px;
        justify-items: stretch;
      }

      .service-ribbon {
        display: none;
      }

      .eyebrow {
        display: block;
        max-width: 100%;
        margin: 0 auto 10px;
        font-size: 0.68rem;
        line-height: 1.45;
        letter-spacing: 0.1em;
        text-align: center;
      }

      h1 {
        max-width: none;
        font-size: clamp(1.85rem, 8vw, 2.4rem);
        line-height: 1.12;
        text-align: center;
        margin-inline: auto;
        width: 100%;
      }

      .hero-main {
        width: 100%;
        justify-self: stretch;
        text-align: center;
      }

      .section {
        padding: 56px 0;
      }

      .pricing-section {
        padding-inline: 16px;
      }

      .hero-copy,
      .section-lead,
      .text-block,
      .support-item p,
      .process-step p,
      details p,
      .contact-form p {
        font-size: 0.94rem;
        line-height: 1.62;
        text-align: center;
      }

      .hero-copy {
        margin: 12px auto 0;
        max-width: 34rem;
      }

      .text-block,
      .point-list,
      .contact-list,
      .guarantee-block,
      .limits-block {
        text-align: left;
      }

      .hero-actions,
      .form-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .inline-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px;
      }

      .inline-cta-copy {
        text-align: center;
      }

      .inline-cta-actions {
        justify-content: center;
      }

      .cta-inline {
        width: 100%;
        justify-content: center;
      }

      .hero-meta {
        flex-direction: column;
        gap: 8px 14px;
      }

      .hero-meta span {
        padding-left: 14px;
      }

      .section-heading {
        margin-bottom: 20px;
      }

      h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        text-align: center;
      }

      h3,
      .large-claim,
      .gallery-slide-copy strong,
      .process-step strong,
      .contact-form h3,
      summary {
        text-align: center;
      }

      .large-claim {
        margin-inline: auto;
      }

      .media-panel,
      .faq-media img {
        min-height: 300px;
      }

      .support-grid,
      .fit-grid,
      .scope-grid,
      .reviews-grid,
      .price-strip,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .gallery-slide {
        height: clamp(260px, 48svh, 420px);
      }

      .faq-media {
        display: none;
      }

      .reviews-viewport {
        width: min(100%, 420px);
      }

      .review-slide {
        height: clamp(420px, 74svh, 760px);
      }

      .review-slide img {
        padding: 8px;
      }

      .gallery-slide img {
        padding: 10px 10px 76px;
      }

      .gallery-slide-copy {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 10px 12px;
      }

      .gallery-slide-copy strong {
        font-size: 1rem;
      }

      .gallery-slide-copy span {
        font-size: 0.86rem;
      }

      .gallery-nav {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
        top: calc(50% - 19px);
      }

      .gallery-nav[data-carousel-prev] {
        left: 10px;
      }

      .gallery-nav[data-carousel-next] {
        right: 10px;
      }

      .contact-form {
        padding: 12px;
      }

      .contact-form-toggle {
        padding: 13px 16px;
      }

      .contact-form-title {
        font-size: 0.92rem;
      }

      .contact-form-toggle-icon {
        width: 38px;
        height: 38px;
      }

      .contact-wrap::before {
        inset: 0;
        background:
          linear-gradient(180deg, rgba(16, 13, 11, 0.48), rgba(16, 13, 11, 0.3)),
          url("media/абиссинская скважина в доме 6.jpg") center center / cover no-repeat;
        transform: none;
      }

      .contact-layout {
        gap: 20px;
      }

      .notes-band {
        background: rgba(255, 253, 249, 0.16);
        box-shadow: inset 0 0 0 1px rgba(255, 253, 249, 0.18);
      }

      .site-footer {
        padding-bottom: 32px;
        justify-content: center;
        text-align: center;
      }

      .footer-links,
      .header-links,
      .contact-line {
        flex-wrap: wrap;
        justify-content: center;
      }

      .contact-line a,
      .contact-line strong,
      .header-phone {
        font-size: 0.92rem;
      }

      summary {
        font-size: 0.98rem;
        line-height: 1.4;
      }

      .mobile-fab-stack {
        display: flex;
      }
    }

    @media (max-width: 520px) {
      :root {
        --content: min(100vw - 20px, 1000px);
      }

      .header-inner {
        min-height: 60px;
      }

      .brand-mark {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
      }

      h1 {
        font-size: clamp(1.65rem, 8.2vw, 2.1rem);
      }

      h2 {
        font-size: 1.32rem;
      }

      .section {
        padding: 44px 0;
      }

      .site-footer {
        font-size: 0.82rem;
      }
    }

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

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }
    }
