:root {
  --paper: #eaff3f;
  --cream: #fff8fb;
  --ink: #181611;
  --muted: #655d51;
  --line: #191711;
  --pink: #ff3ea5;
  --pink-deep: #b60067;
  --pink-soft: #f7d5e4;
  --green: #94c72d;
  --green-deep: #496716;
  --lime: #eaff3f;
  --black: #10100d;
  --shadow: rgb(16 16 13 / 0.18);
  --shadow-soft: rgb(16 16 13 / 0.08);
  --white-soft: rgb(255 253 248 / 0.86);
  --black-soft: rgb(16 16 13 / 0.58);
  --font-display: "Unbounded", "Arial Black", "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-blob: "Rubik Bubbles", "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-body: "Avenir Next", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", ui-monospace, monospace;
  --container: 1180px;
  --gutter: 24px;
  --radius: 8px;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/unbounded-700.ttf") format("truetype");
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/unbounded-900.ttf") format("truetype");
}

@font-face {
  font-family: "Rubik Bubbles";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/rubik-bubbles.ttf") format("truetype");
}

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

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

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgb(234 255 63 / 0.92), rgb(255 62 165 / 0.26)),
    url("/assets/pattern-pink.jpg"),
    var(--paper);
  background-size: auto, 430px auto, auto;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button,
input,
select,
textarea {
  font: inherit;
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

body.has-modal {
  overflow: hidden;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: 86px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - calc(var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
}

.band {
  background:
    linear-gradient(135deg, rgb(255 248 251 / 0.9), rgb(234 255 63 / 0.86)),
    url("/assets/pattern-green.jpg");
  background-size: auto, 360px auto;
  border-block: 2px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 32px, 1320px);
  min-height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.desktop-nav a,
.header-phone {
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a:hover,
.header-phone:hover,
.site-footer a:hover {
  color: var(--pink);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--pink);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  background: color-mix(in oklab, var(--pink) 88%, var(--cream));
}

.btn-light {
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  color: var(--black);
  border-color: var(--ink);
}

.btn-light:hover {
  background: var(--cream);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--lime), color-mix(in oklab, var(--pink) 36%, var(--lime))),
    var(--lime);
  border-bottom: 2px solid var(--line);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(234 255 63 / 0.98) 0%, rgb(234 255 63 / 0.9) 38%, rgb(255 62 165 / 0.2) 64%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 11px;
  background: repeating-linear-gradient(90deg, var(--pink) 0 72px, var(--green) 72px 144px, var(--cream) 144px 216px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding: 78px 0 92px;
  color: var(--ink);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--pink-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green-deep);
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  max-width: 860px;
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 650px;
  margin-top: 24px;
  color: color-mix(in oklab, var(--ink) 80%, var(--green-deep));
  font-size: 20px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions.center {
  justify-content: center;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--cream) 72%, transparent);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.messenger-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.messenger-pills a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

.messenger-pills a:hover {
  background: var(--lime);
}

.trust-grid,
.estimate-grid,
.faq-grid,
.reviews-layout,
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 64px;
  align-items: start;
}

.trust-grid h2,
.faq-grid h2,
.reviews-copy h2,
.estimate-grid h2 {
  max-width: 640px;
}

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

.trust-list article,
.service-card,
.estimate-form,
.faq-list details,
.quote-grid blockquote {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}

.trust-list article {
  min-height: 210px;
  padding: 22px;
}

.mark {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-deep);
  font-family: var(--font-blob);
  font-size: 40px;
  line-height: 1;
}

.trust-list p,
.service-card p,
.section-head p,
.reviews-copy p,
.estimate-grid p,
.faq-list p,
.final-inner p,
.site-footer p {
  color: var(--muted);
}

.trust-list h3,
.service-card h3 {
  margin-bottom: 10px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head.compact {
  max-width: 860px;
  display: block;
}

.section-head.compact p:last-child {
  max-width: 660px;
  margin-top: 16px;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: auto;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 50%;
  opacity: 0.34;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card.wide-card {
  grid-column: span 2;
  background:
    linear-gradient(90deg, color-mix(in oklab, var(--green) 18%, transparent), transparent),
    var(--cream);
}

.service-card p {
  margin-top: 12px;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--green-deep);
  background: color-mix(in oklab, var(--green) 10%, transparent);
  font-size: 13px;
  font-weight: 800;
}

.price-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.price-intro p {
  color: var(--muted);
  font-size: 18px;
}

.price-intro .btn {
  margin-top: 24px;
}

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

.price-category {
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}

.price-category.accent {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8fb 0%, #ff8bc7 52%, #fff8fb 100%);
}

.price-category.accent::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/pattern-pink.jpg") center / 520px auto;
  opacity: 0.14;
}

.price-category.accent > * {
  position: relative;
  z-index: 1;
}

.price-category.accent .price-line {
  margin-inline: -8px;
  padding-inline: 8px;
  background: rgb(255 248 251 / 0.72);
}

.price-category.accent .price-line span,
.price-category.accent p {
  color: var(--ink);
}

.price-category.accent p {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: rgb(255 248 251 / 0.82);
  padding: 12px;
  font-weight: 700;
}

.price-category h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 22px;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.price-line span {
  color: var(--muted);
}

.price-line strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-family: var(--font-blob);
  font-size: 22px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.price-category p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 620px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border: 1px solid color-mix(in oklab, var(--cream) 55%, transparent);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--black) 64%, transparent);
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
}

.quote-grid {
  display: grid;
  gap: 16px;
}

.quote-grid blockquote {
  margin: 0;
  padding: 24px;
}

.quote-grid p {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.12;
}

.quote-grid cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.review-strip {
  display: flex;
  gap: 14px;
  width: min(100% - 48px, 1320px);
  margin: 44px auto 0;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.review-strip:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 6px;
}

.review-thumb {
  width: 300px;
  height: 360px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--ink);
  scroll-snap-align: start;
}

.review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.review-thumb:hover img {
  transform: scale(1.03);
}

.estimate-grid {
  align-items: stretch;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  width: fit-content;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  padding: 8px 12px;
  font-weight: 800;
}

.contact-links a:hover {
  background: var(--lime);
}

.estimate-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.estimate-form label {
  display: grid;
  gap: 8px;
}

.estimate-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.estimate-form .btn span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  outline: 3px solid color-mix(in oklab, var(--green) 32%, transparent);
  border-color: var(--green-deep);
}

.estimate-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 20px 20px;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(135deg, rgb(255 62 165 / 0.82), rgb(234 255 63 / 0.78)),
    url("/assets/pattern-pink.jpg");
  background-size: auto, 380px auto;
}

.final-inner {
  max-width: 760px;
}

.final-inner img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.final-inner p {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 18px;
}

.site-footer {
  padding: 46px 0 96px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 460px;
  color: color-mix(in oklab, var(--cream) 72%, transparent);
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-title {
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-contact {
  position: fixed;
  z-index: 40;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  box-shadow: 0 18px 40px var(--shadow);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(130%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-contact a {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--cream);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.mobile-contact a:nth-child(2) {
  background: var(--pink);
  color: var(--ink);
}

.mobile-contact a:nth-child(3) {
  background: var(--green);
  color: var(--ink);
}

.media-modal[hidden] {
  display: none;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 70px 20px 24px;
  background: rgb(16 16 13 / 0.82);
}

.media-modal img {
  max-width: min(94vw, 920px);
  max-height: 84vh;
  object-fit: contain;
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--pink);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-phone {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .service-grid,
  .price-catalog,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --gutter: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    width: min(100% - 36px, 1180px);
    padding: 64px 0 78px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .section-head,
  .trust-grid,
  .price-intro,
  .estimate-grid,
  .faq-grid,
  .reviews-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .service-card.wide-card {
    grid-column: span 1;
  }

  .gallery-item,
  .gallery-item.tall {
    min-height: 430px;
    grid-row: auto;
  }

  .mobile-contact {
    display: grid;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 62px;
    width: min(100% - 24px, 1320px);
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-phone {
    font-size: 13px;
  }

  .hero-media img {
    object-position: 54% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgb(234 255 63 / 0.94) 0%, rgb(234 255 63 / 0.82) 55%, rgb(255 62 165 / 0.36) 100%);
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions.center {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-points {
    display: grid;
  }

  .service-grid,
  .price-catalog,
  .gallery {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .price-intro p {
    font-size: 16px;
  }

  .price-category {
    padding: 18px;
  }

  .price-line strong {
    font-size: 19px;
  }

  .review-strip {
    width: min(100% - 28px, 1320px);
  }

  .review-thumb {
    width: 260px;
    height: 330px;
  }
}
