:root {
  --blue: #214b82;
  --navy: #0f2348;
  --red: #c94b3f;
  --cream: #f6f1e8;
  --text: #172033;
  --muted: #5d6678;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
}

.site-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding-bottom: 64px;
}

.nav {
  width: min(1120px, 92%);
  margin: auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-mark {
  color: var(--red);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.brand strong { font-size: 28px; }
.brand em { font-style: normal; font-weight: 300; letter-spacing: 5px; }

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.hero {
  width: min(1120px, 92%);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: .95;
  margin: 12px 0;
}

.hero-text {
  color: #e7edf7;
  font-size: 20px;
  line-height: 1.6;
}

.buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary { background: var(--red); color: white; }
.secondary { background: white; color: var(--blue); }

.hero-card,
.map-card {
  background: white;
  padding: 14px;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.hero-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.section {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 78px 0;
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  margin: 8px 0 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15,35,72,.08);
  border-top: 6px solid var(--blue);
  align-items: center;
}

.card h3 { color: var(--blue); font-size: 24px; }

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.map-card iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 18px;
}

.contact {
  background: var(--navy);
  color: white;
  width: 100%;
  padding-left: max(4%, calc((100% - 1120px) / 2));
  padding-right: max(4%, calc((100% - 1120px) / 2));
}

.contact h2 { color: white; }

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

.contact-grid div {
  background: rgba(255,255,255,.08);
  padding: 24px;
  border-radius: 20px;
}

.contact-grid strong {
  display: block;
  color: var(--red);
  margin-bottom: 10px;
}

.contact-grid a { color: white; }

footer {
  text-align: center;
  padding: 24px;
  background: #07152e;
  color: white;
}

.editable {
  outline: 0;
}

@media (max-width: 800px) {
  .nav, .hero, .split, .cards, .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav { display: block; }
  .nav-links { margin-top: 18px; }
  .hero-card img { height: 340px; }
}
