:root {
  --ink: #14213d;
  --muted: #5d6b7a;
  --line: #dce5ee;
  --blue: #0778b8;
  --blue-dark: #064d7a;
  --green: #1c8b5a;
  --gold: #f3b33d;
  --paper: #ffffff;
  --soft: #f4f8fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 14px;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.logo img {
  width: 180px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
}

.menu a {
  text-decoration: none;
  color: var(--ink);
}

.menu a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  white-space: nowrap;
}

.button:hover {
  background: var(--blue-dark);
}

.button.secondary {
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.button.light {
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid var(--line);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 34, 57, 0.86), rgba(8, 34, 57, 0.36)),
    url("assets/hero.jpg") center / cover;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 14px;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

.hero p {
  max-width: 680px;
  margin: 0 0 24px;
  font-size: 20px;
}

.hero-actions,
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  background: #fff;
  padding: 24px;
  min-height: 124px;
}

.trust-item strong {
  display: block;
  font-size: 22px;
  color: var(--blue-dark);
}

section {
  padding: 70px 0;
}

.soft {
  background: var(--soft);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.note {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

.service-card {
  min-height: 235px;
}

.service-card a {
  color: var(--blue-dark);
  font-weight: 800;
}

.list {
  padding-left: 20px;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
}

.image-panel img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.map-embed {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.photo-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.photo-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price {
  font-size: 42px;
  font-weight: 900;
  color: var(--blue-dark);
  margin: 8px 0;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.area-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.cta-band {
  color: #fff;
  background: var(--blue-dark);
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.page-hero {
  background: var(--blue-dark);
  color: #fff;
  padding: 72px 0;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.footer {
  background: #0b2238;
  color: #dce8f2;
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer a {
  color: #fff;
}

.footer-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
  border-radius: 4px;
}

.fineprint {
  color: #9fb1c1;
  font-size: 13px;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .menu {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hero {
    min-height: 560px;
  }

  .trust-row,
  .grid-2,
  .grid-3,
  .photo-grid,
  .footer-grid,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }

  .cta-band .section-inner {
    display: grid;
  }
}
