:root {
  --bg: #0f1114;
  --bg-elevated: #171b21;
  --surface: #1e242c;
  --text: #e8eaed;
  --text-muted: #9aa3ad;
  --accent: #f5a623;
  --accent-dim: #c77f0e;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #ffc14d;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 17, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

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

.header-phone {
  margin-left: auto;
  font-weight: 600;
  white-space: nowrap;
  color: var(--accent);
  text-decoration: none;
}

.header-phone:hover {
  color: #ffc14d;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    order: 2;
  }

  .header-phone {
    order: 3;
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding-top: 0.25rem;
    border-top: 1px solid var(--border);
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    order: 4;
    padding: 0.75rem 0 0;
    border-top: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
  }
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(245, 166, 35, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(80, 120, 200, 0.12), transparent 45%),
    linear-gradient(180deg, #12151a 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 38%);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: end;
}

.hero-content {
  min-width: 0;
  padding-bottom: 0.25rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 0;
}

.hero-photo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 520px);
  object-fit: contain;
  object-position: center bottom;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1.5rem;
  }

  .hero-visual {
    justify-content: center;
    margin: 0 auto;
    max-width: 320px;
  }

  .hero-photo {
    max-height: min(50vh, 380px);
    margin-inline: auto;
  }
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  margin: -0.25rem 0 1rem;
  max-width: 48ch;
  line-height: 1.45;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 600;
}

.local-seo {
  border-top: 1px solid var(--border);
}

.local-seo-text strong {
  color: var(--text);
  font-weight: 600;
}

.local-seo-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .local-seo-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 1.75rem;
  }
}

.local-seo-map {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.local-seo-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.local-seo-map figcaption {
  padding: 0.6rem 0.85rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.geo-cta {
  margin-top: 1.25rem;
}

.request-cta {
  border-top: 1px solid var(--border);
}

.request-cta-inner {
  text-align: center;
}

.request-cta-actions {
  margin: 0;
}

.modal-content {
  padding: 1.25rem 1.25rem 1.35rem;
}

.help {
  border-top: 1px solid var(--border);
}

.help-inner {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .help-inner {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  }
}

.help-copy .section-title {
  margin-top: 0;
}

.help-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  max-width: 75ch;
}

.help-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.help-list li strong {
  color: var(--text);
  font-weight: 700;
}

.help-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.25);
}

.help-cta {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.help-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  max-width: 320px;
  justify-self: start;
}

.help-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 1.75rem;
}

.hero-lead strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.5rem;
  color: currentColor;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-max {
  gap: 0;
}

.btn-primary {
  background: var(--accent);
  color: #1a1206;
}

.btn-primary:hover {
  background: #ffc14d;
  color: #1a1206;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

main > section:nth-child(even) {
  background: var(--bg-elevated);
}

.services {
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 65ch;
  margin: 0 0 2rem;
}

.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-template-areas:
      "left1 center center right1"
      "left2 center center right2"
      "bottomWide bottomWide bottomWide bottomWide";
  }

  .service-card--center {
    grid-area: center;
    padding: 1.6rem 1.75rem;
  }

  .service-card--center h3 {
    font-size: 1.25rem;
  }

  .service-card--center p {
    font-size: 1rem;
  }

  .service-card--left1 {
    grid-area: left1;
  }

  .service-card--left2 {
    grid-area: left2;
  }

  .service-card--right1 {
    grid-area: right1;
  }

  .service-card--right2 {
    grid-area: right2;
  }

  .service-card--bottomWide {
    grid-area: bottomWide;
  }
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.service-icon {
  color: var(--accent);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-bullets {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.service-bullets li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-bullets li strong {
  color: var(--text);
  font-weight: 700;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-open {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gallery-open:hover img {
  transform: scale(1.02);
}

.gallery-hidden {
  display: none;
}

.gallery-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gallery-item-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.gallery-item-text {
  display: block;
  line-height: 1.45;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal-dialog {
  position: relative;
  width: min(96vw, 980px);
  max-height: 90vh;
  margin: 5vh auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-figure {
  margin: 0;
  display: grid;
}

.modal-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #0b0d10;
}

.modal-caption {
  display: flex;
  justify-content: flex-end;
  padding: 0.6rem 0.85rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(15, 17, 20, 0.7);
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 17, 20, 0.7);
  color: var(--text);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.modal-prev {
  left: 0.6rem;
}

.modal-next {
  right: 0.6rem;
}

.modal-close:hover,
.modal-nav:hover {
  border-color: rgba(245, 166, 35, 0.6);
}

@media (max-width: 520px) {
  .modal-dialog {
    width: 96vw;
    margin-top: 2vh;
  }
  .modal-nav {
    top: auto;
    bottom: 0.55rem;
    transform: none;
  }
}

.review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-card {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.review-card p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text-muted);
}

.review-card footer {
  font-size: 0.9rem;
  color: var(--text);
}

.reviews-cta {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.request {
  border-top: 1px solid var(--border);
}

.request-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .request-layout {
    grid-template-columns: 1fr 1.1fr;
  }
}

.request-copy .section-title {
  margin-top: 0;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

.field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.request-form input,
.request-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.request-form input:focus,
.request-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

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

.form-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .request-form {
    grid-template-columns: 1fr;
  }
}

.contacts {
  border-top: 1px solid var(--border);
}

.contacts-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-block {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--accent);
}

.contact-big {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.contact-big:hover {
  color: var(--accent);
}

.link-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.link-list li {
  margin-bottom: 0.4rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.about {
  border-top: 1px solid var(--border);
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .about-layout {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  }
}

.about-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

.about-photo figcaption {
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.about-main .section-intro {
  margin-top: 0;
}

.about-lead {
  max-width: none;
}

.benefit-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  max-width: 52ch;
}

.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.25);
}

.about-geo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  max-width: 65ch;
}

.about-geo-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--accent);
}

.about-geo p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
