:root {
  --navy: #1c2a63;
  --navy-dark: #12193f;
  --navy-light: #2b3b82;
  --red: #8a1c2c;
  --red-light: #a8283b;
  --cream: #f7f6f3;
  --grey: #5c6270;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 12px 30px rgba(18, 25, 63, 0.10);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy-dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-eyebrow.center { text-align: center; }
h2.center { text-align: center; margin-bottom: 2.8rem; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(138, 28, 44, 0.35);
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }

/* Announce bar */
.announce-bar {
  background: var(--navy-dark);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  letter-spacing: 0.02em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(18,25,63,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  gap: 1rem;
}
.brand img { height: 58px; }
.main-nav { display: flex; gap: 2rem; margin-left: auto; }
.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-head);
}
.main-nav a:hover { color: var(--red); }
.header-cta { margin-left: 1.5rem; white-space: nowrap; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 20px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-bg.jpg') center 25% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(18,25,63,0.92) 30%, rgba(18,25,63,0.55) 65%, rgba(18,25,63,0.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f0c3c9;
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.08rem;
  color: #dfe2f0;
  max-width: 600px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: #dfe2f0;
}
.hero-trust span:first-child { color: #f0c3c9; letter-spacing: 2px; }

/* Strip */
.strip { background: var(--cream); padding: 2.2rem 0; }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.strip-item { display: flex; flex-direction: column; gap: 0.3rem; }
.strip-item strong { font-family: var(--font-head); color: var(--navy); font-size: 1.02rem; }
.strip-item span { color: var(--grey); font-size: 0.88rem; }

/* About */
.about { padding: 6rem 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.about-image img { max-width: 240px; }
.about-text h2 { font-size: 2.1rem; margin-bottom: 1.2rem; }
.about-text p { color: var(--grey); margin-bottom: 1.1rem; }
.link-arrow {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-head);
}
.link-arrow:hover { text-decoration: underline; }

/* Services */
.services { background: var(--navy-dark); padding: 6rem 0; }
.services .section-eyebrow { color: #f0a5b2; }
.services h2 { color: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); background: var(--navy-light); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--white); font-size: 1.12rem; margin-bottom: 0.7rem; }
.service-card p { color: #c2c7de; font-size: 0.92rem; }

/* Why */
.why { padding: 6rem 0; }
.why-inner { max-width: 720px; }
.why-text h2 { font-size: 2.1rem; margin-bottom: 1.6rem; }
.why-list { list-style: none; margin-bottom: 2rem; }
.why-list li {
  padding: 0.85rem 0 0.85rem 2rem;
  position: relative;
  color: var(--grey);
  border-bottom: 1px solid #ece9e3;
}
.why-list li:last-child { border-bottom: none; }
.why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.why-list strong { color: var(--navy); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--red), var(--red-light));
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.8rem; }
.cta-banner p { color: #fbdfe3; margin-bottom: 1.8rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Contact */
.contact { padding: 6rem 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.contact-details h2 { font-size: 2.1rem; margin-bottom: 1rem; }
.contact-details > p { color: var(--grey); margin-bottom: 1.6rem; }
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #ece9e3;
}
.contact-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-row a { color: var(--red); text-decoration: none; font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

/* Footer */
.site-footer { background: var(--navy-dark); padding: 2.5rem 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { height: 42px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-inner p { color: #aeb2c8; font-size: 0.86rem; }
.footer-inner a { color: #dfe2f0; font-size: 0.86rem; text-decoration: none; font-weight: 600; }
.footer-inner a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; padding: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-map { min-height: 260px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.2rem 24px;
    gap: 1.1rem;
    box-shadow: 0 12px 20px rgba(18,25,63,0.1);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { padding: 0.7rem 1.2rem; font-size: 0.88rem; }
  .brand img { height: 46px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
