:root {
  --navy: #061f4f;
  --navy-dark: #031634;
  --navy-soft: #0d2f6d;
  --gold: #d8b24c;
  --gold-light: #f0d483;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --text: #1c2533;
  --muted: #5b6573;
  --border: #d9e2ef;
  --shadow: 0 18px 45px rgba(3, 22, 52, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

/* Accessibility: visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 999;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(3, 22, 52, 0.97);
  border-bottom: 1px solid rgba(216, 178, 76, 0.25);
  backdrop-filter: blur(10px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 150px;
  height: auto;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-quote {
  color: var(--gold-light) !important;
  font-weight: 800;
}

.nav-phone {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-phone:hover {
  background: var(--gold-light);
  color: var(--navy-dark) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(rgba(3, 22, 52, 0.86), rgba(3, 22, 52, 0.92)),
    radial-gradient(circle at top left, rgba(216, 178, 76, 0.28), transparent 35%),
    linear-gradient(135deg, var(--navy-dark), var(--navy-soft));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 36px));
  padding: 76px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  border: 1px solid rgba(216, 178, 76, 0.5);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero-sub {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 900;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 12px 28px rgba(216, 178, 76, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Sections ---------- */
.section {
  padding: 92px 0;
}

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

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(216, 178, 76, 0.18), transparent 30%),
    var(--navy-dark);
  color: var(--white);
}

.eyebrow {
  color: #a9821f;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.gold {
  color: var(--gold-light);
}

h2 {
  color: var(--navy-dark);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.intro p,
.section-heading p,
.split p,
.process-step p,
.service-card p,
.value-grid p,
.quote-section p,
.services-note,
.faq-item p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-heading h2 {
  margin-bottom: 16px;
}

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

/* ---------- Services ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 25px rgba(3, 22, 52, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(3, 22, 52, 0.1);
}

.service-card h3,
.process-step h3,
.value-grid h3 {
  color: var(--navy-dark);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.services-note {
  margin-top: 30px;
  font-style: italic;
  text-align: center;
}

/* ---------- Who We Serve ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.split h2 {
  margin-bottom: 18px;
}

.split p {
  margin-bottom: 26px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.checklist li {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(3, 22, 52, 0.05);
  font-weight: 800;
}

.checklist span {
  color: var(--gold);
  margin-right: 8px;
  font-weight: 900;
}

/* ---------- Why / Value ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-item {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: none;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 25px rgba(3, 22, 52, 0.06);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 900;
  margin-bottom: 18px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(circle at top left, rgba(216, 178, 76, 0.22), transparent 40%),
    linear-gradient(135deg, var(--navy-dark), var(--navy-soft));
  color: var(--white);
  padding: 56px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(3, 22, 52, 0.05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 800;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
}

/* ---------- Quote ---------- */
.quote-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at bottom left, rgba(216, 178, 76, 0.32), transparent 35%);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.quote-grid h2 {
  margin-bottom: 18px;
}

.contact-panel {
  margin-top: 28px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-label {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-panel a {
  display: block;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-big {
  font-size: 1.5rem;
}

.contact-panel a:hover {
  color: var(--gold-light);
}

.contact-area {
  color: rgba(255, 255, 255, 0.72) !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-intro {
  color: var(--muted) !important;
  margin-bottom: 18px;
  font-weight: 600;
}

.hidden-field {
  display: none;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 178, 76, 0.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-button {
  width: 100%;
  border: none;
  font-size: 1rem;
  margin-top: 4px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.92rem;
  text-align: center;
  color: var(--muted) !important;
}

.form-note a {
  color: var(--navy);
  font-weight: 800;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  width: 170px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.footer-grid h3 {
  color: var(--gold-light);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

/* ---------- Sticky mobile contact bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  gap: 1px;
  background: rgba(3, 22, 52, 0.2);
  box-shadow: 0 -8px 24px rgba(3, 22, 52, 0.18);
}

.mobile-bar-btn {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  font-weight: 800;
  font-size: 0.98rem;
}

.mobile-bar-btn.call {
  background: var(--navy-dark);
  color: var(--white);
}

.mobile-bar-btn.quote {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-dark);
    border: 1px solid rgba(216, 178, 76, 0.25);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-quote,
  .nav-phone {
    text-align: center;
    margin-top: 8px;
  }

  .intro-grid,
  .split,
  .quote-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

  .card-grid,
  .value-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .hero {
    min-height: 600px;
  }
}

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

  .nav {
    width: min(100% - 24px, 1180px);
    height: 72px;
  }

  .brand img {
    width: 124px;
  }

  .nav-links {
    top: 72px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 58px 0;
  }

  .card-grid,
  .value-grid,
  .process-grid,
  .checklist,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .mobile-bar {
    display: flex;
  }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }

  .btn:hover,
  .service-card:hover {
    transform: none;
  }
}
