:root {
  --brand: #feb900;
  --brand-strong: #e7a700;
  --ink: #15181c;
  --ink-soft: #252a31;
  --slate: #52565e;
  --text: #343a40;
  --muted: #6f7782;
  --line: #e7e9ec;
  --surface: #f5f6f7;
  --white: #ffffff;
  --success: #137a45;
  --danger: #b42318;
  --shadow: 0 22px 60px rgba(21, 24, 28, 0.12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(254, 185, 0, .35); color: var(--ink); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--soft { background: var(--surface); }
.section--dark { background: var(--ink); color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #6b5600;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 999px; background: var(--brand); }
.section--dark .eyebrow { color: #ffeaa8; }
.display,
.section-title,
.card-title { color: var(--ink); letter-spacing: -.035em; line-height: 1.08; }
.display { margin: 0; font-size: clamp(2.65rem, 6vw, 5.35rem); font-weight: 850; max-width: 900px; }
.section-title { margin: 0; font-size: clamp(2rem, 4.5vw, 3.35rem); font-weight: 800; }
.section-lead { margin: 18px 0 0; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.16rem); max-width: 720px; }
.section-heading { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; margin-bottom: 48px; }
.section-heading .section-lead { max-width: 560px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 9999; transform: translateY(-180%); background: var(--brand); color: var(--ink); padding: 10px 16px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.header.is-scrolled { background: rgba(21,24,28,.96); box-shadow: 0 10px 35px rgba(0,0,0,.18); border-color: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: baseline; color: var(--white); font-weight: 900; letter-spacing: -.045em; font-size: 1.52rem; line-height: 1; }
.brand span { color: var(--brand); }
.nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav a { color: rgba(255,255,255,.82); font-size: .93rem; font-weight: 700; transition: color .2s ease; }
.nav a:hover, .nav a:focus-visible { color: var(--white); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; background: var(--brand); color: var(--ink); font-weight: 850; font-size: .9rem; }
.header-cta:hover { background: #ffc62b; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--white); font-size: 1.5rem; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: calc(var(--header-h) + 82px) 0 84px;
  background:
    radial-gradient(circle at 78% 20%, rgba(254,185,0,.16), transparent 30%),
    linear-gradient(135deg, #111418 0%, #1b2026 58%, #121519 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .085;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.hero .eyebrow { color: #f8d76a; }
.hero-copy p { max-width: 690px; margin: 26px 0 0; color: rgba(255,255,255,.74); font-size: clamp(1.06rem, 1.7vw, 1.24rem); }
.hero .display { color: var(--white); }
.hero .display em { color: var(--brand); font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: var(--ink); }
.btn--primary:hover { background: #ffc62b; }
.btn--ghost { border-color: rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.04); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 38px; color: rgba(255,255,255,.74); font-size: .91rem; font-weight: 650; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { color: var(--brand); font-size: 1rem; }

.hero-media { position: relative; min-height: 535px; }
.photo { position: absolute; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.12); background: #30343a; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--main { inset: 0 20% 5% 2%; }
.photo--main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.32), transparent 44%); }
.photo--top { width: 42%; height: 34%; right: 0; top: 6%; border: 6px solid #1a1e23; }
.photo--bottom { width: 47%; height: 33%; right: 0; bottom: 0; border: 6px solid #1a1e23; }
.media-label { position: absolute; left: 28px; bottom: 25px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 999px; background: rgba(21,24,28,.76); color: var(--white); backdrop-filter: blur(8px); font-size: .82rem; font-weight: 750; }
.media-label::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(254,185,0,.16); }

.quick-strip { position: relative; z-index: 5; margin-top: -38px; }
.quick-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.quick-item { min-height: 112px; padding: 26px 30px; display: flex; gap: 16px; align-items: flex-start; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-item i { color: var(--brand-strong); font-size: 1.35rem; margin-top: 2px; }
.quick-item strong { display: block; color: var(--ink); font-size: .96rem; }
.quick-item span { display: block; color: var(--muted); font-size: .86rem; margin-top: 3px; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { position: relative; overflow: hidden; min-height: 410px; border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,15,18,.94) 5%, rgba(13,15,18,.52) 55%, rgba(13,15,18,.06) 100%); }
.service-card:hover img { transform: scale(1.035); }
.service-card-content { position: absolute; z-index: 2; inset: auto 30px 30px; }
.service-number { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: var(--ink); font-size: .8rem; font-weight: 900; }
.service-card h3 { margin: 14px 0 8px; font-size: 1.55rem; line-height: 1.1; letter-spacing: -.02em; }
.service-card p { margin: 0; max-width: 520px; color: rgba(255,255,255,.76); font-size: .95rem; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.split-media { position: relative; min-height: 540px; }
.split-media img { width: 88%; height: 540px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media-card { position: absolute; right: 0; bottom: 30px; width: min(300px, 70%); padding: 24px; border-radius: var(--radius); background: var(--brand); color: var(--ink); box-shadow: var(--shadow); }
.split-media-card strong { display: block; font-size: 1.13rem; line-height: 1.25; }
.split-media-card span { display: block; margin-top: 8px; font-size: .9rem; opacity: .76; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.check-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
.check-list i { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(254,185,0,.2); color: #9a7000; font-size: .87rem; }
.check-list strong { display: block; color: var(--ink); }
.check-list span { display: block; color: var(--muted); font-size: .93rem; margin-top: 2px; }

.process { position: relative; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { min-height: 240px; padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); }
.process-card .num { color: #9b7100; font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.process-card h3 { margin: 34px 0 9px; color: var(--ink); font-size: 1.14rem; line-height: 1.2; }
.process-card p { margin: 0; color: var(--muted); font-size: .91rem; }

.coverage { position: relative; overflow: hidden; background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: 52px; }
.coverage::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(254,185,0,.11); right: -180px; top: -200px; }
.coverage-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: center; }
.coverage .section-title { color: var(--white); }
.coverage p { color: rgba(255,255,255,.66); }
.city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-list span { padding: 11px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.86); font-size: .88rem; font-weight: 700; }

.contact-section { position: relative; overflow: hidden; background: #eef0f2; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 48px; align-items: start; }
.contact-panel { position: sticky; top: 112px; }
.contact-direct { margin-top: 30px; display: grid; gap: 12px; }
.contact-direct a { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: 16px; background: var(--white); border: 1px solid var(--line); color: var(--ink); font-weight: 750; }
.contact-direct a i { color: #9c7300; font-size: 1.15rem; }
.contact-note { margin-top: 22px; color: var(--muted); font-size: .9rem; }
.form-card { padding: 34px; border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 16px 45px rgba(21,24,28,.08); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d8dce1; border-radius: 13px; background: #fff; color: var(--ink); padding: 13px 14px; outline: 0; transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #d09a00; box-shadow: 0 0 0 4px rgba(254,185,0,.15); }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 22px; }
.form-footer .btn { border: 0; }
.form-status { min-height: 24px; color: var(--muted); font-size: .9rem; }
.form-status.is-success { color: var(--success); font-weight: 700; }
.form-status.is-error { color: var(--danger); font-weight: 700; }

.faq { max-width: 900px; margin-inline: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; border: 0; background: transparent; color: var(--ink); padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; text-align: left; font-weight: 800; }
.faq-question i { transition: transform .2s ease; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 38px 22px 0; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.footer { background: #0f1215; color: rgba(255,255,255,.72); padding: 66px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 48px; padding-bottom: 42px; }
.footer .brand { font-size: 1.7rem; }
.footer-about { max-width: 500px; margin: 18px 0 0; color: rgba(255,255,255,.58); }
.footer h3 { margin: 0 0 14px; color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { display: grid; gap: 9px; font-size: .91rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.47); }

.floating-contact { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 54px; height: 54px; border-radius: 50%; background: var(--brand); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: 1.25rem; transition: transform .2s ease; }
.floating-contact:hover { transform: translateY(-3px); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
button:disabled { opacity: .62; cursor: wait; transform: none !important; }

@media (max-width: 980px) {
  :root { --header-h: 74px; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav { position: fixed; inset: var(--header-h) 18px auto; display: none; margin: 0; padding: 18px; border-radius: 18px; background: #1b1f24; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 0; }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 11px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a:last-child { border-bottom: 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 62px); }
  .hero-grid, .split, .coverage-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 500px; max-width: 720px; width: 100%; margin-inline: auto; }
  .quick-strip-inner { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .quick-item:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split-media { order: 2; }
  .split-media img { height: 500px; }
  .contact-panel { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 34px; }
  .hero { padding-bottom: 70px; }
  .hero-media { min-height: 415px; margin-top: 14px; }
  .photo--main { inset: 0 13% 7% 0; }
  .photo--top { width: 44%; height: 31%; top: 8%; }
  .photo--bottom { width: 50%; height: 31%; }
  .media-label { left: 18px; bottom: 18px; }
  .hero-proof { display: grid; gap: 10px; }
  .services-grid, .process-grid, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .service-card { min-height: 360px; }
  .service-card-content { inset: auto 24px 24px; }
  .coverage { padding: 34px 24px; }
  .form-card { padding: 24px 20px; border-radius: var(--radius); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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