:root {
  --ink: #171412;
  --paper: #f7f1e8;
  --paper-strong: #fffaf2;
  --rust: #c04a1e;
  --rust-light: #ea6c43;
  --rust-soft: rgba(192, 74, 30, 0.14);
  --cream: #ede3cf;
  --muted: #74695d;
  --line: rgba(23, 20, 18, 0.12);
  --line-strong: rgba(23, 20, 18, 0.24);
  --shadow: 0 18px 40px rgba(23, 20, 18, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(234, 108, 67, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 20, 18, 0.06), transparent 24%),
    linear-gradient(180deg, #f9f5ee 0%, var(--paper) 42%, #f3ebdf 100%);
  color: var(--ink);
  font-family: 'Golos Text', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 20, 18, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 18, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--rust);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(234, 108, 67, 0.45);
  outline-offset: 3px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 4.5rem 2.5rem; }

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: linear-gradient(180deg, var(--line-strong), rgba(23, 20, 18, 0.08));
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.grid-box--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-base {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
    var(--paper-strong);
  padding: 2rem 1.5rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.card-base:hover {
  background: #fffdf8;
  transform: translateY(-2px);
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(23, 20, 18, 0.92);
  color: var(--paper);
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo span { color: var(--rust-light); }

.city-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8aea0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.hero {
  padding: 5rem 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, var(--rust), transparent);
}

.pulse { animation: pulse 2.4s ease-in-out infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

h1 em { font-style: normal; color: var(--rust); display: block; }

.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.4rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--rust) 0%, var(--rust-light) 100%);
  color: #fff;
  box-shadow: 0 14px 24px rgba(192, 74, 30, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(192, 74, 30, 0.32);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: 0 8px 18px rgba(23, 20, 18, 0.05);
}

.btn-outline:hover {
  background: #fff;
  transform: translateY(-2px);
  border-color: rgba(23, 20, 18, 0.34);
}

.btn-white {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.72rem 1.1rem;
  font-size: 0.82rem;
  border-radius: 12px;
}

.card-action { margin-top: 1.2rem; }
.icon { width: 18px; height: 18px; flex-shrink: 0; }

.divider {
  border: none;
  border-top: 1px solid var(--line-strong);
  max-width: 1100px;
  margin: 0 auto;
}

.services { max-width: 1100px; margin: 0 auto; padding: 4.5rem 2.5rem; }

.card-num,
.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  color: var(--rust);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.card-title,
.step-title,
.benefit-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.card-desc,
.step-desc,
.benefit-desc,
.testimonial-text,
.faq-answer {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 4rem;
}

.gallery-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-bottom: 1rem;
}

.gallery-caption {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.stats-bar {
  background:
    radial-gradient(circle at top center, rgba(234, 108, 67, 0.18), transparent 36%),
    #1a1512;
  color: var(--paper);
  padding: 3.2rem 2.5rem;
}

.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--rust-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #b8aea0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    var(--cream);
  padding: 3.5rem 2.5rem;
  margin: 0;
  border-top: 1px solid rgba(23, 20, 18, 0.06);
  border-bottom: 1px solid rgba(23, 20, 18, 0.06);
}

.info-section h2,
.promo h2,
.cta-banner h2,
.contact-text h2 {
  font-family: 'Unbounded', sans-serif;
}

.info-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--rust);
}

.info-section p {
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 760px;
}

.testimonials,
.faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
}

.benefit-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }

.faq-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.faq-question {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.promo {
  background: linear-gradient(135deg, var(--rust) 0%, var(--rust-light) 100%);
  color: var(--paper);
  padding: 3rem 2.5rem;
  text-align: center;
}

.promo p,
.cta-banner p,
.contact-text p {
  font-size: 1rem;
  line-height: 1.7;
}

.cta-banner {
  background:
    radial-gradient(circle at top center, rgba(234, 108, 67, 0.24), transparent 36%),
    var(--ink);
  color: var(--paper);
  padding: 4rem 2.5rem;
  text-align: center;
}

.cta-banner-inner { max-width: 700px; margin: 0 auto; }

.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-banner p { color: #b8aea0; margin-bottom: 2rem; }
.cta-banner .cta-group { justify-content: center; margin-bottom: 0; }

.contact-bar {
  background: rgba(23, 20, 18, 0.96);
  color: var(--paper);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-text h2 {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.contact-text p { color: #b8aea0; }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #110f0d;
  color: #8a7f72;
  padding: 1.3rem 2.5rem;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Cities list page */
.page-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--rust);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
  opacity: 0.84;
  transform: translateX(-2px);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4.6vw, 3.3rem);
  max-width: 760px;
}

.page-header .pop {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(23, 20, 18, 0.05);
}

.page-header .desc,
.page-header p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.page-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 2rem;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(23, 20, 18, 0.05);
  color: var(--ink);
  font-size: 0.88rem;
}

.cities-wrap,
.city-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 4.5rem;
}

.city-group {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.city-group-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1.25rem 1.2rem;
  background: rgba(23, 20, 18, 0.03);
  border-bottom: 1px solid var(--line);
}

.city-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease, transform 0.2s ease;
}

.city-link:last-child { border-bottom: none; }

.city-link:hover {
  background: #fff;
  transform: translateX(3px);
}

.city-link-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.city-link-pop {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

.search-input {
  width: 100%;
  padding: 1rem 1.1rem;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.98rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border-radius: 18px;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 24px rgba(23, 20, 18, 0.05);
}

.search-input:focus {
  border-color: var(--rust);
  box-shadow: 0 16px 28px rgba(192, 74, 30, 0.12);
  background: #fff;
}

/* Individual city pages */
.city-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.city-info {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.84);
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  margin-bottom: 0;
  box-shadow: var(--shadow);
}

.city-info h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.city-info ul { list-style: none; }

.city-info li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.city-info li:last-child { border-bottom: none; }
.city-info li span:first-child { color: var(--muted); }
.city-info li span:last-child { font-weight: 600; text-align: right; }

.city-closing {
  background:
    radial-gradient(circle at top center, rgba(234, 108, 67, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 2rem;
}

.city-closing-text {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
  line-height: 1.7;
}

.city-note {
  background:
    linear-gradient(135deg, rgba(234, 108, 67, 0.16), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(192, 74, 30, 0.16);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 1.8rem;
}

.city-note h2,
.city-card h2,
.faq-list h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.city-note p {
  max-width: 760px;
  color: var(--ink);
  line-height: 1.8;
}

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

.city-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.84);
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.city-card ul {
  list-style: none;
}

.city-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.city-card li:last-child {
  margin-bottom: 0;
}

.city-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--rust);
}

.faq-list {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-list-header {
  padding: 1.7rem 1.7rem 0;
}

.faq-item {
  padding: 1.2rem 1.7rem;
  border-top: 1px solid var(--line);
}

.faq-item:first-of-type {
  border-top: none;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.75;
}

.mini-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.mini-nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.86rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.04);
  transition: background 0.2s ease, color 0.2s ease;
}

.mini-nav-link:hover {
  background: rgba(192, 74, 30, 0.12);
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 250, 242, 0.98);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(23, 20, 18, 0.18);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--rust);
  font-weight: 500;
}

.cookie-button {
  flex-shrink: 0;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rust) 0%, var(--rust-light) 100%);
  color: #fff;
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(192, 74, 30, 0.22);
}

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

@media (max-width: 860px) {
  header {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .container,
  .hero,
  .services,
  .testimonials,
  .faq,
  .gallery-wrapper,
  .cta-banner,
  .info-section,
  .stats-bar,
  .contact-bar,
  footer,
  .page-header,
  .cities-wrap,
  .city-content {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

@media (max-width: 640px) {
  .cta-group,
  .contact-actions,
  .page-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .city-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .city-link-pop,
  .city-info li span:last-child {
    white-space: normal;
    text-align: left;
  }

  .city-info li {
    flex-direction: column;
  }

  .page-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .city-columns {
    grid-template-columns: 1fr;
  }

  .city-note,
  .city-card,
  .faq-item,
  .faq-list-header {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }
}
