:root {
  --navy: #10233d;
  --navy-dark: #0a1830;
  --red: #c8202f;
  --red-dark: #a3121f;
  --cream: #f6f4ef;
  --gray: #5a6472;
  --border: #e3e1da;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.55;
}

h1, h2, h3 { font-weight: 700; margin: 0 0 0.5em; line-height: 1.2; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; padding: 12px 26px; }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
#contact .btn-secondary { color: var(--navy); border-color: var(--navy); }
#contact .btn-secondary:hover { background: rgba(16,35,61,0.06); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  box-shadow: 0 1px 8px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.logo img {
  display: block;
  height: 52px;
  width: auto;
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: #d9dee6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: #fff; }
.header-call {
  padding: 10px 20px;
  font-size: 0.88rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url("../images/hero.jpg") center 60% / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,24,48,0.72) 0%, rgba(10,24,48,0.82) 55%, rgba(10,24,48,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffb3ac;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 620px;
  color: #e7eaf0;
  margin-bottom: 34px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Strip */
.strip { background: var(--cream); border-bottom: 1px solid var(--border); }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px;
}
.strip-item { display: flex; flex-direction: column; gap: 2px; flex: 1 1 180px; text-align: center; }
.strip-item strong { font-size: 1.1rem; color: var(--red); }
.strip-item span { color: var(--gray); font-size: 0.9rem; }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--cream); }
.section-heading { text-align: center; margin-bottom: 46px; font-size: clamp(1.6rem, 3vw, 2.2rem); }

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-grid h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about-grid p { color: var(--gray); }
.highlight-card {
  background: var(--navy);
  color: #fff;
  padding: 32px;
  border-radius: 8px;
}
.highlight-card h3 { color: #fff; margin-bottom: 16px; }
.highlight-card ul { margin: 0; padding-left: 20px; color: #d9dee6; }
.highlight-card li { margin-bottom: 10px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  border-top: 4px solid var(--red);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray); margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-banner p { margin-bottom: 28px; color: #ffe4e2; }
.cta-banner .btn-primary { background: #fff; color: var(--red-dark); }
.cta-banner .btn-primary:hover { background: #f2f2f2; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.contact-line { margin: 0 0 22px; color: var(--gray); }
.contact-line strong { color: var(--navy); display: block; margin-bottom: 4px; }
.contact-line a { text-decoration: none; color: var(--navy); font-weight: 600; }
.contact-details .btn { margin-top: 8px; }
.map-wrap {
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #aab4c4;
  padding: 28px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.photo-credit { color: #6d7893; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 300px; }
  .main-nav a { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: block; }
  .header-call { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; }
}
