﻿:root {
  --bg: #f6f5f3;
  --paper: #ffffff;
  --ink: #1c232b;
  --muted: #5e6772;
  --accent: #db6a2a;
  --accent-dark: #b5511a;
  --line: #d8dde4;
  --ok: #2f7a50;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 16px 45px rgba(22, 30, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PT Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(219, 106, 42, 0.08), transparent 37%),
    radial-gradient(circle at 85% 85%, rgba(60, 90, 130, 0.09), transparent 28%),
    var(--bg);
  line-height: 1.45;
}

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

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: #171e26;
  color: #f0f4f8;
  font-size: 0.95rem;
}

.topbar .container {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}

.topbar__phones {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.topbar__phones a {
  color: #ffd8c6;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(9px);
  background: rgba(246, 245, 243, 0.88);
  border-bottom: 1px solid rgba(28, 35, 43, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: grid;
  gap: 0.18rem;
}

.brand__title {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.1rem, 2.3vw, 1.48rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand__subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.58rem 0.72rem;
  border-radius: 10px;
  font-family: inherit;
}

.main-nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  color: #202833;
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: #1f2934;
  color: #fff;
}

.header-actions {
  display: flex;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  padding: 0.72rem 1.15rem;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--accent {
  background: var(--accent);
  color: #fff;
}

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

.btn--light {
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  padding: clamp(3rem, 5vw, 4.9rem) 0 2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
}

.hero__content,
.hero__card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 2.3vw, 2.2rem);
}

.hero__kicker {
  color: var(--accent-dark);
  font-weight: 700;
  margin: 0 0 0.45rem;
}

h1,
h2,
h3 {
  font-family: "Exo 2", sans-serif;
  line-height: 1.13;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.lead {
  color: #24303d;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 65ch;
}

.hero__actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.chip {
  font-size: 0.86rem;
  background: #f2f4f7;
  border: 1px solid #e0e6ee;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
}

.card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.card-list li {
  background: #f8fafc;
  border: 1px solid #e3e7ed;
  border-radius: 12px;
  padding: 0.7rem;
}

.section {
  padding: 2.5rem 0;
}

.section--tight {
  padding-top: 1.4rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 68ch;
  margin: 0 0 1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.surface {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid #e1e5ec;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(26, 37, 49, 0.07);
}

.surface p {
  color: #36414e;
}

.service-card {
  display: grid;
  gap: 0.7rem;
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: start;
}

.service-card__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  font-weight: 700;
}

.steps {
  counter-reset: item;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.steps li {
  position: relative;
  padding: 0.8rem 0.8rem 0.8rem 3rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e7ee;
}

.steps li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0.8rem;
  top: 0.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #1d2733;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.booking {
  background: #1e2732;
  color: #eef3f8;
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.2vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.booking h2,
.booking h3 {
  color: #fff;
}

.booking .muted {
  color: #bdcad9;
}

.booking-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.field {
  display: grid;
  gap: 0.28rem;
}

.field label {
  font-size: 0.88rem;
  color: #cad5e3;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #8ca0b5;
  background: #f7fafc;
  font: inherit;
  color: #16202b;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.form-note {
  color: #c5d2e0;
  font-size: 0.84rem;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.88rem;
}

.form-status--ok {
  color: #90f0b9;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  background: #fff;
}

.price-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 540px;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid #e3e7ec;
  padding: 0.62rem 0.75rem;
  vertical-align: top;
  text-align: left;
}

.price-table th {
  background: #f2f6fb;
  font-family: "Exo 2", sans-serif;
}

.price-tools {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.price-tools input {
  flex: 1;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid #ced6e0;
  padding: 0.64rem 0.75rem;
  font: inherit;
}

.filter-chip {
  border: 1px solid #d4dbe5;
  border-radius: 999px;
  background: #fff;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
}

.filter-chip.is-active {
  background: #1f2834;
  color: #fff;
  border-color: #1f2834;
}

.price-category {
  margin-bottom: 1rem;
}

.kv {
  display: grid;
  gap: 0.5rem;
}

.kv div {
  display: grid;
  gap: 0.2rem;
}

.kv strong {
  font-family: "Exo 2", sans-serif;
}

.map {
  border: 1px solid #d8dde4;
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  background: #fff;
}

.map iframe {
  border: 0;
  width: 100%;
  min-height: 420px;
}

.breadcrumbs {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #44505f;
}

.breadcrumbs a {
  color: var(--accent-dark);
}

.cta-band {
  background: linear-gradient(130deg, #1f2933, #334456);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.site-footer {
  background: #131a22;
  color: #dbe5ef;
  margin-top: 2rem;
}

.site-footer .container {
  padding: 1.7rem 0;
  display: grid;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-links a {
  color: #f7f9fc;
  padding: 0.38rem 0.64rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
}

.footer-meta {
  color: #a8b7c7;
  font-size: 0.9rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 0.68rem 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #d4dde7;
  z-index: 45;
}

.mobile-cta .btn {
  width: 100%;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__grid,
  .grid--services,
  .grid--two {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    right: 1rem;
    top: 70px;
    width: min(360px, 90vw);
    max-height: calc(100vh - 90px);
    overflow: auto;
    background: #ffffff;
    border: 1px solid #d8e0ea;
    border-radius: 12px;
    padding: 0.55rem;
    box-shadow: var(--shadow);
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .main-nav a {
    display: block;
    border-radius: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    display: none;
  }

  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 680px) {
  .topbar .container {
    font-size: 0.86rem;
  }

  .topbar__phones a {
    font-size: 1rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .surface,
  .hero__content,
  .hero__card {
    padding: 0.95rem;
  }
}
