:root {
  --orange: #f26a16;
  --orange-dark: #c84f09;
  --black: #101214;
  --ink: #1f2328;
  --muted: #626975;
  --line: #e8eaed;
  --soft: #f6f7f8;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 18px 46px rgba(16, 18, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 18, 20, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 118px;
}

.brand-link img {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #242830;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-call {
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
  box-shadow: inset 4px 0 0 var(--orange);
}

.site-nav .nav-call::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.92) 0%, rgba(16, 18, 20, 0.78) 40%, rgba(16, 18, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 18, 20, 0.34), rgba(16, 18, 20, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 660px;
  max-width: 820px;
  padding: 74px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4rem;
  line-height: 1.05;
}

h2 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: 2.35rem;
  line-height: 1.16;
}

h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  color: var(--black);
  border-color: var(--black);
  background: var(--white);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-facts span {
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.quick-info {
  background: var(--orange);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.quick-grid div {
  min-height: 106px;
  padding: 22px;
  color: var(--white);
  background: var(--orange);
}

.quick-grid strong,
.quick-grid span {
  display: block;
}

.quick-grid strong {
  margin-bottom: 4px;
  color: var(--black);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.quick-grid span {
  font-weight: 800;
}

.section {
  padding: 90px 0;
}

.split,
.seo-grid,
.contact-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.intro-text {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-text p:last-child,
.seo-copy p:last-child {
  margin-bottom: 0;
}

.services-section,
.faq-section {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 18, 20, 0.06);
}

.service-card picture,
.service-card img {
  width: 100%;
}

.service-card picture {
  display: block;
  aspect-ratio: 4 / 3;
  background: #d8dce0;
}

.service-card img {
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-section {
  color: var(--white);
  background: var(--black);
}

.process-section h2 {
  color: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.process-list span,
.process-list strong {
  display: block;
}

.process-list span {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
}

.process-list strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border-radius: 8px;
  background: var(--black);
}

.gallery-grid picture,
.gallery-grid img {
  width: 100%;
  height: 100%;
}

.gallery-grid picture {
  display: block;
}

.gallery-grid img {
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 38px 14px 14px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  background: linear-gradient(0deg, rgba(16, 18, 20, 0.9), rgba(16, 18, 20, 0));
}

.seo-section {
  background: var(--white);
}

.seo-copy {
  color: var(--muted);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.keyword-list li {
  padding: 9px 12px;
  color: var(--black);
  background: var(--soft);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 850px;
}

.faq-list details {
  padding: 0 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--black);
  font-weight: 900;
}

.faq-list p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-section {
  padding: 90px 0;
  background: linear-gradient(90deg, var(--black) 0%, var(--black) 42%, var(--white) 42%, var(--white) 100%);
}

.contact-layout {
  align-items: stretch;
}

.contact-copy {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  max-width: 520px;
}

address {
  display: grid;
  gap: 4px;
  margin-top: 30px;
  font-style: normal;
}

address strong {
  margin-top: 12px;
  color: var(--orange);
}

address span {
  color: rgba(255, 255, 255, 0.86);
}

.map-wrap {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(0deg, rgba(16, 18, 20, 0.42), rgba(16, 18, 20, 0.18)),
    url("/assets/img/workshop-exterior.png") center / cover;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.map-fallback {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  max-width: 420px;
  padding: 16px;
  color: var(--white);
  background: rgba(16, 18, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.map-fallback strong {
  color: var(--white);
}

.map-fallback span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.footer-brand img {
  width: 160px;
}

.footer-info p,
.copyright,
.site-credit {
  margin: 0;
}

.footer-info a,
.site-credit {
  color: var(--white);
  font-weight: 900;
}

.footer-legal {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.copyright {
  font-size: 0.9rem;
}

.site-credit {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-credit:hover,
.site-credit:focus-visible {
  color: var(--orange);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-link,
  .brand-link img {
    width: 98px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 30px rgba(16, 18, 20, 0.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .site-nav .nav-call {
    margin-top: 8px;
    text-align: center;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero,
  .hero-content {
    min-height: 610px;
  }

  .quick-grid,
  .split,
  .seo-grid,
  .contact-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

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

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

  .contact-section {
    background: var(--black);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand-link,
  .brand-link img {
    width: 84px;
  }

  .hero,
  .hero-content {
    min-height: 670px;
  }

  .hero-content {
    width: calc(100% - 28px);
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding: 58px 0 52px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 18, 20, 0.94) 0%, rgba(16, 18, 20, 0.76) 100%),
      linear-gradient(0deg, rgba(16, 18, 20, 0.22), rgba(16, 18, 20, 0.06));
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-facts span {
    width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
  }

  h1,
  .hero-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .quick-grid,
  .services-grid,
  .process-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 64px 0;
  }

  .gallery-grid figure {
    min-height: 260px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
