﻿@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f4f5f8;
  color: #111827;
  line-height: 1.6;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
}

.container, .page-section, .page-hero, .site-footer-inner, .contact-grid, .process-list,
.faq-grid, .about-block, .services-grid, .section-header, .hero-inner, .site-header-inner {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-main {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
}

.logo-sub {
  font-size: 0.95rem;
  color: #6b7280;
  letter-spacing: 0.04em;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  color: #4b5563;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #111827;
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.nav .nav-cta::after {
  display: none;
}

.header-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; /* прямо под хедером */
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 9999; /* поверх всего */
}

/* Когда JS добавляет класс - меню показывается */
.mobile-menu.mobile-menu-open {
  display: block;
}

/* Контейнер внутри */
.mobile-menu-inner {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  background: #f4c045;
  color: #111827;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: #e0ad39;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(243, 244, 246, 0.8);
  background: transparent;
  color: #f9fafb;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(249, 250, 251, 0.08);
  border-color: #f9fafb;
}

.hero {
  background: linear-gradient(90deg, #111827 0%, #1f2937 100%);
  color: #f9fafb;
  padding: 64px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  color: #e5e7eb;
  max-width: 34rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 0.85rem;
  color: #d1d5db;
}

.hero-card {
  background: rgba(17, 24, 39, 0.7);
  border-radius: 24px;
  padding: 24px 24px 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.hero-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hero-step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f4c045;
  color: #1f2933;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-step-title {
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.hero-step-text {
  font-size: 0.88rem;
  color: #e5e7eb;
}

.hero-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
}

.section {
  padding: 20px 0;
}

.section-header {
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-lead {
  font-size: 0.98rem;
  color: #6b7280;
  /*    max-width: 520px;
  */
}

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

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.service-title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.service-text {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #4b5563;
}

.service-meta {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #9ca3af;
}

.about-block {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.about-text p {
  font-size: 0.98rem;
  color: #374151;
}

.about-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
  font-size: 0.9rem;
  color: #4b5563;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 26px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #6b7280;
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.6);
  margin-left: auto;
}

.process-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.process-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-title {
  font-weight: 600;
  font-size: 0.98rem;
}

.process-text {
  font-size: 0.9rem;
  color: #4b5563;
}

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

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
}

.faq-q {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.faq-a {
  font-size: 0.88rem;
  color: #4b5563;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 26px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.form-field {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}

.form-textarea {
  min-height: 120px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.0901960784);
}

.form-note {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #6b7280;
}

.site-footer {
  background: #0b0f16;
  color: #9ca3af;
}

.site-footer-inner {
  padding: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 6px;
}

.site-footer a {
  color: #e5e7eb;
  font-size: 0.86rem;
}

.page-hero {
  padding: 40px 0 26px;
}

.page-hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.page-hero-lead {
  font-size: 0.98rem;
  color: #6b7280;
}

.page-section {
  padding-bottom: 48px;
}

.booking-wrapper {
  max-width: 520px;
  margin: 0 auto 40px;
}

.article-body {
  max-width: 1120px;
  margin: 0 auto 64px;
  font-size: 1rem;
  color: #374151;
}
.article-body h2,
.article-body h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}
.article-body p {
  margin-bottom: 12px;
}
.article-body ul {
  margin: 8px 0 12px 1.2rem;
  padding: 0;
}
.article-body li {
  margin-bottom: 6px;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    margin-top: 26px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-block {
    grid-template-columns: 1fr;
  }
  .about-photo {
    margin-left: 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .header-burger {
    display: block;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}
