/* HOPE — patriotic red + navy + cream. Roboto Slab display. */
:root {
  --ink: #1F3D71; --ink-soft: #2F5494; --ink-muted: #5A6E8A;
  --paper: #FBF7EE; --paper-2: #F0E9D6; --paper-3: #E5DCC2;
  --red: #C92D31; --red-soft: #E89094; --red-deep: #8C1D20;
  --gold: #D9A648;
  --rule: rgba(31,61,113,0.12); --rule-strong: rgba(31,61,113,0.22);
  --shadow-md: 0 4px 14px rgba(31,61,113,0.10), 0 12px 32px rgba(31,61,113,0.06);
  --radius-sm: 8px; --radius: 14px; --radius-lg: 22px;
  --maxw: 1180px; --pad: clamp(20px, 4vw, 40px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; } a:hover { color: var(--red-deep); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

h1, h2, h3, h4 { font-family: 'Roboto Slab', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.18; margin: 0 0 0.4em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 500; }
h1 em { font-style: italic; color: var(--red); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); font-weight: 500; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); font-family: 'Inter', sans-serif; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-deep); margin: 0 0 1em; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(201,45,49,0.18); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 8px; font-weight: 600; font-size: 0.97rem; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--red); color: white; border-color: var(--red); }
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-large { padding: 16px 28px; font-size: 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,247,238,0.88); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--rule); }
.nav { display: flex; align-items: center; gap: 16px; height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: auto; }
.logo-img-white { height: 36px; width: auto; }
@media (max-width: 880px) { .logo-img { height: 32px; } }
.primary-nav { display: flex; gap: 28px; margin-left: auto; }
.primary-nav a { font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; padding: 6px 0; position: relative; }
.primary-nav a:hover { color: var(--ink); }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease; }
.primary-nav a:hover::after { transform: scaleX(1); }
.phone-cta { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 8px; background: var(--ink); color: white; font-weight: 600; font-size: 0.92rem; margin-left: 12px; }
.phone-cta:hover { background: var(--red); color: white; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: 1px solid var(--rule-strong); border-radius: 8px; cursor: pointer; margin-left: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 880px) {
  .primary-nav { position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--rule); padding: 16px var(--pad) 24px; gap: 10px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform 0.18s ease, opacity 0.18s ease; }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; margin-left: auto; }
  .phone-cta { padding: 8px 12px; }
  .phone-cta span { display: none; }
}

.hero { position: relative; padding: 96px 0 110px; overflow: hidden; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.hero-decor { position: absolute; inset: 0; pointer-events: none; }
.stripe { position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--paper) 33%, var(--paper) 66%, var(--ink) 66%, var(--ink) 100%); }
.hero-inner { position: relative; z-index: 2; }
.hero h1 { max-width: 18ch; }
.hero .lede { margin-top: 8px; max-width: 56ch; font-size: 1.18rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-trust { list-style: none; padding: 0; margin: 44px 0 0; display: flex; flex-wrap: wrap; gap: 14px 32px; border-top: 1px solid var(--rule); padding-top: 22px; max-width: 720px; }
.hero-trust li { font-size: 0.93rem; color: var(--ink-muted); }
.hero-trust strong { color: var(--ink); font-weight: 700; margin-right: 6px; }

.section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-sub { font-size: 1.05rem; color: var(--ink-soft); }

.about { background: var(--paper); border-top: 1px solid var(--rule); }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.about-body p { font-size: 1.08rem; }
@media (max-width: 760px) { .about-inner { grid-template-columns: 1fr; gap: 24px; } }

.why { background: var(--ink); color: var(--paper); }
.why h2, .why h3 { color: var(--paper); }
.why .eyebrow { color: var(--red-soft); }
.why p { color: rgba(251,247,238,0.78); }
.value-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-grid li { padding: 28px; border: 1px solid rgba(251,247,238,0.10); border-radius: var(--radius); background: rgba(251,247,238,0.04); }
.vp-icon { width: 46px; height: 46px; display: grid; place-items: center; background: var(--red); color: white; border-radius: 10px; margin-bottom: 14px; }
.value-grid h3 { font-size: 1.12rem; margin-bottom: 6px; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }

.testimonials { background: var(--paper); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-grid blockquote { margin: 0; padding: 28px; background: var(--paper-2); border-radius: var(--radius); border-left: 4px solid var(--red); display: flex; flex-direction: column; gap: 14px; }
.testimonial-grid p { margin: 0; font-family: 'Roboto Slab', Georgia, serif; font-size: 1.05rem; font-style: italic; color: var(--ink); line-height: 1.5; }
.testimonial-grid cite { font-style: normal; font-weight: 600; font-size: 0.88rem; color: var(--ink-muted); }
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }

.contact { background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper-3) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-info h2 { max-width: 14ch; }
.contact-direct { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--rule-strong); padding-top: 22px; }
.contact-link { display: grid; grid-template-columns: 80px 1fr; align-items: baseline; gap: 12px; padding: 8px 0; color: var(--ink); }
.contact-link-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-deep); }
.contact-link-value { font-family: 'Roboto Slab', serif; font-size: 1.18rem; }
.contact-link.static { cursor: default; }

.contact-form { background: var(--paper); padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--rule); box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.field-label em { color: var(--red-deep); font-style: normal; font-weight: 700; }
.field input, .field textarea { font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--rule-strong); border-radius: var(--radius-sm); background: var(--paper-2); color: var(--ink); transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: var(--paper); box-shadow: 0 0 0 4px rgba(201,45,49,0.18); }
.field textarea { resize: vertical; min-height: 120px; }

.consent { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-size: 0.82rem; color: var(--ink-muted); line-height: 1.5; }
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--red-deep); }
.consent a { color: var(--red-deep); text-decoration: underline; }

.form-status { font-size: 0.93rem; margin: 0; min-height: 1.4em; font-weight: 500; }
.form-status.success { color: #2A7D2F; }
.form-status.error { color: var(--red-deep); }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .contact-form { padding: 24px; } }

.site-footer { background: var(--ink); color: rgba(251,247,238,0.78); padding: 64px 0 28px; }
.site-footer h4 { color: var(--paper); margin-bottom: 14px; }
.site-footer a { color: rgba(251,247,238,0.78); }
.site-footer a:hover { color: var(--red-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(251,247,238,0.10); }
.footer-brand p { color: rgba(251,247,238,0.66); margin-top: 12px; max-width: 36ch; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.footer-bottom p { margin: 0; color: rgba(251,247,238,0.55); font-size: 0.86rem; }
.footer-bottom .legal { font-style: italic; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
