:root {
  --navy: #061A3A;
  --navy-2: #0B244C;
  --steel: #7E8A99;
  --stone: #E9ECEF;
  --stone-2: #F6F7F8;
  --gold: #C9902E;
  --ink: #151A23;
  --muted: #5B6472;
  --white: #FFFFFF;
  --shadow: 0 18px 50px rgba(6, 26, 58, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.section-pad { padding: 90px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(126, 138, 153, 0.18);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 190px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.nav-phone {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
}
.nav-phone::after { display: none; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 26, 58, 0.92), rgba(6, 26, 58, 0.72)),
    radial-gradient(circle at 75% 35%, rgba(201, 144, 46, 0.35), transparent 30%),
    linear-gradient(135deg, #121820, #424B56);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(30deg, transparent 49%, rgba(255,255,255,.8) 50%, transparent 51%),
    linear-gradient(150deg, transparent 49%, rgba(255,255,255,.8) 50%, transparent 51%);
  background-size: 110px 110px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 { line-height: 1.08; margin: 0; color: inherit; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 7vw, 6.2rem); letter-spacing: -0.045em; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -0.035em; color: var(--navy); }
h3 { font-size: 1.2rem; color: var(--navy); }
.lead { font-size: 1.23rem; max-width: 680px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; gap: 14px; margin: 32px 0 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-secondary { border-color: rgba(255,255,255,.38); color: var(--white); }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row span {
  border: 1px solid rgba(255,255,255,.20);
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: 0.92rem;
}
.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.35);
}
.card-topline {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(126,138,153,.25);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.service-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-highlight span {
  background: var(--stone-2);
  border: 1px solid rgba(126,138,153,.20);
  padding: 14px;
  border-radius: 14px;
  color: var(--navy);
  font-weight: 800;
}
.quote-box {
  margin-top: 18px;
  background: var(--navy);
  color: var(--white);
  padding: 22px;
  border-radius: 18px;
  border-left: 5px solid var(--gold);
}
.quote-box p { margin: 0; }

.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.services-section { background: var(--stone-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(126,138,153,.18);
  box-shadow: 0 10px 32px rgba(6,26,58,.06);
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(201,144,46,.12);
  color: var(--gold);
  border-radius: 14px;
  font-size: 1.5rem;
}
.service-card p { color: var(--muted); margin-bottom: 0; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}
.value-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.value-list {
  display: grid;
  gap: 16px;
}
.value-list div {
  background: var(--navy);
  color: var(--white);
  padding: 24px;
  border-radius: 18px;
  border-left: 5px solid var(--gold);
}
.value-list strong { display: block; font-size: 1.1rem; margin-bottom: 6px; }
.value-list span { color: rgba(255,255,255,.78); }

.process-section { background: linear-gradient(180deg, var(--stone-2), var(--white)); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  background: var(--white);
  border: 1px solid rgba(126,138,153,.18);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 32px rgba(6,26,58,.06);
}
.process-step span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.process-step p { color: var(--muted); margin-bottom: 0; }

.contact-section { background: var(--navy); color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy h2 { color: var(--white); }
.contact-copy p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 1.08rem; }
.contact-lines { display: grid; gap: 10px; margin-top: 24px; font-weight: 900; color: var(--gold); }
.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 800; color: var(--navy); }
input, select, textarea {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(126,138,153,.35);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--white);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(201,144,46,.22);
  border-color: var(--gold);
}
.contact-form .btn { width: 100%; border: none; }
.form-note { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

.site-footer {
  background: #030D20;
  color: rgba(255,255,255,.78);
  padding: 34px 0;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.site-footer img { width: 150px; filter: brightness(0) invert(1) grayscale(1); opacity: .88; }
.site-footer strong, .site-footer a { color: var(--white); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    background: var(--navy);
    border: 0;
    padding: 12px;
    border-radius: 12px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }
  .main-nav {
    position: fixed;
    inset: 86px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 8px 0; }
  .nav-phone { text-align: center; }
  .hero-grid, .value-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 66px 0; }
  .brand img { width: 150px; }
  h1 { font-size: 2.65rem; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .service-highlight { grid-template-columns: 1fr; }
  .hero-card, .contact-form { padding: 22px; }
  .footer-grid { display: grid; }
}
