/* ---------------------------------------------------------------
   Las Vegas Mobile Notary Services — design tokens
   Direction: civic seal. Ink navy + Nevada-seal gold on white.
   Display: Zilla Slab. Body: Public Sans.
---------------------------------------------------------------- */
:root {
  --ink: #16273d;          /* document ink navy */
  --ink-deep: #0e1a2b;
  --gold: #c99518;         /* seal gold (AA on white at large sizes; used on navy + as fills) */
  --gold-bright: #e3b341;  /* gold on navy */
  --paper: #ffffff;
  --paper-cool: #f2f5f9;   /* alt section wash */
  --slate: #47566b;        /* secondary text */
  --line: #d8dfe8;
  --link: #2d6cc0;
  --radius: 10px;
  --font-display: "Zilla Slab", Georgia, serif;
  --font-body: "Public Sans", -apple-system, "Segoe UI", sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 700; margin: 0.25em 0 0.35em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 1.6em 0 0.5em; }
h3 { font-size: 1.25rem; font-weight: 600; margin: 1.2em 0 0.4em; }

/* Signature: stamp rule under section H2s in body content */
.service-body h2::after,
.faq > h2::after,
.related-services > h2::after,
.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 0.35rem;
  background: var(--gold);
  border-radius: 2px;
}

p { margin: 0 0 1em; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
ul { padding-left: 1.3em; }
strong { font-weight: 700; }

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink-deep); }
.btn-gold:hover { box-shadow: 0 4px 14px rgba(201, 149, 24, 0.35); }
.btn-navy { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding-top: 0.7rem; padding-bottom: 0.7rem; }
.brand { display: flex; align-items: center; gap: 0.55rem; color: var(--ink); text-decoration: none; font-family: var(--font-display); font-size: 1.15rem; }
.brand-seal { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.brand-text strong { font-weight: 700; }
.site-nav { display: flex; gap: 1.1rem; margin-left: auto; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover { color: var(--link); }
.header-cta { white-space: nowrap; }
@media (max-width: 860px) {
  .site-nav { display: none; }
  .header-cta { margin-left: auto; padding: 0.55rem 0.9rem; font-size: 0.9rem; }
}

/* Hero (home) */
.hero {
  background:
    radial-gradient(ellipse at 85% -10%, rgba(227, 179, 65, 0.14), transparent 55%),
    linear-gradient(170deg, var(--ink-deep), var(--ink) 70%);
  color: #eef2f7;
  padding: 3.5rem 0 4rem;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start; }
.hero h1 { color: #fff; }
.hero .lede { font-size: 1.2rem; color: #c9d4e2; max-width: 34em; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-bright);
}
.hero-eyebrow .seal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); }
.hero-points { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.55rem; }
.hero-points li { padding-left: 1.6em; position: relative; color: #dbe4ef; }
.hero-points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-bright); font-weight: 700; }
.hero-seal {
  position: absolute; opacity: 0.08; width: 320px; height: 320px; right: -40px; top: -30px; color: #fff;
  pointer-events: none;
}
.hero-wrap { position: relative; overflow: hidden; }
.hero-actions { display: flex; gap: 0.8rem; margin-top: 1.4rem; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* Page hero (inner pages) */
.page-hero { background: var(--paper-cool); padding: 2.2rem 0 2.4rem; border-bottom: 1px solid var(--line); }
.page-hero .lede { font-size: 1.15rem; color: var(--slate); max-width: 42em; }
.breadcrumb { font-size: 0.85rem; color: var(--slate); margin-bottom: 0.4rem; }
.breadcrumb a { color: var(--slate); }

/* Lead form card */
.lead-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(14, 26, 43, 0.18);
  color: var(--ink);
}
.lead-card-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 0 0 0.2rem; }
.lead-card-sub { font-size: 0.92rem; color: var(--slate); margin-bottom: 1rem; }
.field { margin-bottom: 0.85rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; }
.field .optional { font-weight: 400; color: var(--slate); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.65rem 0.7rem; font: inherit; font-size: 0.97rem;
  border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--ink);
}
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-error { color: #a12626; font-size: 0.9rem; margin-top: 0.6rem; }
.lead-card-trust { font-size: 0.8rem; color: var(--slate); margin: 0.8rem 0 0; }

/* Sections */
.section { padding: 3rem 0; }
.section-alt { background: var(--paper-cool); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.1rem; margin-top: 1.2rem; }
.card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.3rem; text-decoration: none; color: var(--ink);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(14,26,43,0.08); }
.card h3 { margin: 0 0 0.35rem; }
.card p { margin: 0; color: var(--slate); font-size: 0.95rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 2rem; }
.chip {
  display: inline-block; padding: 0.4rem 0.85rem; border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; color: var(--ink); font-size: 0.92rem; font-weight: 600; background: #fff;
}
.chip:hover { border-color: var(--gold); }

/* Steps */
.steps { list-style: none; counter-reset: step; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 1.4rem; }
.steps li { counter-increment: step; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.steps li::before {
  content: counter(step);
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; margin-bottom: 0.6rem;
}
.steps h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.steps p { margin: 0; font-size: 0.95rem; color: var(--slate); }

/* Body content */
.service-body { padding: 2.5rem 0 1rem; max-width: 760px; }
.service-body table { border-collapse: collapse; width: 100%; margin: 1.2rem 0; font-size: 0.97rem; }
.service-body th, .service-body td { border: 1px solid var(--line); padding: 0.6rem 0.8rem; text-align: left; }
.service-body th { background: var(--paper-cool); font-weight: 700; }
.table-scroll { overflow-x: auto; }
.area-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.area-aside { position: sticky; top: 84px; padding-top: 2.5rem; }
@media (max-width: 940px) { .area-layout { grid-template-columns: 1fr; } .area-aside { position: static; padding-top: 0; } }

/* FAQ */
.faq { padding-bottom: 2rem; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 0.2rem 0; }
.faq-item summary { font-weight: 700; cursor: pointer; padding: 0.8rem 0; list-style-position: outside; }
.faq-item p { color: var(--slate); margin: 0 0 1rem; }

/* CTA band */
.cta-band { background: var(--ink); color: #eef2f7; padding: 2.8rem 0; margin-top: 3rem; }
.cta-band h2 { color: #fff; margin: 0 0 0.4rem; }
.cta-band p { color: #c9d4e2; margin: 0; max-width: 40em; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--ink-deep); color: #b9c5d4; padding: 3rem 0 5.5rem; font-size: 0.92rem; }
.site-footer a { color: #d7e0ec; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; }
.footer-heading { font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.footer-fineprint { font-size: 0.78rem; color: #8494a8; margin-top: 1rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: rgba(14, 26, 43, 0.97);
  padding: 0.6rem 0.8rem;
  gap: 0.6rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.mobile-call-bar .btn { flex: 1; padding: 0.7rem 0.5rem; font-size: 0.95rem; }
@media (max-width: 860px) { .mobile-call-bar { display: flex; } }

/* Trust strip */
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip-inner { display: flex; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.25rem; flex-wrap: wrap; font-size: 0.9rem; font-weight: 600; color: var(--slate); }
.trust-strip-inner span::before { content: "●"; color: var(--gold); margin-right: 0.4rem; font-size: 0.7em; vertical-align: 1px; }
