/* ------------------------------------------------------------------
   Process King — inner pages. Layered on home.css tokens.
   Hero → prose → cards → CTA band → contact → FAQ → blog → 404 → responsive
------------------------------------------------------------------- */
body.inner { background: var(--paper); color: var(--text); }

/* Page hero: dark type-only band, pads for the fixed nav */
.page-hero { background: var(--ink); color: #F1EFE9; padding: 150px 0 56px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(60% 50% at 85% 10%, rgba(217,164,65,.12), transparent 60%),
  radial-gradient(40% 40% at 5% 100%, rgba(37,99,235,.16), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; display: grid; gap: 16px; }
.page-hero .container > * { max-width: 900px; }
.page-hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.8rem); }
.page-hero .lede { color: rgba(241,239,233,.75); }
.page-hero .eyebrow { color: var(--brass-2); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-family: var(--mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(241,239,233,.55); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--brass-2); }
.crumbs [aria-current] { color: var(--brass-2); }

/* Prose (rendered markdown) */
.prose { max-width: 760px; font-size: 1.05rem; line-height: 1.7; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2.2em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8em; }
.prose h2 + *, .prose h3 + * { margin-top: .7em; }
.prose p { color: var(--text); text-wrap: pretty; }
.prose p, .prose li, .prose td { overflow-wrap: anywhere; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: .45em; }
.prose li::marker { color: var(--brass); }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.prose a:hover { color: var(--brass); }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 0; padding: 4px 0 4px 18px; border-left: 3px solid var(--brass); color: var(--muted); }
.prose img { border-radius: var(--radius); }
.prose hr { border: 0; border-top: 1px solid var(--line); }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; display: block; overflow-x: auto; }
.prose th { text-align: left; background: var(--ink); color: #fff; padding: 10px 14px; font-family: var(--mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.prose td { padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose tr:nth-child(even) td { background: rgba(255,255,255,.5); }

/* Cards */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 28px); display: grid; gap: 12px; align-content: start; }
.card h2, .card h3 { font-size: 1.25rem; }
.card p { color: var(--muted); }
.card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.card li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; color: var(--muted); }
.card li::before { content: "✓"; color: var(--brass); font-family: var(--mono); }
.card a { color: var(--ink); }
.card__meta { font-family: var(--mono); font-size: .8rem; color: var(--muted); }

/* CTA band */
.cta-band { background: var(--ink); color: #F1EFE9; }
.cta-band .container { display: grid; gap: 18px; }
.cta-band .container > * { max-width: 760px; }
.cta-band .lede { color: rgba(241,239,233,.72); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.contact-grid .form { box-shadow: none; border: 1px solid var(--line); }
.contact-grid .form h2 { font-size: 1.35rem; }
.contact-grid .form__status { margin-top: 4px; }

/* FAQ (shared with /tattoo/) */
.faq { max-width: 820px; display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.faq__item summary { list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; font-family: var(--display); font-size: 1.15rem; font-weight: 600; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-family: var(--mono); color: var(--brass); font-size: 1.3rem; transition: transform .3s var(--ease-out); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding: 0 20px 20px; color: var(--muted); display: grid; gap: 10px; line-height: 1.65; }
.faq__a a { color: var(--ink); }
.faq__a mark { background: rgba(217,164,65,.35); color: inherit; }
.faq__tools { display: grid; gap: 14px; margin-bottom: 26px; max-width: 820px; }
.faq__search { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: #fff; min-height: 50px; }
.faq__cats { display: flex; flex-wrap: wrap; gap: 8px; }
.faq__cat { border: 1px solid var(--line); background: #fff; color: var(--muted); border-radius: 999px; padding: 8px 14px; font-size: .9rem; font-weight: 600; cursor: pointer; }
.faq__cat[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.faq__none { color: var(--muted); padding: 18px 0; }

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post-card h3 { font-size: 1.2rem; }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover { color: var(--brass); }
.post-card .btn { justify-self: start; }
.pagination { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 32px; font-family: var(--mono); font-size: .85rem; color: var(--muted); }

/* 404 */
.notfound { min-height: 70svh; display: grid; place-content: center; text-align: center; gap: 18px; padding-top: 120px; }
.notfound h1 { font-size: clamp(4rem, 14vw, 9rem); color: var(--brass); line-height: 1; }
.notfound__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.notfound ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; font-size: .95rem; }
.notfound ul a { color: var(--brass-2); }

/* Landing pages: brand + text link only in the nav */
body.landing .nav__cta .btn { display: none; }

/* Responsive */
@media (max-width: 1024px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
  .page-hero { padding: 110px 0 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav__phone { display: inline-block; }
  .brand { white-space: nowrap; }
}
@media (max-width: 520px) {
  /* Menu + text pill cover contact on phones; landing pages have no menu, so they keep the link */
  body.inner:not(.landing) .nav__phone { display: none; }
  .post-grid { grid-template-columns: 1fr; }
  .cta-band__actions .btn, .notfound__actions .btn { width: 100%; }
}
