/* =========================================================
   MOBILE NOTARY KINGDOM — multi-page layouts
   Extends the core tokens/nav/footer/buttons from mnk.css
   ========================================================= */

/* ---- page hero (lighter than home hero) ---- */
.page-hero {
  position: relative;
  padding: calc(var(--section-pad) + 40px) 0 var(--section-pad);
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(201,162,74,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--gold-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold-faint) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 70%);
  opacity: .5; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-family: var(--f-sans);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 26px;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold-deep); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-sans);
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold-line); }

.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 0 0 20px;
  color: var(--ink);
  max-width: 20ch;
}
.page-hero h1 em { color: var(--gold-bright); font-style: italic; }
.page-lede {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ---- generic section ---- */
.sec { padding: var(--section-pad) 0; border-bottom: 1px solid var(--hair); }
.sec-head { max-width: 62ch; margin-bottom: 52px; }
.sec-head h2 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.1;
  margin: 0 0 16px; color: var(--ink);
}
.sec-head p { font-family: var(--f-serif); font-size: clamp(17px,1.8vw,21px); color: var(--ink-soft); margin: 0; }

/* ---- prose ---- */
.prose { max-width: 72ch; }
.prose h2 { font-family: var(--f-display); font-weight:500; font-size: clamp(24px,3vw,36px); margin: 48px 0 16px; color: var(--ink); }
.prose h3 { font-family: var(--f-display); font-weight:500; font-size: clamp(20px,2.4vw,26px); margin: 34px 0 12px; color: var(--ink); }
.prose p { font-family: var(--f-sans); font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 18px; }
.prose ul, .prose ol { color: var(--ink-soft); font-size: 17px; line-height: 1.8; padding-left: 22px; margin: 0 0 22px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--gold); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ---- card grids ---- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px){ .grid-3,.grid-4{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid-2,.grid-3,.grid-4{ grid-template-columns: 1fr;} }

.card {
  border: 1px solid var(--hair-2);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border-radius: 4px;
  padding: 30px 28px;
  transition: border-color .35s ease, transform .35s ease;
}
.card:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.card .num { font-family: var(--f-sans); font-size: 12px; letter-spacing:.2em; color: var(--gold-deep); }
.card h3 { font-family: var(--f-display); font-weight:500; font-size: 22px; margin: 12px 0 10px; color: var(--ink); }
.card p { font-family: var(--f-sans); font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; }
.card a.card-link { font-family: var(--f-sans); font-size: 13px; letter-spacing:.06em; color: var(--gold-bright); text-decoration:none; }
.card a.card-link:hover { color: var(--gold); }

/* pill list of zips / cities */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-list a, .pill-list span {
  font-family: var(--f-sans); font-size: 13px; letter-spacing:.02em;
  color: var(--ink-soft); text-decoration: none;
  border: 1px solid var(--hair-2); border-radius: 999px;
  padding: 7px 14px; transition: all .25s ease;
}
.pill-list a:hover { border-color: var(--gold-line); color: var(--gold-bright); }

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
  padding: var(--section-pad) 0;
  background: radial-gradient(90% 120% at 50% 0%, rgba(201,162,74,0.12), transparent 60%), var(--bg-2);
  border-bottom: 1px solid var(--hair);
}
.cta-band h2 { font-family: var(--f-display); font-weight:500; font-size: clamp(28px,4vw,44px); margin: 0 0 12px; color: var(--ink); }
.cta-band .phone { font-family: var(--f-display); font-size: clamp(30px,5vw,52px); color: var(--gold-bright); letter-spacing:.02em; text-decoration:none; display:inline-block; margin: 10px 0 26px; }
.cta-band .phone:hover { color: var(--gold); }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---- FAQ ---- */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--hair-2); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  font-family: var(--f-display); font-size: clamp(18px,2vw,22px); color: var(--ink);
  display: flex; justify-content: space-between; gap: 20px; align-items:center;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-family: var(--f-sans); font-size: 24px; transition: transform .3s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 24px; }
.faq-item .faq-body p { font-family: var(--f-sans); color: var(--ink-soft); font-size: 16px; line-height: 1.75; margin:0; }

/* ---- attorney-review + disclaimer ---- */
.attorney-note {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--gold-line);
  background: var(--gold-faint);
  border-radius: 4px; padding: 22px 24px; margin: 28px 0;
}
.attorney-note svg { flex: none; color: var(--gold-bright); margin-top: 2px; }
.attorney-note p { margin: 0; font-family: var(--f-sans); font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
.attorney-note strong { color: var(--ink); }

.disclaimer-gate {
  border: 1px solid var(--hair-2); border-radius: 4px;
  padding: 18px 20px; margin: 24px 0;
  background: var(--bg-2);
  font-family: var(--f-sans); font-size: 14px; color: var(--ink-soft);
}
.disclaimer-gate label { display:flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.disclaimer-gate input { margin-top: 3px; accent-color: var(--gold); width:18px; height:18px; flex:none; }
.disclaimer-gate .ack-status { margin-top: 10px; font-size: 12px; letter-spacing:.06em; color: var(--gold-deep); }

/* ---- blog cards ---- */
.post-card { display:flex; flex-direction:column; height:100%; }
.post-card .meta { font-family: var(--f-sans); font-size: 12px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-deep); }
.post-card h3 { margin: 10px 0 10px; }
.post-card p { flex: 1; }

/* breadcrumb spacing on mobile hero */
@media (max-width: 720px){ .page-hero { padding-top: 120px; } }
