:root {
  --bg: #f8fdfb;
  --ink: #121212;
  --muted: #5f5f5f;
  --mint: #76efba;
  --mint-strong: #60decb;
  --line: #77ebba;
  --footer: #1f1f1f;
  --safe-edge: 4px;
  --header-edge: 12px;
  --header-height: 66px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: var(--header-height);
  background: #ffffff;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

.topbar,
.footer {
  background: var(--footer);
  color: #ffffff;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 70;
  min-height: var(--header-height);
}

.brand-link {
  position: absolute;
  left: var(--header-edge);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.topbar-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(12px, 3.3vw, 14px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.topbar-messengers {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: clamp(106px, 21vw, 250px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--mint), var(--mint-strong));
  color: #10271f;
  text-decoration: none;
  line-height: 0;
}

.messenger-btn--tg {
  background: linear-gradient(135deg, var(--mint), var(--mint-strong));
}

.messenger-btn--wa {
  background: linear-gradient(135deg, var(--mint), var(--mint-strong));
}

.messenger-btn--vb {
  background: linear-gradient(135deg, var(--mint), var(--mint-strong));
}

.messenger-btn--ig {
  background: linear-gradient(135deg, var(--mint), var(--mint-strong));
}

.messenger-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.messenger-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.brand-image {
  display: block;
  height: auto;
}

.brand-image--small {
  width: 28px;
}

.menu-button {
  position: absolute;
  right: var(--header-edge);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  justify-items: end;
  gap: 5px;
  width: 28px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.menu-button span {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 240ms ease, opacity 200ms ease;
  transform-origin: center;
}

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

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

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

.burger-menu {
  position: fixed;
  top: var(--header-height);
  left: var(--safe-edge);
  right: var(--safe-edge);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  display: flex;
  justify-content: center;
}

.burger-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.burger-menu-nav {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 18px 0 22px;
  background: var(--footer);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-top: -1px;
  transform: translateY(-120%);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.burger-menu.is-open .burger-menu-nav {
  transform: translateY(0);
}

.burger-menu-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.service-page {
  --card-side-gap: 26px;
  width: min(960px, calc(100% - 24px));
  margin: 0 auto;
  padding: 48px 0 var(--card-side-gap);
}

.service-card {
  width: calc(100% - (var(--card-side-gap) * 2));
  margin: 0 auto;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 34px rgba(48, 200, 194, 0.32), 0 0 72px rgba(48, 200, 194, 0.24),
    0 0 120px rgba(48, 200, 194, 0.16);
  overflow: hidden;
}

.service-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}

.service-photo-wrap {
  background: #ffffff;
  min-height: 290px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.service-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
}

.service-content {
  padding: 26px 24px 28px;
}

.service-title {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.service-description {
  margin: 18px 0 0;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.52;
}

.service-extra {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 46px;
  padding: 10px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--mint-strong));
  color: #10271f;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.services-section {
  width: calc(100% - 20px);
  margin: 10px auto 30px;
}

.services-title {
  margin: 0 0 16px;
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(18px, 3.4vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-marquee {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  overflow: hidden;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}

.services-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.services-marquee.is-dragging {
  cursor: grabbing;
}

.services-marquee.is-dragging .service-pill,
.services-marquee.is-dragging .services-marquee-group span {
  user-select: none;
}

.services-marquee-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  flex-shrink: 0;
}

.services-marquee-group span,
.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7df1bc, #5ddcca);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

.service-pill {
  color: #10271f;
  text-decoration: none;
}

.service-pill:focus-visible {
  outline: 2px solid #10271f;
  outline-offset: 2px;
}

.service-footer {
  margin-top: 16px;
  color: #636363;
  font-size: 12px;
  text-align: center;
}

.footer {
  padding: 18px 18px 20px;
  text-align: center;
}

.footer a,
.footer a:visited,
.footer a:hover,
.footer a:active {
  color: inherit;
  text-decoration: none;
}

.footer a[href^="x-apple-data-detectors"],
.footer a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  text-decoration: none;
}

.footer-instagram svg {
  width: 24px;
  height: 24px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.4;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.footer-brand-text {
  font-family: "Archivo Black", sans-serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.quick-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.quick-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 18, 18, 0.04);
}

.quick-modal-dialog {
  position: relative;
  width: min(calc(100vw - (var(--safe-edge) * 2)), 350px);
  border: 4px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(36px) saturate(170%);
  -webkit-backdrop-filter: blur(36px) saturate(170%);
  padding: 22px 18px 18px;
  box-shadow: 0 18px 48px rgba(18, 28, 23, 0.22);
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.quick-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #202020;
  font-size: 32px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.quick-modal-title {
  margin: 0;
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.quick-modal-note {
  margin: 12px 0 18px;
  text-align: center;
  color: #555555;
  font-size: 14px;
  line-height: 1.4;
}

.quick-order-form {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.input-shell {
  width: 100%;
  border: 4px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.input-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.quick-order-form .cta-button {
  width: 100%;
  margin-top: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .service-page {
    width: calc(100% - 8px);
  }

  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-photo-wrap {
    min-height: 220px;
  }

  .services-section {
    width: calc(100% - 8px);
    margin: 4px auto 24px;
  }

  .service-content {
    padding: 20px 16px 24px;
  }

  .service-description {
    font-size: 15px;
  }

  .cta-button {
    width: 100%;
  }

  .burger-menu-link {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .topbar-messengers {
    margin-left: clamp(88px, 18vw, 170px);
    gap: 5px;
  }

  .messenger-btn {
    width: 24px;
    height: 24px;
  }

  .messenger-btn svg {
    width: 13px;
    height: 13px;
  }
}
