:root {
  --accent: #155e8a;
  --accent-2: #f0b13a;
  --dark: #09283b;
  --ink: #10202c;
  --muted: #66727b;
  --soft: #eef6fb;
  --paper: #ffffff;
  --line: rgba(16, 32, 44, 0.16);
  --shadow: 0 18px 48px rgba(12, 28, 40, 0.15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.58;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.skip-link { position: absolute; left: -999px; top: auto; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 99; background: #fff; color: var(--ink); padding: .6rem .8rem; border: 2px solid var(--accent); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 236px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--dark);
}
.brand img { width: 44px; height: 44px; }
.brand span { line-height: 1.05; }
.nav-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  position: relative;
}
.nav-toggle span:before { position: absolute; top: -7px; }
.nav-toggle span:after { position: absolute; top: 7px; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.primary-nav a, .dropdown-button {
  text-decoration: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 14px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.primary-nav a:hover, .dropdown-button:hover, .primary-nav a:focus-visible, .dropdown-button:focus-visible { color: var(--accent); outline: none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: var(--accent);
  color: #fff !important;
  padding: 11px 16px !important;
  border-radius: 8px;
  margin-left: 8px;
}
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 278px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  display: none;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown.open .dropdown-menu { display: grid; }
.dropdown-menu a {
  padding: 11px 12px;
  border-radius: 6px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.dropdown-menu a:last-child { border-bottom: 0; }
.dropdown-menu a:hover { background: var(--soft); }
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,20,16,.84) 0%, rgba(6,20,16,.7) 30%, rgba(6,20,16,.24) 55%, rgba(6,20,16,.04) 100%);
}
body.astra .hero:after {
  background: linear-gradient(270deg, rgba(5,24,36,.84) 0%, rgba(5,24,36,.7) 30%, rgba(5,24,36,.24) 55%, rgba(5,24,36,.04) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 58px 0 72px;
}
body.astra .hero-inner { justify-content: flex-end; }
.hero-copy { width: min(590px, 100%); }
.eyebrow {
  display: none;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
}
h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--dark);
}
h1 {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.9rem);
  margin: 0 0 18px;
}
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin: 0 0 18px; }
h3 { font-size: 1.22rem; margin: 0 0 10px; }
.hero p {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  max-width: 48ch;
  text-shadow: 0 1px 2px rgba(0,0,0,.24);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  border: 2px solid transparent;
}
.button.primary { background: var(--accent-2); color: #1d1a12; }
.button.secondary { border-color: rgba(255,255,255,.72); color: #fff; }
.button.dark { background: var(--dark); color: #fff; }
.button.light { background: #fff; color: var(--dark); border-color: var(--line); }
.band { padding: 82px 0; }
.band.soft { background: var(--soft); }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-head { max-width: 790px; margin-bottom: 32px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 42px;
  align-items: start;
}
body.astra .split.alt { grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr); }
.feature-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}
.feature-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.intro-clean {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr);
  gap: 38px;
  align-items: start;
}
.intro-copy p { max-width: 70ch; }
.intro-aside {
  display: grid;
  gap: 16px;
}
.intro-aside .feature-image img { aspect-ratio: 16/11; }
.quiet-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(10, 26, 34, .08);
}
.quiet-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.quiet-card li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}
.quiet-card li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.story-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}
.story-card p { margin-bottom: 0; color: var(--muted); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10, 26, 34, .08);
}
.card a { color: var(--accent); font-weight: 850; text-decoration: none; }
.card p { color: var(--muted); margin-bottom: 0; }
.stripe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.stripe {
  border-left: 4px solid var(--accent);
  background: #fff;
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 8px 24px rgba(10, 26, 34, .06);
}
.area-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.area-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  text-align: center;
  font-weight: 800;
  color: var(--dark);
}
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.check-list li { padding-left: 28px; position: relative; }
.check-list li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  position: absolute;
  left: 4px;
  top: .62em;
}
.cta-band {
  background: var(--dark);
  color: #fff;
  padding: 54px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 760px; }
.faq { display: grid; gap: 14px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}
.faq summary { cursor: pointer; font-weight: 850; color: var(--dark); }
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  gap: 26px;
  align-items: stretch;
}
.contact-panel form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
label { display: grid; gap: 6px; font-weight: 800; color: var(--dark); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 122px; resize: vertical; }
.hidden-field { position: absolute; left: -9999px; }
.site-footer {
  background: #071812;
  color: rgba(255,255,255,.78);
  padding: 46px 0 24px;
}
body.astra .site-footer { background: #061b2a; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 26px;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer h3 { color: #fff; }
.small { font-size: .92rem; color: rgba(255,255,255,.62); }
.crumbs { margin-bottom: 14px; color: rgba(255,255,255,.8); font-weight: 800; }
.crumbs a { color: #fff; }
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 78px);
    overflow: auto;
  }
  body.nav-open .primary-nav { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border-radius: 8px; margin: 0 0 8px 12px; min-width: 0; }
  .nav-cta { margin-left: 0; }
  .split, body.astra .split.alt, .contact-panel, .footer-grid, .intro-clean { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .story-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero { min-height: 520px; }
  .hero:after, body.astra .hero:after { background: linear-gradient(0deg, rgba(5,20,18,.9), rgba(5,20,18,.54)); }
  body.astra .hero-inner { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .header-inner { width: min(100% - 24px, 1180px); min-height: 72px; gap: 12px; }
  .brand { min-width: 0; font-size: .95rem; }
  .brand img { width: 38px; height: 38px; }
  .nav-toggle { border: 2px solid var(--accent); background: var(--accent); }
  .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after { background: #fff; }
  h1 { font-size: clamp(1.8rem, 7.2vw, 1.95rem); line-height: 1.12; overflow-wrap: break-word; }
  h2 { font-size: clamp(1.45rem, 6.2vw, 1.65rem); line-height: 1.14; overflow-wrap: break-word; max-width: 300px; }
  .section-head p, .split p { max-width: 300px; }
  .hero p { font-size: .98rem; line-height: 1.55; overflow-wrap: break-word; }
  .hero-copy { width: min(100%, 300px); }
  .eyebrow { max-width: 100%; white-space: normal; }
  .hero { min-height: 480px; }
  .band { padding: 58px 0; }
  .service-grid, .stripe-grid, .field-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .actions { align-items: stretch; }
  .button { width: 100%; }
}