:root {
  --primary: #f2a34a;
  --primary-dark: #c87520;
  --ink: #f8f3eb;
  --muted: #c9bdad;
  --bg: #0f171b;
  --surface: #17242a;
  --surface-soft: #1f3037;
  --line: #38505a;
  --focus: #ffe29d;
  --radius: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.skip-link {
  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:focus {
  position: fixed;
  top: 10px;
  right: 10px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--primary);
  color: #17100a;
  z-index: 2147483002;
  font-weight: 800;
}

.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 27, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; font-weight: 800; letter-spacing: .02em; }
.brand span { color: var(--primary); }
.main-nav ul { display: flex; gap: 26px; align-items: center; list-style: none; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-weight: 650; }
.main-nav a:hover { color: var(--primary); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: radial-gradient(circle at 18% 25%, rgba(30,117,128,.35), transparent 36%), linear-gradient(135deg, #081014, #102d35 58%, #081014);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,16,20,.45) 15%, transparent 58%); z-index: -2; }
.hero::after { content: ""; position: absolute; inset: auto -15% -55% auto; width: 700px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(242,163,74,.25), transparent 65%); z-index: -1; }
.hero-content { padding-block: 100px; max-width: 760px; }
.eyebrow { color: var(--primary); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { margin: 8px 0 20px; font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 1.2; }
.intro-answer { max-width: 720px; margin: 0 0 28px; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 24px; border-radius: 999px; text-decoration: none; border: 1px solid transparent; font-weight: 800; cursor: pointer; }
.button-primary { background: var(--primary); color: #1b1108; }
.button-primary:hover { background: #ffc171; }
.button-ghost { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.button-ghost:hover { border-color: var(--primary); color: var(--primary); }

.section { padding-block: 86px; }
.section-soft { background: var(--surface); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading h2 { margin: 0 0 12px; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; color: var(--primary); }
.section-heading p { margin: 0; color: var(--muted); }
.prose { max-width: 900px; }
.prose p { margin: 0 0 18px; }
.prose strong { color: var(--primary); }

.services-grid, .trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card, .trust-card { position: relative; overflow: hidden; min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-soft); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .15; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,27,.98), rgba(15,23,27,.32)); }
.service-card > div { position: relative; z-index: 1; }
.service-card h3, .trust-card h3 { margin: 0 0 12px; color: var(--primary); font-size: 1.25rem; }
.service-card p, .trust-card p { margin: 0; color: var(--muted); }
.trust-card { min-height: 180px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin-bottom: 14px; }
.contact-list a { color: var(--primary); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.map { margin-top: 24px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map iframe { display: block; width: 100%; min-height: 280px; border: 0; }
.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--muted); font-weight: 700; }
.field input { width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; background: #0c1418; color: var(--ink); }
.form-note { font-size: 1rem; color: var(--muted); }
.form-status { min-height: 1.7em; margin-top: 12px; color: var(--primary); }

.reviews-shell { min-height: 220px; }
.updated { margin-top: 34px; color: var(--muted); font-size: .9rem; }
.site-footer { padding: 52px 0 28px; border-top: 1px solid var(--line); background: #0b1215; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.site-footer h2, .site-footer h3 { margin: 0 0 10px; color: var(--primary); font-size: 1.25rem; }
.site-footer p { margin: 0 0 8px; color: var(--muted); }
.site-footer nav { display: flex; flex-direction: column; gap: 6px; }
.site-footer a { color: var(--muted); }
.copyright { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; color: var(--muted); }

.fab-container { position: fixed; bottom: 24px; left: 24px; z-index: 2147483000; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.fab { pointer-events: auto; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 7px 20px rgba(0,0,0,.34); transition: transform .2s ease; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 27px; height: 27px; fill: white; }
.fab-wa { background: #168f4e; }
.fab-call { background: var(--primary-dark); }

.legal-main { min-height: 68vh; padding-block: 76px; }
.legal-main h1 { margin-top: 0; font-size: clamp(2rem, 5vw, 3.3rem); color: var(--primary); }
.legal-main h2 { margin-top: 34px; color: var(--primary); }
.legal-main p, .legal-main li { max-width: 820px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav { position: absolute; top: 72px; right: 20px; left: 20px; display: none; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #101b20; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 5px; }
  .main-nav a { display: block; padding: 10px; }
  .services-grid, .trust-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { min-height: 620px; }
  .hero-content { padding-block: 78px; }
  .section { padding-block: 64px; }
  .contact-form { padding: 22px 18px; }
  .fab-container { bottom: 16px; left: 16px; }
  .fab { width: 48px; height: 48px; }
}

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

@media print { .site-header, .fab-container, #a11y-toggle, #a11y-panel { display: none !important; } }
