/* ==========================================================================
   Professional Mobile Notary Service — Site Styles
   Brand tokens match the existing rate sheet & flyer:
   Cream bg, Navy primary, Gold accent, serif display + sans body
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #F8F3ED;
  --cream-deep: #EFE7D8;
  --navy: #1B2A41;
  --navy-soft: #29405F;
  --gold: #C9A66B;
  --gold-deep: #B8935A;
  --ink: #3A372F;
  --muted: #6B6860;
  --line: #DCD4C4;
  --white: #FFFFFF;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 88px 0; }

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .wrap { padding: 0 22px; }
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.1;
}

h1 { font-size: 56px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.lede {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.italic-accent {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
}

@media (max-width: 720px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-deep); }

.btn-ghost {
  background: transparent;
  border-color: rgba(248,243,237,0.4);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--cream); }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,166,107,0.25);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.nav-brand .seal-mini {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

svg.seal-mini { display: inline-block; max-width: 100%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a {
  color: rgba(248,243,237,0.82);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  color: var(--gold) !important;
  font-weight: 700;
  border: 1.5px solid rgba(201,166,107,0.55);
  padding: 8px 16px;
  border-radius: 3px;
}
.nav-cta:hover { background: rgba(201,166,107,0.12); }

.nav-toggle { display: none; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 26px;
    cursor: pointer;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 18px 22px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(201,166,107,0.25);
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 56px 0 30px;
}

.footer-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(248,243,237,0.14);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.footer-brand .seal-mini { width: 46px; height: 46px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(248,243,237,0.78);
  font-size: 14.5px;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 13px;
  color: rgba(248,243,237,0.55);
  text-align: center;
}

/* ---------- Shared components ---------- */

.section-head {
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 { margin-bottom: 14px; }

.divider-line {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
}

.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  padding: 9px 0;
}
.check-list li svg { flex-shrink: 0; margin-top: 3px; }
.check-list b { color: var(--navy); }

.route-dots {
  stroke: rgba(201,166,107,0.5);
  stroke-width: 2;
  stroke-dasharray: 1 9;
  stroke-linecap: round;
  fill: none;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0;
}
.cta-band .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.cta-band h2 { color: var(--cream); }
.cta-band .lede { color: rgba(248,243,237,0.75); }

.services-grid { grid-template-columns: repeat(3,1fr); text-align: center; }
.services-grid svg { margin: 0 auto; }
.check-list.two-col { display: grid; grid-template-columns: 1fr 1fr; }

.feature-grid { grid-template-columns: repeat(2,1fr); text-align: center; }
.feature-grid svg { margin: 0 auto; }

.card { text-align: center; }
.card svg { margin: 0 auto; }
.card table { text-align: left; }

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .check-list.two-col { grid-template-columns: 1fr !important; }
  .pillars-grid { grid-template-columns: 1fr 1fr !important; }
  .feature-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr !important; }
}
