﻿:root {
      --ink: #141414;
      --muted: #5f646d;
      --line: #dedede;
      --soft: #f4f5f6;
      --white: #ffffff;
      --red: #c7182b;
      --red-dark: #990f1f;
      --green: #1c6b50;
      --gold: #c7932d;
      --shadow: 0 18px 45px rgba(10, 10, 10, .12);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      background: var(--white);
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }

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

    .topbar {
      background: var(--ink);
      color: var(--white);
      font-size: 14px;
    }
    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 42px;
      gap: 18px;
    }
    .topbar-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #e8e8e8;
      flex-wrap: wrap;
    }
    .topbar strong { color: var(--white); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }
    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
      min-width: max-content;
    }
    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 6px;
      background: var(--red);
      color: var(--white);
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .16);
    }
    .brand span:last-child {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      margin-top: -4px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #2f3338;
      font-weight: 700;
      font-size: 14px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 4px;
      border: 2px solid transparent;
      background: var(--red);
      color: var(--white);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); background: var(--red-dark); }
    .btn.secondary {
      background: transparent;
      color: var(--ink);
      border-color: var(--ink);
    }
    .btn.secondary:hover { background: var(--ink); color: var(--white); }
    .btn.secondary.light {
      color: var(--white);
      border-color: var(--white);
    }
    .btn.secondary.light:hover {
      background: var(--white);
      color: var(--ink);
    }

    .hero {
      min-height: calc(100vh - 124px);
      position: relative;
      display: grid;
      align-items: center;
      overflow: hidden;
      background: #111 url("https://assets.mixkit.co/videos/4716/4716-thumb-720-0.jpg") center/cover;
      color: var(--white);
    }
    .hero-video,
    .hero-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .hero-video {
      object-fit: cover;
      z-index: 0;
    }
    .hero-overlay {
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .6) 42%, rgba(0, 0, 0, .2)),
        linear-gradient(0deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .05));
    }
    .hero .container {
      padding: 72px 0 96px;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .eyebrow {
      color: #f1c35d;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
      margin: 0 0 12px;
    }
    h1, h2, h3 { line-height: 1.1; margin: 0; letter-spacing: 0; }
    h1 {
      max-width: 760px;
      font-size: clamp(42px, 7vw, 86px);
      text-transform: uppercase;
    }
    .hero p {
      max-width: 640px;
      margin: 22px 0 30px;
      color: #f0f0f0;
      font-size: 19px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
    .quick-services {
      position: relative;
      z-index: 2;
      margin-top: -54px;
    }
    .quick-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--white);
      box-shadow: var(--shadow);
      border-radius: 6px;
      overflow: hidden;
    }
    .quick-item {
      min-height: 150px;
      padding: 30px;
      border-right: 1px solid var(--line);
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 16px;
      align-items: start;
    }
    .quick-item:last-child { border-right: 0; }
    .icon {
      width: 52px;
      height: 52px;
      border-radius: 4px;
      display: grid;
      place-items: center;
      background: #f1f1f1;
      color: var(--red);
      font-size: 26px;
      font-weight: 900;
    }
    .quick-item h3 { font-size: 20px; margin-bottom: 8px; }
    .quick-item p { margin: 0; color: var(--muted); font-size: 15px; }

    section { padding: 86px 0; }
    .section-head {
      max-width: 760px;
      margin-bottom: 36px;
    }
    h2 {
      font-size: clamp(32px, 4vw, 52px);
      text-transform: uppercase;
    }
    .section-head p {
      color: var(--muted);
      font-size: 18px;
      margin: 18px 0 0;
    }
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .photo {
      border-radius: 6px;
      overflow: hidden;
      min-height: 420px;
      box-shadow: var(--shadow);
    }
    .photo img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
    }
    .copy p { color: var(--muted); font-size: 17px; margin: 18px 0; }
    .ticks {
      list-style: none;
      padding: 0;
      margin: 26px 0 0;
      display: grid;
      gap: 12px;
    }
    .ticks li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-weight: 800;
    }
    .ticks li::before {
      content: "";
      width: 10px;
      height: 10px;
      margin-top: 9px;
      background: var(--red);
      border-radius: 50%;
      flex: 0 0 auto;
    }

    .band {
      background: var(--soft);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 6px;
      overflow: hidden;
      min-height: 100%;
    }
    .service-card img {
      height: 210px;
      width: 100%;
      object-fit: cover;
    }
    .service-card div {
      padding: 24px;
    }
    .service-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .service-card p {
      color: var(--muted);
      margin: 0 0 16px;
    }
    .service-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
      color: #2e3339;
      font-weight: 700;
      font-size: 15px;
    }

    .trust {
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .68)),
        url("https://images.unsplash.com/photo-1625047509248-ec889cbff17f?auto=format&fit=crop&w=1800&q=80") center/cover;
      color: var(--white);
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 32px;
    }
    .trust-item {
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 6px;
      padding: 28px;
      background: rgba(255, 255, 255, .08);
      min-height: 150px;
    }
    .trust-item strong {
      display: block;
      font-size: 36px;
      color: #f1c35d;
      line-height: 1;
      margin-bottom: 14px;
    }
    .trust-item h3 {
      font-size: 19px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .trust-item p { margin: 0; color: #eeeeee; }

    .cta {
      background: var(--red);
      color: var(--white);
      padding: 54px 0;
    }
    .cta .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .cta h2 { font-size: clamp(28px, 4vw, 46px); }
    .cta p { margin: 10px 0 0; max-width: 620px; color: #ffe8eb; }
    .cta .btn { background: var(--white); color: var(--red); }
    .cta .btn:hover { background: var(--ink); color: var(--white); }

    .faq {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 42px;
    }
    details {
      border-bottom: 1px solid var(--line);
      padding: 20px 0;
    }
    summary {
      cursor: pointer;
      font-weight: 900;
      font-size: 18px;
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 16px;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      color: var(--red);
      font-size: 24px;
      line-height: 1;
    }
    details[open] summary::after { content: "-"; }
    details p {
      color: var(--muted);
      margin: 12px 0 0;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 36px;
      align-items: start;
    }
    .contact-info {
      background: var(--ink);
      color: var(--white);
      border-radius: 6px;
      padding: 34px;
    }
    .contact-info h3 {
      font-size: 26px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .contact-row {
      border-top: 1px solid rgba(255, 255, 255, .18);
      padding: 18px 0;
    }
    .contact-row span {
      display: block;
      color: #bfc3c9;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    input, textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 4px;
      min-height: 52px;
      padding: 13px 14px;
      background: var(--white);
      color: var(--ink);
    }
    textarea {
      grid-column: 1 / -1;
      min-height: 150px;
      resize: vertical;
    }
    form .btn { width: max-content; }
    .full { grid-column: 1 / -1; }

    footer {
      background: #0b0b0c;
      color: var(--white);
      padding: 58px 0 26px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr .8fr;
      gap: 28px;
      margin-bottom: 38px;
    }
    footer h3 {
      font-size: 16px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    footer p, footer a, footer li {
      color: #c8cbd0;
      font-size: 15px;
    }
    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
    }
    .copyright {
      border-top: 1px solid rgba(255, 255, 255, .14);
      padding-top: 22px;
      color: #aeb2b8;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    @media (max-width: 940px) {
      .topbar .container, .nav, .cta .container {
        align-items: flex-start;
        flex-direction: column;
      }
      .nav-links { justify-content: flex-start; gap: 14px; }
      .hero { min-height: auto; }
      .quick-grid, .split, .services-grid, .trust-grid, .faq, .contact-wrap, .footer-grid {
        grid-template-columns: 1fr;
      }
      .quick-services { margin-top: 0; }
      .quick-grid { border-radius: 0; box-shadow: none; border-bottom: 1px solid var(--line); }
      .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
      .quick-item:last-child { border-bottom: 0; }
      .photo, .photo img { min-height: 320px; }
      section { padding: 64px 0; }
    }

    @media (max-width: 600px) {
      .container { width: min(100% - 28px, var(--max)); }
      .topbar-links { gap: 10px; }
      .nav-links a:not(.btn) { display: none; }
      h1 { font-size: 40px; }
      .hero p { font-size: 17px; }
      .quick-item { grid-template-columns: 1fr; padding: 24px; }
      form { grid-template-columns: 1fr; }
      .full, textarea { grid-column: auto; }
      .btn { width: 100%; }
    }

