
:root {
  --navy: #18324A;
  --navy-dark: #0E2235;
  --ink: #102536;
  --muted: #5E6B75;
  --gold: #C98A24;
  --gold-dark: #A8731E;
  --cream: #F8F5EE;
  --blue-soft: #EAF0F3;
  --white: #FFFFFF;
  --border: #DCE4E8;
  --shadow: 0 18px 44px rgba(14, 34, 53, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, Arial, Helvetica, sans-serif; line-height: 1.6; }
img { max-width: 100%; }
a { color: var(--navy); }
p { margin: 0; }
h1, h2, h3 { margin: 0; color: var(--navy-dark); line-height: 1.1; letter-spacing: -0.035em; }
h1 { max-width: 900px; font-size: clamp(2.8rem, 6.6vw, 5.7rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: 1.3rem; }

.site-header {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 76px; padding: 12px 5vw; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(24,50,74,.10); box-shadow: 0 8px 28px rgba(14,34,53,.05);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-dark); font-weight: 900; text-decoration: none; min-width: max-content; }
.brand img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 5px 10px rgba(14,34,53,.12)); }
.brand span { font-size: clamp(1.05rem, 2vw, 1.35rem); }
.nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 6px; font-size: .92rem; font-weight: 800; }
.nav a { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 11px; border-radius: 999px; color: var(--navy); text-decoration: none; }
.nav a:hover, .nav a.active { color: var(--gold-dark); background: rgba(201,138,36,.10); }
.nav .nav-cta { margin-left: 4px; padding: 9px 16px; color: var(--white); background: var(--navy); }
.nav .nav-cta:hover { color: var(--white); background: var(--gold-dark); }

section { padding: 76px 5vw; }
.eyebrow { margin-bottom: 12px; color: var(--gold-dark); font-size: .8rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); gap: 48px; align-items: center; min-height: 80vh;
  background: radial-gradient(circle at top right, rgba(201,138,36,.18), transparent 30%), linear-gradient(135deg,var(--cream),var(--blue-soft)); }
.hero-copy { max-width: 860px; }
.hero-subhead { max-width: 750px; margin-top: 24px; color: var(--navy); font-size: clamp(1.2rem,2vw,1.55rem); font-weight: 650; }
.hero-plain { max-width: 710px; margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 22px; border-radius: 999px; font-weight: 900; text-decoration: none; transition: transform .15s ease, background .15s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { color: var(--white); background: var(--gold); }
.button.primary:hover { background: var(--gold-dark); }
.button.secondary { color: var(--navy); background: rgba(255,255,255,.45); border: 2px solid var(--navy); }
.button.full-width { width: 100%; }
.hero-panel { padding: 30px; border: 1px solid rgba(24,50,74,.14); border-radius: 30px; background: rgba(255,255,255,.86); box-shadow: var(--shadow); }
.hero-logo { display: block; width: 165px; margin: 0 auto 22px; }
.hero-panel h2 { margin-bottom: 18px; font-size: 1.55rem; text-align: center; }
.hero-panel ul, .check-list { margin: 0; padding: 0; list-style: none; }
.hero-panel li, .check-list li { position: relative; margin-bottom: 12px; padding-left: 28px; color: var(--navy); font-weight: 750; }
.hero-panel li::before, .check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--gold-dark); font-weight: 900; }

.section { max-width: 1180px; margin: 0 auto; }
.tinted-section { max-width: none; background: var(--cream); }
.tinted-section > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.section-heading { max-width: 800px; margin-bottom: 34px; }
.section-heading.wide { max-width: 920px; }
.section-heading p, .about-copy p, .lead { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

.problem-grid, .service-grid, .three-up { display: grid; gap: 20px; }
.problem-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.service-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.service-grid.compact { grid-template-columns: repeat(2,minmax(0,1fr)); }
.three-up { grid-template-columns: repeat(3,minmax(0,1fr)); }
.problem-grid article, .service-card, .three-up article, .fit-card, .info-card, .contact-card {
  padding: 26px; border: 1px solid var(--border); border-radius: 24px; background: var(--white); box-shadow: 0 10px 24px rgba(14,34,53,.06);
}
.problem-grid p, .service-card p, .three-up p, .info-card p { margin-top: 12px; color: var(--muted); }
.icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-bottom: 18px; border-radius: 50%; color: var(--white); background: var(--gold); font-weight: 900; }
.linked-card { color: inherit; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.linked-card:hover { transform: translateY(-3px); box-shadow: 0 18px 32px rgba(14,34,53,.10); }
.linked-card span, .text-link { display: inline-block; margin-top: 16px; color: var(--gold-dark); font-weight: 900; text-decoration: none; }

.local-callout, .about-preview, .about-full, .two-column, .contact-layout {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.82fr); gap: 44px; align-items: center;
}
.about-photo img { width: 290px; border-radius: 50%; box-shadow: var(--shadow); }
.about-copy p + p { margin-top: 16px; }
.about-full { max-width: 1040px; }
.about-full .about-photo { align-self: start; }
.about-full .about-copy .button { margin-top: 26px; }

.page-hero { min-height: 52vh; display: flex; flex-direction: column; justify-content: center; background: radial-gradient(circle at top right, rgba(201,138,36,.16), transparent 30%), linear-gradient(135deg,var(--cream),var(--blue-soft)); }
.page-hero p:last-child { max-width: 780px; margin-top: 24px; color: var(--muted); font-size: clamp(1.1rem,2vw,1.35rem); }
.local-hero { background: radial-gradient(circle at right, rgba(201,138,36,.19), transparent 32%), linear-gradient(135deg,var(--blue-soft),var(--cream)); }
.roomy li { margin-bottom: 18px; font-size: 1.03rem; }
.info-card h2, .fit-card h2 { font-size: 1.75rem; margin-bottom: 14px; }
.process-highlight { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.process-highlight .section-heading { margin-bottom: 0; }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; color: var(--white); background: var(--navy); }
.cta-band h2, .cta-band .eyebrow { color: var(--white); }
.cta-band h2 { max-width: 780px; }
.contact-layout { align-items: start; }
.contact-card h2 { margin-bottom: 20px; font-size: 1.75rem; }
.contact-card p { margin-top: 18px; color: var(--muted); }

.site-footer { padding: 42px 5vw; color: rgba(255,255,255,.78); background: var(--navy-dark); display: grid; grid-template-columns: 1fr auto; gap: 24px 50px; align-items: start; }
.site-footer a { color: var(--white); }
.footer-brand { font-size: 1.2rem; font-weight: 900; text-decoration: none; }
.site-footer p { max-width: 680px; margin-top: 8px; }
.footer-links { display: grid; gap: 8px; }
.copyright { grid-column: 1 / -1; font-size: .9rem; }

@media (max-width: 980px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; gap: 8px; }
  .nav { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .nav a { white-space: nowrap; }
  .hero, .local-callout, .about-preview, .about-full, .two-column, .contact-layout { grid-template-columns: 1fr; }
  .about-photo { order: 2; }
  .service-grid, .problem-grid, .three-up { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 56px 22px; }
  .site-header { padding: 10px 18px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 1.05rem; }
  .nav { gap: 2px; font-size: .86rem; }
  .nav a { padding: 7px 9px; }
  .hero { padding-top: 54px; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .service-grid, .service-grid.compact, .problem-grid, .three-up { grid-template-columns: 1fr; }
  .process-highlight, .cta-band { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
}
