:root {
  --navy: #062b59;
  --deep-navy: #031d3c;
  --teal: #1d91a9;
  --gold: #d7a93d;
  --cloud: #f4f7fa;
  --white: #ffffff;
  --ink: #11243a;
  --muted: #617083;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
a { color: inherit; }
.site-header { height: 96px; padding: 0 clamp(24px, 6vw, 96px); display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.97); border-bottom: 1px solid #dfe6ed; position: sticky; top: 0; z-index: 20; }
.brand img { display: block; width: 330px; max-width: 42vw; height: 76px; object-fit: contain; object-position: left center; }
nav { display: flex; align-items: center; gap: 32px; font-size: .92rem; font-weight: 700; }
nav a { text-decoration: none; }
.nav-cta { padding: 11px 18px; color: var(--white); background: var(--navy); border-radius: 4px; }

.hero { min-height: 650px; padding: 90px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; color: var(--navy); background: radial-gradient(circle at 84% 24%, rgba(215,169,61,.18), transparent 30%), linear-gradient(130deg, #ffffff, #edf3f5 62%, #e4eef1); overflow: hidden; }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.1; font-family: Georgia, 'Times New Roman', serif; }
h1 { margin-bottom: 24px; font-size: clamp(3.1rem, 6.5vw, 6.6rem); letter-spacing: -.045em; }
h1 span { color: var(--teal); }
.hero-text { max-width: 620px; margin: 0 0 36px; color: #526579; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-block; padding: 15px 22px; border: 1px solid transparent; border-radius: 4px; text-decoration: none; font-weight: 800; }
.button.primary { color: var(--deep-navy); background: var(--gold); }
.button.secondary { color: var(--navy); border-color: rgba(6,43,89,.34); }
.hero-mark { justify-self: center; text-align: center; }
.hero-mark p { margin: 22px 0 0; color: var(--navy); font-family: Georgia, serif; font-size: 1.35rem; letter-spacing: .04em; }
.logo-emblem { width: 330px; height: 390px; background-image: url('palisade-emblem-transparent.png'); background-repeat: no-repeat; background-size: contain; background-position: center; filter: drop-shadow(0 20px 30px rgba(6,43,89,.16)); }

.trust-strip { padding: 20px clamp(24px, 8vw, 130px); display: flex; justify-content: space-between; gap: 20px; color: var(--navy); background: var(--gold); font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.services { padding: 105px clamp(24px, 8vw, 130px); background: var(--cloud); }
.section-heading { max-width: 770px; margin-bottom: 50px; }
h2 { margin-bottom: 20px; color: var(--navy); font-size: clamp(2.3rem, 4vw, 4rem); letter-spacing: -.035em; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-grid article { min-height: 250px; padding: 34px; background: var(--white); border-top: 4px solid var(--teal); box-shadow: 0 16px 38px rgba(7,39,72,.07); }
.number { color: var(--gold); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.service-grid h3 { margin: 32px 0 15px; color: var(--navy); font-size: 1.65rem; }
.service-grid p { margin: 0; color: var(--muted); }
.approach { padding: 110px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.approach-copy > p { margin: 0 0 35px; color: var(--muted); font-size: 1.1rem; }
.approach ul { margin: 0; padding: 0; list-style: none; }
.approach li { padding: 20px 0; display: grid; grid-template-columns: 175px 1fr; gap: 20px; border-top: 1px solid #dce3e9; }
.approach li strong { color: var(--navy); }
.approach li span { color: var(--muted); }
.contact { padding: 105px 24px; text-align: center; color: var(--white); background: var(--navy); }
.contact h2 { max-width: 800px; margin: 0 auto 22px; color: var(--white); }
.contact > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 32px; color: #cbd9e7; }
.button.gold { color: var(--deep-navy); background: var(--gold); overflow-wrap: anywhere; }
footer { padding: 52px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 30px; background: #fff; color: var(--muted); font-size: .82rem; }
footer img { width: 300px; height: 78px; grid-row: span 2; object-fit: contain; object-position: left; }
footer p { margin: 0; text-align: right; }

@media (max-width: 820px) {
  .site-header { height: 82px; }
  .brand img { width: 230px; height: 66px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; padding-top: 70px; grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .trust-strip { align-items: center; flex-direction: column; }
  .service-grid, .approach { grid-template-columns: 1fr; }
  .approach { gap: 30px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer img { margin: 0 auto 18px; grid-row: auto; object-position: center; }
  footer p { text-align: center; }
}

@media (max-width: 520px) {
  h1 { font-size: 3rem; }
  .site-header { padding-inline: 15px; }
  .brand img { max-width: 58vw; }
  .nav-cta { padding: 9px 12px; font-size: .8rem; }
  .hero-actions .button { width: 100%; text-align: center; }
  .service-grid article { padding: 27px; }
  .approach li { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
