@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap");

:root {
  --yellow: #f2b816;
  --yellow-deep: #e0a80c;
  --yellow-soft: #ffe8a3;
  --navy: #1f3a68;
  --navy-deep: #142849;
  --navy-soft: #e8eef6;
  --cream: #faf6ee;
  --stone-100: #eeeae0;
  --stone-200: #dfd9cb;
  --stone-400: #a9a294;
  --stone-600: #6b6558;
  --ink: #2c2a24;
  --white: #ffffff;
  --success: #3f8f4a;
  --shadow-sm: 0 2px 6px rgba(20, 40, 73, 0.08);
  --shadow-md: 0 8px 20px rgba(20, 40, 73, 0.1);
  --shadow-lg: 0 24px 54px rgba(20, 40, 73, 0.15);
  --shadow-yellow: 0 8px 24px rgba(242, 184, 22, 0.32);
  --display: "Poppins", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--navy);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--yellow-deep);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 750;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 750;
}

p {
  color: var(--ink);
  line-height: 1.7;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--yellow-deep);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.utility-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.86rem;
}

.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.utility-bar span {
  color: var(--navy-soft);
}

.utility-bar a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--stone-200);
  box-shadow: 0 2px 14px rgba(20, 40, 73, 0.04);
  backdrop-filter: blur(12px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--yellow-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-yellow {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.button-yellow:hover {
  color: var(--navy);
  background: var(--yellow-deep);
  box-shadow: 0 12px 30px rgba(242, 184, 22, 0.42);
}

.button-navy {
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.button-navy:hover {
  color: var(--white);
  background: var(--navy-deep);
}

.button-outline {
  color: var(--navy);
  border: 2px solid var(--navy);
}

.button-outline:hover {
  color: var(--yellow-deep);
  border-color: var(--yellow-deep);
}

.button-white {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.68);
}

.button-white:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 92px) 0 clamp(72px, 9vw, 108px);
  background: var(--white);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  left: max(-120px, -8vw);
  top: -130px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(242, 184, 22, 0.26), transparent 66%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .lead,
.page-hero .lead {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}

.accent {
  color: var(--yellow-deep);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  color: var(--stone-600);
  font-size: 0.9rem;
}

.trust-dots span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-dots span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(63, 143, 74, 0.15);
}

.hero-media {
  position: relative;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: min(580px, 68vh);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.photo-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-family: var(--display);
  font-size: 0.83rem;
  font-weight: 800;
}

.quote-card {
  position: absolute;
  right: -14px;
  bottom: -24px;
  max-width: 330px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.quote-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
}

.quote-card span {
  display: block;
  color: var(--stone-600);
  font-size: 0.88rem;
}

.trust-bar {
  background: var(--navy);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-stat {
  padding: 34px 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

.trust-stat span {
  color: var(--navy-soft);
  font-size: 0.9rem;
}

.section {
  padding: clamp(62px, 9vw, 108px) 0;
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.section-navy::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(242, 184, 22, 0.33), transparent 66%);
}

.section-navy .container {
  position: relative;
  z-index: 1;
}

.section-navy h2,
.section-navy h3,
.section-navy p {
  color: var(--white);
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p,
.muted {
  color: var(--stone-600);
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.area-card,
.info-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.area-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  background: var(--yellow);
  border-radius: 16px;
}

.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-card p,
.area-card p,
.info-card p {
  color: var(--stone-600);
}

.learn {
  margin-top: auto;
  color: var(--yellow-deep);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.area-card span {
  display: block;
  margin-top: auto;
  color: var(--yellow-deep);
  font-family: var(--display);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.split-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.check-list,
.plain-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.check-list li::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--yellow-soft);
}

.check-list strong,
.plain-list strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
}

.check-list span,
.plain-list span {
  color: var(--stone-600);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row a,
.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: 999px;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
}

.pill-row a:hover {
  color: var(--yellow-deep);
  border-color: var(--yellow);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 8vw, 88px) 0;
  background: var(--cream);
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(30px, 6vw, 68px);
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.breadcrumb {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--stone-600);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.faq {
  max-width: 900px;
  margin-inline: auto;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 750;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--yellow-deep);
  font-size: 1.5rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq .answer {
  padding: 0 24px 22px;
  color: var(--stone-600);
}

.cta-band {
  text-align: center;
}

.cta-band p {
  max-width: 650px;
  margin-inline: auto;
  color: var(--navy-soft);
}

.site-footer {
  padding: 54px 0 30px;
  color: var(--stone-400);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(150px, 1fr));
  gap: 36px;
}

.site-footer img {
  width: 200px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.site-footer p,
.site-footer span {
  color: var(--stone-400);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: var(--navy-soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--stone-400);
  font-size: 0.88rem;
}

@media (max-width: 1000px) {
  .nav-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .split.reverse,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .page-hero-media img {
    height: 430px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stat:nth-child(2) {
    border-right: 0;
  }

  .trust-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1220px);
  }

  .utility-bar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .brand img {
    width: 170px;
  }

  .nav-links {
    gap: 12px 16px;
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .hero-media img,
  .page-hero-media img {
    height: 320px;
    border-radius: 20px;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    max-width: none;
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-stat:last-child {
    border-bottom: 0;
  }

  .service-card,
  .area-card,
  .info-card {
    padding: 22px;
    border-radius: 16px;
  }
}
