@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./assets/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./assets/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./assets/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f2f0ea;
  --bg-soft: #f8f7f3;
  --surface: rgba(255, 254, 250, 0.88);
  --surface-strong: #fffefa;
  --line: rgba(52, 57, 51, 0.12);
  --line-strong: rgba(52, 57, 51, 0.24);
  --text: #252a26;
  --muted: #687167;
  --accent: #6f8072;
  --accent-deep: #34413a;
  --accent-soft: rgba(111, 128, 114, 0.14);
  --cta: #bf5b2f;
  --cta-deep: #7b341f;
  --cta-soft: rgba(191, 91, 47, 0.18);
  --forest: #34413a;
  --shadow: 0 16px 42px rgba(47, 55, 49, 0.08);
  --shadow-soft: 0 10px 26px rgba(47, 55, 49, 0.055);
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(203, 199, 184, 0.34), transparent 27%),
    radial-gradient(circle at 86% 12%, rgba(111, 128, 114, 0.12), transparent 23%),
    linear-gradient(180deg, #f7f5ef 0%, var(--bg) 42%, var(--bg-soft) 100%);
}

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

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

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: "Manrope", sans-serif;
}

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

p {
  margin: 0;
  text-wrap: pretty;
}

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

.ambient {
  position: fixed;
  z-index: 0;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.24;
  pointer-events: none;
}

.ambient-left {
  top: -10rem;
  left: -10rem;
  background: rgba(111, 128, 114, 0.16);
}

.ambient-right {
  top: 16rem;
  right: -12rem;
  background: rgba(202, 194, 176, 0.18);
}

.topbar,
.section,
.footer,
.sticky-cta {
  position: relative;
  z-index: 1;
}

.section,
.footer {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  width: min(calc(100% - 2rem), var(--container));
  margin: 1rem auto 0;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0.18rem;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.98) 0%, rgba(232, 226, 210, 0.96) 58%, rgba(205, 190, 158, 0.88) 100%);
  border: 1px solid rgba(184, 154, 96, 0.34);
  box-shadow:
    0 10px 24px rgba(92, 74, 44, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.96rem;
  line-height: 1.15;
  overflow-wrap: normal;
  white-space: nowrap;
}

.brand-copy small {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.topnav {
  display: inline-flex;
  justify-self: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topnav a,
.eyebrow,
.card-badge,
.contact-label,
.review-label,
.panel-label,
.step-number {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.topnav a {
  color: var(--muted);
}

.topbar-actions {
  display: grid;
  gap: 0.8rem;
  justify-items: end;
}

.booking-choice {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.topbar-booking-choice .button {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.language-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.language-button {
  min-height: 2.2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.78);
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.language-button:hover,
.language-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.language-button.is-active {
  color: #ffffff;
  border-color: transparent;
  background: var(--accent-deep);
}

.has-language-gate {
  overflow: hidden;
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.language-gate.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.language-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 42, 38, 0.42);
  backdrop-filter: blur(10px);
}

.language-gate-panel {
  position: relative;
  width: min(100%, 28rem);
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(184, 154, 96, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.96) 0%, rgba(244, 241, 232, 0.96) 58%, rgba(229, 220, 198, 0.94) 100%);
  box-shadow: 0 24px 70px rgba(27, 32, 29, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(0.5rem) scale(0.98);
  transition: transform 180ms ease;
}

.language-gate.is-visible .language-gate-panel {
  transform: translateY(0) scale(1);
}

.language-gate-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.74);
  color: var(--muted);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.language-gate-kicker {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-gate h2 {
  max-width: 22rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.04;
}

.language-gate p {
  margin-top: 0.75rem;
  max-width: 23rem;
  color: var(--muted);
  line-height: 1.55;
}

.language-gate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.2rem, 1fr));
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.language-gate-button {
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 57, 51, 0.14);
  background: rgba(255, 254, 250, 0.78);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-gate-button:hover,
.language-gate-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(184, 154, 96, 0.44);
  background: rgba(255, 254, 250, 0.95);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.95rem;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-deep) 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(191, 91, 47, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 44px rgba(191, 91, 47, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-secondary {
  background: rgba(255, 254, 250, 0.68);
  border-color: var(--line);
  color: var(--text);
}

.button-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-telegram {
  background: linear-gradient(135deg, #2aabee 0%, #168acd 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(42, 171, 238, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-telegram:hover,
.button-telegram:focus-visible {
  box-shadow: 0 20px 44px rgba(42, 171, 238, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button-gold {
  background: linear-gradient(135deg, #f5df9d 0%, #c49b3d 100%);
  border-color: rgba(149, 115, 39, 0.24);
  color: #2f2c23;
  box-shadow: 0 14px 30px rgba(184, 154, 96, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 18px 38px rgba(184, 154, 96, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.button-call {
  background: rgba(255, 254, 250, 0.82);
  border-color: rgba(52, 65, 58, 0.22);
  color: var(--accent-deep);
  box-shadow: 0 12px 26px rgba(43, 43, 38, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-call:hover,
.button-call:focus-visible {
  border-color: rgba(52, 65, 58, 0.36);
  box-shadow: 0 16px 34px rgba(43, 43, 38, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.button-large {
  min-height: 3.15rem;
  padding-inline: 1.35rem;
}

.hero {
  padding: 3.2rem 0 1.35rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.35rem;
  align-items: center;
}

.eyebrow,
.panel-label,
.step-number,
.contact-label,
.card-badge,
.review-label {
  color: var(--accent-deep);
}

h1 {
  font-size: 3rem;
  line-height: 1.07;
  max-width: 17ch;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.55rem, 3.35vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 760;
}

.hero-text,
.section-heading p,
.info-card p,
.mini-card p,
.stat-card p,
.step-card p,
.review-card p,
.faq-card p,
.booking-copy p,
.contact-card p,
.footer-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-text {
  margin-top: 0.95rem;
  max-width: 35rem;
  font-size: 1rem;
  white-space: pre-line;
}

.hero-action-stack {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0;
}

.hero-contact-actions .button {
  min-width: 8.4rem;
}

.hero-support-actions {
  gap: 0.55rem;
}

.hero-support-actions .button {
  min-height: 2.55rem;
  padding: 0.58rem 0.92rem;
  font-size: 0.92rem;
}

.quick-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.contacts-quick-links {
  margin-top: 0.85rem;
}

.quick-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.38rem 0.75rem 0.38rem 0.42rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.74);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(43, 43, 38, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-contact-link:hover,
.quick-contact-link:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 14px 30px rgba(43, 43, 38, 0.1);
  transform: translateY(-1px);
}

.quick-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 1.72rem;
  height: 1.72rem;
  border-radius: 50%;
  background: var(--accent-deep);
  color: #ffffff;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.quick-contact-link-whatsapp .quick-contact-icon {
  background: #2f7f5f;
}

.quick-contact-link-instagram .quick-contact-icon {
  background: linear-gradient(135deg, #9a5b37, #d08a56);
}

.hero-visual {
  display: grid;
  gap: 0.75rem;
  justify-items: end;
}

.hero-photo-card,
.booking-panel,
.about-visual,
.info-card,
.stat-card,
.step-card,
.review-card,
.faq-card,
.trust-card,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(249, 248, 244, 0.94));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-width: 0;
  overflow-wrap: break-word;
}

.hero-photo-card {
  overflow: hidden;
  width: min(100%, 27rem);
}

.hero-photo-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) contrast(0.96) brightness(1.02);
}

.card-grid,
.stats-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 0.75rem;
}

.mini-card strong,
.info-card h3,
.stat-card h3,
.step-card h3,
.review-card h3,
.faq-card h3,
.contact-card h3 {
  display: block;
  margin-top: 0.25rem;
}

.trust-section {
  padding-top: 1rem;
  padding-bottom: 0.25rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-card,
.info-card,
.stat-card,
.step-card,
.review-card,
.faq-card,
.contact-card {
  padding: 1rem;
}

.trust-card span {
  display: block;
  margin-bottom: 0.32rem;
}

.section {
  padding-top: 1.65rem;
}

.section-heading {
  max-width: 36rem;
  margin-bottom: 0.95rem;
}

.section-heading p {
  margin-top: 0.55rem;
  white-space: pre-line;
}

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

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

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

#booking-callback-link {
  display: none;
}

.card-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
}

.service-card {
  padding: 0.62rem;
  display: grid;
  gap: 0.68rem;
  align-content: start;
}

.service-card-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.32;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.7);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.82) contrast(0.96) brightness(1.02);
}

.service-media-office img {
  object-position: center 28%;
}

.service-media-training img {
  object-position: center 30%;
}

.service-card-body {
  display: grid;
  gap: 0.28rem;
  padding: 0 0.18rem 0.1rem;
}

.service-card .card-badge {
  width: fit-content;
  margin-bottom: 0.08rem;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 0;
}

.price-card {
  padding: 0.95rem;
  display: grid;
  gap: 0.32rem;
  align-content: start;
}

.price-card .card-badge {
  margin-bottom: 0.08rem;
  color: var(--accent-deep);
  font-weight: 800;
}

.price-card p {
  font-weight: 760;
  color: var(--text);
  line-height: 1.38;
}

.section-note {
  margin-top: 0.65rem;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
  align-items: center;
}

.about-visual {
  overflow: hidden;
}

.about-visual img {
  aspect-ratio: 1.12;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.82) contrast(0.96) brightness(1.02);
}

.about-copy {
  display: grid;
  gap: 0.75rem;
}

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

.faq-section,
.contacts-section {
  display: grid;
  gap: 0.35rem;
}

.process-section {
  display: none;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 0.85rem;
  align-items: stretch;
}

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

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

.process-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.process-photo,
.booking-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 250, 0.9);
  box-shadow: var(--shadow-soft);
}

.process-photo img,
.booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) contrast(0.96) brightness(1.02);
}

.process-photo-large {
  min-height: 14rem;
}

.process-photo-large img {
  object-position: center 32%;
}

.process-photo:not(.process-photo-large) {
  display: none;
}

.step-number {
  display: inline-flex;
  margin-bottom: 0.55rem;
}

.reviews-carousel {
  width: min(100%, 54rem);
  touch-action: pan-y;
  border-radius: var(--radius-lg);
}

.reviews-track {
  display: grid;
  gap: 0.75rem;
}

.review-slide {
  margin: 0;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.review-label {
  display: inline-block;
}

.review-rating {
  display: inline-flex;
  flex: 0 0 auto;
  color: #9a6e17;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-slide blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.review-slide figcaption {
  display: grid;
  gap: 0.28rem;
  color: var(--muted);
  line-height: 1.45;
}

.review-author {
  color: var(--text);
}

.review-source-label {
  font-size: 0.82rem;
}

.review-source-link {
  width: fit-content;
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.reviews-carousel.is-enhanced .reviews-track {
  grid-template-columns: minmax(0, 1fr);
}

.reviews-carousel.is-enhanced .review-slide {
  display: none;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.reviews-carousel.is-enhanced .review-slide.is-active {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.35rem, 1.8vw, 0.6rem);
  width: 100%;
  max-width: 100%;
  margin-top: 0.8rem;
}

.reviews-controls[hidden] {
  display: none;
}

.review-control {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--accent-deep);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.review-pause {
  flex-basis: 44px;
}

.review-progress,
.review-dots {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.review-progress {
  justify-content: center;
  gap: 0.5rem;
}

.review-dots {
  gap: 0.32rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent-deep);
  border-radius: 50%;
  background: transparent;
}

.review-dot.is-active {
  background: var(--accent-deep);
}

.review-position {
  min-width: 2.5rem;
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.section-actions {
  margin-top: 0.85rem;
}

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

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

.booking-panel {
  padding: 1.15rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.95rem;
}

.booking-copy {
  display: grid;
  gap: 0.65rem;
}

.booking-actions {
  display: grid;
  gap: 0.65rem;
  align-content: center;
}

.booking-actions-inline {
  display: flex;
  flex-wrap: wrap;
  align-content: initial;
  margin-top: 0.2rem;
}

.booking-photo {
  display: none;
}

.request-form {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 250, 0.66);
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.request-form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 250, 0.66);
  padding: 0.85rem;
  min-width: 0;
}

.request-form-shell summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 850;
  list-style: none;
}

.request-form-shell summary::-webkit-details-marker {
  display: none;
}

.request-form-shell summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.request-form-shell[open] summary::after {
  content: "-";
}

.request-form-shell .request-form {
  margin-top: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.callback-form-shell {
  background: linear-gradient(135deg, rgba(169, 98, 61, 0.11), rgba(255, 254, 250, 0.9));
  border-color: rgba(169, 98, 61, 0.24);
}

.callback-form-shell summary {
  color: var(--cta-deep);
}

.callback-form-shell summary::after {
  background: var(--cta-soft);
  color: var(--cta-deep);
}

.form-heading {
  display: grid;
  gap: 0.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.form-field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea,
.request-preview {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.92);
  color: var(--text);
  font: inherit;
  padding: 0.72rem 0.78rem;
  outline: none;
}

.form-field textarea,
.request-preview {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(111, 128, 114, 0.12);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-status {
  color: var(--muted);
  line-height: 1.5;
}

.form-privacy-notice {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.request-preview {
  min-height: 7rem;
  color: var(--muted);
}

.contact-label {
  display: block;
  margin-bottom: 0.5rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  color: var(--accent-deep);
  font-weight: 800;
}

.footer {
  margin: 1.8rem auto 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.footer-brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
}

.footer-meta {
  text-align: right;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: none;
  padding: 0.75rem;
  background: linear-gradient(180deg, rgba(242, 240, 234, 0), rgba(242, 240, 234, 0.92) 38%, rgba(242, 240, 234, 0.98));
}

.sticky-cta-button {
  width: min(100%, 16rem);
  margin: 0 auto;
}

.back-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 6;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--accent-deep);
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-control:focus-visible,
.review-source-link:focus-visible,
.reviews-carousel:focus-visible,
.back-to-top:focus-visible,
#site-top:focus-visible {
  outline: 3px solid #8a4a2e;
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .topbar {
    border-radius: var(--radius-lg);
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .topnav {
    justify-content: flex-start;
  }

  .topbar-actions {
    justify-items: stretch;
  }

  .language-switcher {
    justify-content: flex-start;
  }

  .hero,
  .about-section,
  .process-layout,
  .booking-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-visual {
    justify-items: center;
  }

  .services-grid,
  .prices-grid,
  .contacts-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-photo-large {
    min-height: 14rem;
  }
}

@media (max-width: 720px) {
  .section,
  .footer,
  .topbar {
    width: min(calc(100% - 1rem), var(--container));
  }

  .topbar {
    margin-top: 0.6rem;
    padding: 0.78rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    padding: 0.16rem;
  }

  .brand-copy strong {
    max-width: 9.8rem;
    font-size: 0.86rem;
    white-space: normal;
  }

  .brand-separator {
    display: none;
  }

  .brand-owner {
    display: block;
  }

  .brand-copy small {
    display: none;
  }

  .topnav,
  .topbar-cta {
    display: none;
  }

  .topbar-actions {
    justify-items: start;
  }

  .topnav {
    gap: 0.75rem;
    justify-content: space-between;
  }

  .language-switcher {
    gap: 0.35rem;
  }

  .language-button {
    flex: 0 0 auto;
    min-height: 2rem;
    padding: 0.3rem 0.58rem;
    justify-content: center;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: 2rem;
    max-width: 100%;
  }

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

  .booking-actions-inline,
  .form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-contact-actions,
  .hero-support-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero-contact-actions .button,
  .hero-support-actions .button {
    min-width: 0;
  }

  .hero-contact-actions .button-call {
    grid-column: 1 / -1;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .services-grid,
  .prices-grid,
  .contacts-grid,
  .steps-grid,
  .process-layout .steps-grid,
  .faq-grid,
  .stats-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .process-photo-large,
  .process-photo:not(.process-photo-large),
  .booking-photo {
    min-height: 11rem;
  }

  .footer {
    margin-top: 2rem;
    padding-bottom: 5.5rem;
  }

  .footer-meta {
    text-align: left;
  }

  .sticky-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }

  .sticky-cta-button {
    min-height: 2.7rem;
    padding-inline: 0.45rem;
    font-size: 0.86rem;
  }

  .back-to-top {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(5.25rem + env(safe-area-inset-bottom));
    max-width: calc(100vw - 1.5rem);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
  }

  .reviews-carousel.is-enhanced .review-slide,
  .back-to-top {
    transition: none;
  }
}
