:root {
  --bg: #0f0f0f;
  --bg-dark: #131313;
  --bg-soft: #f4f3f1;
  --card: #1b1b1b;
  --yellow: #f5c518;
  --yellow-deep: #e8b50c;
  --text: #1a1a1a;
  --text-light: #d9d9d9;
  --muted: #8a8a8a;
  --muted-dark: #6a6a6a;
  --border: #2a2a2a;
  --border-light: #e4e2de;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  background: var(--bg-soft);
  color: var(--text);
  font-family: Inter, "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(100%, 1248px); margin: 0 auto; padding-inline: 24px; }
h1, h2, h3 { line-height: 1.1; font-weight: 800; letter-spacing: -.02em; overflow-wrap: normal; word-break: normal; hyphens: none; }
h2 { font-size: clamp(28px, 4vw, 44px); text-transform: uppercase; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px dashed #444;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #2a2a2a, #2a2a2a 10px, #242424 10px, #242424 20px);
  color: #9a9a9a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 13px 24px;
  border: 0;
  border-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: #1a1a1a; }
.btn-yellow:hover { background: var(--yellow-deep); }
.btn-outline { border: 1px solid #444; background: transparent; color: #fff; }
.btn-outline:hover { border-color: #777; }
.btn-dark { background: #1a1a1a; color: #fff; }
.btn-dark:hover { background: #000; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); content: ""; }
.dark .eyebrow { color: #888; }

.hero-wrap { background: var(--bg); color: #fff; }
header { border-bottom: 1px solid var(--border); padding: 18px 0; }
header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 800; letter-spacing: .02em; }
.logo .bolt { color: var(--yellow); font-size: 20px; }
nav ul { display: flex; gap: 30px; list-style: none; font-size: 14px; font-weight: 500; }
nav a { color: #cfcfcf; }
nav a:hover { color: #fff; }
.nav-mobile-cta { display: none; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; color: var(--yellow); font-size: 14px; font-weight: 700; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; border-radius: 2px; background: #fff; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { padding: 70px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: stretch; }
.hero h1 { margin-bottom: 26px; font-size: clamp(30px, 4.5vw, 56px); text-transform: uppercase; }
.hero-title-line { display: block; width: max-content; max-width: 100%; white-space: nowrap; }
.hero h1 .y { color: var(--yellow); }
.hero-title-last { margin-top: .12em; font-size: .82em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-img { width: 100%; height: 100%; min-height: 380px; border-radius: 18px; object-fit: cover; }
.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.review { padding: 18px; border: 1px solid var(--border); border-radius: 12px; background: var(--card); }
.stars { margin-bottom: 8px; color: var(--yellow); font-size: 13px; letter-spacing: 2px; }
.review p, .client-card p { color: var(--text-light); font-size: 13px; }
.who { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.who .ph, .who img { flex: 0 0 40px; width: 40px; height: 40px; min-height: 40px; border-radius: 50%; object-fit: cover; }
.review .who .ph, .review .who img { flex-basis: 36px; width: 36px; height: 36px; min-height: 36px; }
.name { font-size: 13px; font-weight: 700; }
.role { color: var(--muted); font-size: 11px; }

section { padding: 90px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.sec-head > p { max-width: 420px; color: var(--muted-dark); font-size: 14px; }
section.dark { background: var(--bg); color: #fff; }
section.dark .sec-head > p { color: #9a9a9a; }
.center-btn { margin-top: 42px; text-align: center; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius); background: #fff; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgb(0 0 0 / 8%); }
.service-img { width: 100%; height: 190px; min-height: 190px; border-radius: 0; object-fit: cover; }
.service-card .body { padding: 20px; }
.service-card h3 { margin-bottom: 6px; font-size: 18px; letter-spacing: -.01em; text-transform: uppercase; }
.service-card p { color: var(--muted-dark); font-size: 13px; }

.operate-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.map-ph { width: 100%; min-height: 300px; border-radius: var(--radius); object-fit: cover; }
.dark-intro { margin-top: 14px; color: #9a9a9a; font-size: 14px; }
.stats-row { display: flex; gap: 50px; margin-top: 30px; }
.stat .num { color: #fff; font-size: clamp(40px, 6vw, 64px); font-weight: 800; }
.stat .lbl { color: #9a9a9a; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feat-card { padding: 28px; border: 1px solid var(--border-light); border-radius: var(--radius); background: #fff; }
.feat-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 10px; background: #1a1a1a; color: var(--yellow); font-size: 20px; }
.feat-card h3 { margin-bottom: 8px; font-size: 18px; text-transform: uppercase; }
.feat-card p { margin-bottom: 14px; color: var(--muted-dark); font-size: 13px; }
.link-arrow { color: #1a1a1a; font-size: 13px; font-weight: 700; }
.link-arrow::after { content: " →"; }

.expertise-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.expertise-img-wrap { position: relative; }
.expertise-img { width: 100%; height: 420px; min-height: 420px; border-radius: var(--radius); object-fit: cover; }
.badge { position: absolute; bottom: 24px; left: 24px; width: 160px; padding: 18px 22px; border-radius: 14px; background: var(--yellow); color: #1a1a1a; }
.badge .big { font-size: 34px; font-weight: 800; line-height: 1; }
.badge .small { margin-top: 6px; font-size: 12px; font-weight: 600; }
.expertise-grid h2 { margin-bottom: 22px; }
.expertise-grid p { margin-bottom: 18px; color: #9a9a9a; font-size: 14px; }
.about-cta { margin-top: 10px; }
.expertise-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; text-align: center; }
.expertise-stats .num { color: #fff; font-size: clamp(34px, 5vw, 50px); font-weight: 800; }
.expertise-stats .lbl { color: #9a9a9a; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.faq-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.faq-img { width: 100%; height: 460px; min-height: 340px; border-radius: var(--radius); object-fit: cover; }
.faq-list { margin-top: 30px; }
.faq-item { border-bottom: 1px solid var(--border-light); padding: 0 4px; }
.faq-item h3 { font-size: inherit; }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 60px; border: 0; background: transparent; color: var(--text); cursor: pointer; text-align: left; font-size: 15px; font-weight: 600; }
.faq-q .chev { color: var(--muted); transition: transform .2s; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { padding: 0 24px 18px 0; color: var(--muted-dark); font-size: 13px; }
.faq-a[hidden] { display: none; }
.faq .center-btn { margin-top: 34px; text-align: left; }

.marquee { overflow: hidden; padding: 14px 0; background: var(--yellow); white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 40px; animation: scroll 22s linear infinite; }
.marquee span { display: inline-flex; gap: 40px; color: #1a1a1a; font-size: 15px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.marquee span::after { color: #1a1a1a; content: "✦"; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.client-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); }
.client-card p { margin: 12px 0 18px; }

.booking { background: #fff; }
.booking-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.booking-info h2 { margin-bottom: 18px; }
.booking-info > p { margin-bottom: 26px; color: var(--muted-dark); font-size: 14px; }
.booking-info ul { display: flex; flex-direction: column; gap: 14px; list-style: none; }
.booking-info li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; }
.booking-info .ic { display: flex; flex: 0 0 38px; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: #1a1a1a; color: var(--yellow); }
.form-card { position: relative; padding: 32px; border: 1px solid var(--border-light); border-radius: 18px; background: var(--bg-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.field input, .field textarea {
  width: 100%;
  min-height: 44px;
  padding: 13px 15px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--yellow); box-shadow: 0 0 0 3px rgb(245 197 24 / 20%); }
.field textarea { min-height: 130px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 16px; color: var(--muted-dark); cursor: pointer; font-size: 12px; }
.consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--yellow); }
.consent a { text-decoration: underline; }
.form-card .btn { width: 100%; margin-top: 6px; padding: 15px; font-size: 15px; }
.form-card .btn:disabled { cursor: wait; opacity: .7; transform: none; }
.form-note { margin-top: 14px; color: var(--muted); font-size: 12px; text-align: center; }
.form-status { min-height: 24px; margin-top: 8px; font-size: 13px; font-weight: 700; text-align: center; }
.form-status.success { color: #287a3f; }
.form-status.error { color: #a12222; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.cta { background: var(--yellow); }
.cta .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { max-width: 640px; font-size: clamp(30px, 4.5vw, 52px); }
.cta .btn-dark { padding: 16px 30px; font-size: 15px; }

footer { padding: 70px 0 30px; background: var(--bg); color: #bbb; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
footer .logo { margin-bottom: 16px; color: #fff; }
footer p { max-width: 340px; color: #888; font-size: 13px; }
footer h2 { margin-bottom: 16px; color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
footer ul { display: flex; flex-direction: column; gap: 10px; list-style: none; font-size: 13px; }
footer ul a { color: #999; }
footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 24px; color: #777; font-size: 12px; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials .s { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 8px; color: #aaa; font-size: 12px; }

@media (max-width: 960px) {
  .hero-grid, .operate-grid, .expertise-grid, .faq-grid { grid-template-columns: 1fr; }
  .services-grid, .clients-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid, .footer-grid { grid-template-columns: 1fr; }
  .expertise-stats { margin-top: 40px; }
  .booking-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-img { height: 400px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  header .container { position: relative; }
  nav { position: absolute; top: calc(100% + 18px); right: 24px; left: 24px; z-index: 50; display: none; padding: 10px; border: 1px solid var(--border); border-radius: 14px; background: var(--card); box-shadow: 0 18px 50px rgb(0 0 0 / 35%); }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li { border-bottom: 1px solid var(--border); }
  nav ul li:last-child { border-bottom: 0; }
  nav ul li a:not(.btn) { display: block; min-height: 44px; padding: 14px 12px; }
  .nav-mobile-cta { display: block; padding: 10px 4px 4px; }
  .nav-mobile-cta .btn { width: 100%; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container { padding-inline: 18px; }
  .services-grid, .clients-grid { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .review { display: flex; flex-direction: column; }
  .review .who { order: -1; margin: 0 0 12px; }
  .sec-head { flex-direction: column; align-items: flex-start; margin-bottom: 34px; }
  .hero { padding: 48px 0 60px; }
  .hero-grid { display: flex; flex-direction: column; gap: 30px; }
  .hero-copy { display: contents; }
  .hero h1 { order: 1; }
  .hero-actions { order: 2; flex-direction: column; align-items: stretch; margin-bottom: 0; }
  .hero-img { order: 3; min-height: 300px; margin-bottom: 0; }
  .reviews { order: 4; }
  .hero-actions .btn { width: 100%; }
  .stats-row { gap: 32px; }
  .expertise-stats { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .cta .container { flex-direction: column; align-items: flex-start; }
  .cta .btn-dark { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .form-card { padding: 22px; }
  .badge { bottom: 16px; left: 16px; }
  .faq-img { height: 340px; }
}

@media (max-width: 380px) {
  .container { padding-inline: 14px; }
  .stats-row { flex-direction: column; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
