:root {
  --navy: #0d2340;
  --navy-deep: #081a31;
  --slate: #3a4757;
  --slate-soft: #5b6b7e;
  --line: #e3e7ec;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --accent: #a8473d;
  --accent-dark: #84352d;
  --text: #16202d;
  --muted: #6b7787;
  --radius: 8px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(13, 35, 64, .06), 0 2px 6px rgba(13, 35, 64, .04);
  --shadow-md: 0 8px 24px rgba(13, 35, 64, .08);
  --shadow-lg: 0 20px 48px rgba(13, 35, 64, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3 { color: var(--navy); margin: 0 0 .6em; line-height: 1.15; letter-spacing: 0; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--slate); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 12px;
}
.muted { color: var(--muted); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; border-radius: 6px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; font-weight: 700; color: var(--navy); }
.brand-line-1 { font-size: 1rem; }
.brand-line-2 { font-size: .8rem; color: var(--slate); font-weight: 500; margin-top: 3px; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: var(--slate); font-weight: 500; font-size: .95rem; }
.primary-nav a:hover { color: var(--navy); }
.primary-nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.primary-nav .nav-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: 0; width: 40px; height: 40px;
  padding: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px auto;
  background: var(--navy); transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-block { display: flex; width: 100%; }

/* HERO */
.hero {
  background: linear-gradient(180deg, #f4f6f8 0%, #ffffff 100%);
  padding: 84px 0 96px;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .lede { font-size: 1.12rem; max-width: 60ch; }
.hero-actions { display: flex; gap: 12px; margin: 28px 0 22px; flex-wrap: wrap; }
.hero-badges {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 14px 22px; flex-wrap: wrap;
  font-size: .9rem; color: var(--slate);
}
.hero-badges li { position: relative; padding-left: 18px; }
.hero-badges li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 520px;
  background: var(--navy);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,26,49,.74) 100%);
  pointer-events: none;
}
.hero-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-visual figcaption span {
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(8,26,49,.48);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 600;
}

/* SECTION HEADS */
.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head .section-lede { color: var(--slate); font-size: 1.05rem; }

/* SERVICES */
.services { padding: 96px 0; }
.services-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.services-feature img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.services-feature > div {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-feature h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.services-feature p {
  color: rgba(255,255,255,.82);
}
.services-feature .eyebrow {
  color: #ffb4aa;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-kicker {
  display: inline-block;
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .16em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 18px;
}
.service-card p { margin: 0; }
.service-card--accent {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: transparent;
  color: #fff;
}
.service-card--accent h3 { color: #fff; }
.service-card--accent p { color: rgba(255,255,255,.82); }
.service-card--accent .service-kicker { color: #ffb4aa; }
.card-link {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
}
.card-link:hover { color: #fff; border-color: #fff; }

/* PROCESS */
.process { padding: 96px 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.process-steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.step-num {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.process-steps h3 { margin-bottom: 6px; font-size: 1.02rem; }
.process-steps p { font-size: .92rem; margin: 0; }

/* ABOUT */
.about { padding: 96px 0; }
.about-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr .8fr;
  gap: 32px;
  align-items: start;
}
.about-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 96px;
}
.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 0;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.about-facts dt { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 4px; }
.about-facts dd { margin: 0; color: var(--navy); font-weight: 600; }

.about-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.about-card h3 { color: #fff; }
.about-card p { color: rgba(255,255,255,.82); }
.about-card .btn-primary { background: var(--accent); margin-top: 8px; }
.about-card .btn-primary:hover { background: var(--accent-dark); }
.phone-link {
  display: block; text-align: center; margin-top: 14px;
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.phone-link strong { color: #fff; }
.phone-link:hover { color: #fff; }

/* QUOTE */
.quote { padding: 96px 0; background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.quote::before {
  content: ""; position: absolute; inset: -30% -10% auto auto;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(179,70,58,.35), transparent 70%);
  pointer-events: none;
}
.quote-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start;
  position: relative;
}
.quote h2 { color: #fff; }
.quote .eyebrow { color: #ffb1a5; }
.quote-copy p { color: rgba(255,255,255,.82); }
.quote-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.quote-points li { padding-left: 28px; position: relative; color: rgba(255,255,255,.9); }
.quote-points li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent);
  background-image: linear-gradient(135deg, var(--accent), #d4685a);
}

.quote-form {
  background: #fff; color: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: grid; gap: 16px;
}
.form-row { display: grid; gap: 6px; }
.form-row--split { grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row--split > div { display: grid; gap: 6px; }
.form-row label { font-size: .88rem; font-weight: 600; color: var(--navy); }
.form-row label span { color: var(--accent); margin-left: 2px; }
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,35,64,.08);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.form-actions .btn { align-self: flex-start; }
.form-note { font-size: .85rem; color: var(--muted); margin: 0; }

/* CONTACT */
.contact { padding: 96px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.contact-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--accent);
}
.contact-list a, .contact-list address {
  font-style: normal;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.5;
}
.contact-list a:hover { color: var(--accent); }

/* FOOTER */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 36px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 6px; }
.footer-brand strong { color: #fff; display: block; font-size: 1rem; }
.footer-brand span { font-size: .85rem; }
.footer-meta { text-align: right; font-size: .85rem; }
.footer-meta p { margin: 2px 0; color: rgba(255,255,255,.7); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 360px; }
  .hero-visual img { min-height: 360px; }
  .services-feature { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .quote-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { position: static; }
  .about-visual img { aspect-ratio: 16 / 9; }
  .services, .process, .about, .quote, .contact { padding: 72px 0; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px;
    display: none;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav .nav-cta {
    text-align: center;
    margin: 12px 0 4px;
    border-radius: 999px;
  }
  .service-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row--split { grid-template-columns: 1fr; }
  .services-feature > div { padding: 28px; }
  .hero-visual,
  .hero-visual img { min-height: 300px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .brand-text { display: none; }
}
