/* Prime Interior Care — lead-gen landing page (redesign 2026) */
:root {
  --ink: #0B1F4B;
  --ink-2: #14306B;
  --mint: #6EE7C8;
  --mint-hover: #58D9B8;
  --mint-tint: #E6FBF5;
  --bg: #F4F6F9;
  --card: #FFFFFF;
  --input-bg: #F9FAFC;
  --border: #DDE3EC;
  --soft: #EDF1F6;
  --text: #3C4A68;
  --muted: #5A6782;
  --on-ink-muted: #C5D0E4;
  --err: #A12A2A;
  --err-bg: #FDF0F0;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1240px;
  --shadow-card: 0 30px 60px -20px rgba(11, 31, 75, .35), 0 0 0 1px rgba(11, 31, 75, .06);
  --shadow-float: 0 14px 40px rgba(11, 31, 75, .4);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--body); -webkit-font-smoothing: antialiased; line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink-2); }
input, select, textarea, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #8A94AA; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 2px; }
h1, h2, h3 { font-family: var(--display); margin: 0; color: inherit; }
p { margin: 0; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 10px; top: 10px; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding-top: 96px; padding-bottom: 96px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1; letter-spacing: -.03em; text-wrap: balance; }
.lead { font-size: 17px; line-height: 1.55; color: var(--text); }
.stack { display: flex; flex-direction: column; }
.grid-fit { display: grid; gap: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; border: 0; text-decoration: none; font-weight: 600; font-size: 17px;
  border-radius: 14px; padding: 18px 28px; line-height: 1.2; transition: background .15s, border-color .15s, color .15s;
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); padding: 16.5px 26px; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-mint { background: var(--mint); color: var(--ink); font-weight: 700; }
.btn-mint:hover { background: var(--mint-hover); color: var(--ink); }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid #fff; padding: 16.5px 26px; }
.btn-ghost-white:hover { background: #fff; color: var(--ink); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink); color: #E8EEF8; font-size: 14px; padding: 10px 20px;
  display: flex; justify-content: center; gap: 6px 10px; flex-wrap: wrap; text-align: center;
}
.announce a { color: var(--mint); font-weight: 600; }
.announce .sep { opacity: .5; }
/* The bar wraps onto two lines below ~615px — the dot would dangle at the end of the first one. */
@media (max-width: 639px) { .announce .sep { display: none; } }
.live { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); display: inline-block; flex: none; }
.dot.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(110, 231, 200, .7); }
  70% { box-shadow: 0 0 0 10px rgba(110, 231, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 231, 200, 0); }
}
@media (prefers-reduced-motion: reduce) { .dot.pulse { animation: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 246, 249, .86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); min-width: 0; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; background: #fff; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; gap: 2px; min-width: 0; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -.01em; white-space: nowrap; }
.brand-sub { font-size: 12px; color: var(--muted); white-space: nowrap; }
.nav { display: none; gap: 28px; font-size: 15px; font-weight: 500; }
.nav a { text-decoration: none; }
.nav a:hover { text-decoration: underline; }
.phone-pill {
  display: flex; align-items: center; gap: 8px; text-decoration: none; background: var(--ink); color: #fff;
  padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 15px; white-space: nowrap; flex: none;
}
.phone-pill:hover { background: var(--ink-2); color: #fff; }
.phone-pill .short { display: none; }
@media (min-width: 1020px) { .nav { display: flex; } }
@media (max-width: 519px) {
  .phone-pill .full { display: none; }
  .phone-pill .short { display: inline; }
  .brand-name { font-size: 17px; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 56px; padding-bottom: 72px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr)); gap: 48px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.pills { display: flex; gap: 6px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.pills::-webkit-scrollbar { display: none; }
.pill { flex: none; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; font-size: 12.5px; font-weight: 600; white-space: nowrap; }
.hero h1 { font-weight: 700; font-size: clamp(42px, 6vw, 76px); line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.hl { background: var(--mint); padding: 0 .12em; border-radius: .12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-lead { font-size: 19px; line-height: 1.55; color: var(--text); max-width: 540px; text-wrap: pretty; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding-top: 22px; border-top: 1px solid var(--border); max-width: 540px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat b { font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -.02em; }
.stat span { font-size: 13px; color: var(--muted); line-height: 1.35; }

/* Quote block (photo + card) */
.quote-wrap { position: relative; scroll-margin-top: 110px; min-width: 0; }
.hero-photo { position: relative; height: 220px; border-radius: 22px; overflow: hidden; }
.quote-card {
  position: relative; margin: -56px 10px 0; background: #fff; border-radius: 22px; box-shadow: var(--shadow-card);
  padding: 22px; display: flex; flex-direction: column; gap: 18px;
}
@media (min-width: 640px) {
  .hero-photo { position: absolute; inset: -18px -18px 60px 60px; height: auto; border-radius: 28px; }
  .quote-card { margin: 70px 40px 0 0; padding: 28px; }
}

/* Photo placeholder (swap for <img> when real photos exist) */
.ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 16px; color: rgba(255, 255, 255, .8); font-size: 13px; font-weight: 600;
  background:
    radial-gradient(circle at 25% 20%, rgba(110, 231, 200, .22), transparent 55%),
    linear-gradient(135deg, #14306B 0%, #0B1F4B 100%);
}
.ph svg { width: 34px; height: 34px; opacity: .75; }
.ph.light { color: var(--muted); background: repeating-linear-gradient(45deg, #EDF1F6 0 14px, #E6EBF2 14px 28px); }
.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Quote form ---------- */
.qc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.qc-head h2 { font-size: 26px; letter-spacing: -.02em; font-weight: 700; }
.qc-step { font-size: 13px; color: var(--muted); white-space: nowrap; }
.progress { height: 5px; background: var(--soft); border-radius: 9px; overflow: hidden; }
.progress > div { height: 100%; width: 33.33%; background: var(--ink); border-radius: 9px; transition: width .35s; }
.q-step { display: flex; flex-direction: column; gap: 12px; }
.q-step[hidden] { display: none; }
.q-label { font-size: 15px; font-weight: 600; }
.tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.tile {
  cursor: pointer; text-align: left; border: 1.5px solid var(--border); background: #fff; border-radius: 14px;
  padding: 14px; display: flex; flex-direction: column; gap: 3px; color: var(--ink); min-height: 64px;
}
.tile:hover { border-color: var(--ink); }
.tile[aria-pressed="true"] { border-color: var(--ink); background: var(--mint-tint); }
.tile strong { font-weight: 600; font-size: 15px; }
.tile span { font-size: 12.5px; color: var(--muted); }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; }
.field .hint { font-weight: 400; color: var(--muted); font-size: 13px; margin-top: -4px; }
.input {
  font-size: 16px; padding: 14px; border: 1.5px solid var(--border); border-radius: 12px; outline: none;
  color: var(--ink); background: var(--input-bg); width: 100%; font-weight: 400;
}
.input:focus { border-color: var(--ink); background: #fff; }
textarea.input { resize: vertical; }
.q-err { font-size: 14px; color: var(--err); background: var(--err-bg); border-radius: 10px; padding: 10px 12px; }
.q-err[hidden] { display: none; }
.q-actions { display: flex; gap: 10px; align-items: center; }
.q-back { cursor: pointer; background: #fff; border: 1.5px solid var(--border); color: var(--ink); font-weight: 600; font-size: 16px; padding: 16px 18px; border-radius: 12px; }
.q-back:hover { border-color: var(--ink); }
.q-next, .q-submit { flex: 1; border-radius: 12px; padding: 17px; font-size: 17px; }
.q-foot { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--muted); border-top: 1px solid var(--soft); padding-top: 14px; }
.hp { position: absolute; left: -9999px; }
.q-success { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; padding: 10px 0; }
.q-success[hidden] { display: none; }
.q-check { width: 56px; height: 56px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; }
.q-success h2 { font-size: 30px; letter-spacing: -.02em; }
.q-success p { color: var(--text); line-height: 1.55; font-size: 16px; }
.q-success .btn { padding: 15px 22px; border-radius: 12px; font-size: 16px; }
.linklike { border: 0; background: none; color: var(--muted); cursor: pointer; padding: 0; font-size: 14px; text-decoration: underline; }

/* ---------- Benefits strip ---------- */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.strip ul {
  list-style: none; margin: 0 auto; padding-top: 22px; padding-bottom: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; font-size: 15px; font-weight: 600; color: var(--text);
}

/* ---------- Services ---------- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.sec-head .stack { gap: 14px; max-width: 640px; }
.sec-head p { max-width: 380px; }
.services { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.svc { background: #fff; border-radius: 22px; border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; }
.svc-photo { height: 210px; position: relative; }
.svc-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc h3 { font-size: 23px; letter-spacing: -.015em; font-weight: 700; }
.svc p { color: var(--text); line-height: 1.5; font-size: 15px; flex: 1; }
.chip-btn { align-self: flex-start; cursor: pointer; border: 0; background: var(--soft); color: var(--ink); font-weight: 600; font-size: 15px; padding: 11px 16px; border-radius: 10px; }
.chip-btn:hover { background: var(--mint); }

/* ---------- Before & After ---------- */
.results { background: var(--ink); color: #fff; }
.results .grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 56px; align-items: center; }
.results .eyebrow { color: var(--mint); }
.results .lead { color: var(--on-ink-muted); max-width: 460px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab { cursor: pointer; border: 1.5px solid rgba(255, 255, 255, .35); background: transparent; color: #fff; font-weight: 600; font-size: 15px; padding: 11px 18px; border-radius: 999px; }
.tab[aria-selected="true"] { background: var(--mint); border-color: var(--mint); color: var(--ink); }
.ba { position: relative; aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; background: var(--ink-2); }
.ba[hidden] { display: none; }
.ba-layer { position: absolute; inset: 0; }
.ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-after .ph { background: radial-gradient(circle at 70% 30%, rgba(110, 231, 200, .35), transparent 60%), linear-gradient(135deg, #1d4a8f 0%, #14306B 100%); }
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; margin-left: -1.5px; background: #fff; pointer-events: none; box-shadow: 0 0 12px rgba(0, 0, 0, .3); }
.ba-tag { position: absolute; top: 14px; font-size: 12px; font-weight: 700; letter-spacing: .1em; padding: 6px 10px; border-radius: 8px; pointer-events: none; }
.ba-tag.before { left: 14px; background: rgba(11, 31, 75, .85); color: #fff; }
.ba-tag.after { right: 14px; background: var(--mint); color: var(--ink); }
.ba-range { width: 100%; accent-color: var(--mint); cursor: ew-resize; }

/* ---------- How it works ---------- */
.steps { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); list-style: none; padding: 0; margin: 0; }
.step { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.step-n { font-family: var(--display); font-size: 64px; font-weight: 800; line-height: 1; color: var(--mint); -webkit-text-stroke: 1.5px var(--ink); }
.step h3 { font-size: 24px; font-weight: 700; }
.step p { color: var(--text); line-height: 1.55; }
.step.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.step.dark .step-n { -webkit-text-stroke: 0; }
.step.dark p { color: var(--on-ink-muted); }

/* ---------- Why us ---------- */
.why { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why .grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 56px; }
.owner-photo { position: relative; height: 300px; border-radius: 22px; overflow: hidden; }
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 0 32px; align-content: center; list-style: none; margin: 0; padding: 0; }
.reasons li { padding: 22px 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.reasons h3 { font-size: 20px; font-weight: 700; }
.reasons p { color: var(--text); line-height: 1.5; font-size: 15px; }

/* ---------- Service area ---------- */
.area { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 56px; }
.town-box { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.town-box label { font-weight: 600; font-size: 15px; }
.town-box .input { font-size: 17px; padding: 15px; }
.town-result { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; background: var(--mint-tint); border-radius: 12px; padding: 12px 14px; font-weight: 600; }
.town-result[hidden] { display: none; }
.town-result button { cursor: pointer; border: 0; background: var(--ink); color: #fff; font-weight: 600; padding: 10px 14px; border-radius: 10px; font-size: 15px; }
.town-group { display: flex; flex-direction: column; gap: 12px; }
.town-group h3 { font-family: var(--body); font-weight: 700; font-size: 15px; }
.towns { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.towns li { background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; font-size: 14px; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-sec { background: #fff; border-top: 1px solid var(--border); }
.faq-wrap { max-width: 880px; }
.faq-head { text-align: center; align-items: center; gap: 14px; margin-bottom: 36px; }
.faq-head .h2 { font-size: clamp(34px, 4.4vw, 52px); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--soft); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 600; font-family: var(--body); }
.faq-icon::before { content: "+"; }
.faq details[open] .faq-icon { background: var(--mint); }
.faq details[open] .faq-icon::before { content: "–"; }
.faq details p { margin: 0 0 24px; color: var(--text); line-height: 1.6; font-size: 16px; max-width: 720px; }

/* ---------- Final CTA ---------- */
.final { padding: 0 24px 96px; background: #fff; }
.final-panel {
  max-width: var(--max); margin: 0 auto; background: var(--ink); color: #fff; border-radius: 32px;
  padding: clamp(40px, 6vw, 80px); display: flex; flex-direction: column; align-items: flex-start; gap: 26px; position: relative; overflow: hidden;
}
.final-panel::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: var(--mint); opacity: .14; }
.final-panel > * { position: relative; }
.final-panel h2 { font-size: clamp(38px, 5.4vw, 72px); line-height: .98; letter-spacing: -.035em; max-width: 820px; text-wrap: balance; }
.final-panel p { color: var(--on-ink-muted); font-size: 18px; line-height: 1.55; max-width: 560px; }
.final-panel .btn { font-size: 18px; }
.final-panel small { font-size: 14px; color: var(--on-ink-muted); }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-grid { padding-top: 48px; padding-bottom: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 32px; font-size: 15px; color: var(--text); }
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid h3 { font-family: var(--body); font-weight: 700; font-size: 15px; color: var(--ink); }
.footer-brand { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); }
.footer-copy { padding-bottom: 32px; font-size: 13px; color: var(--muted); }

/* ---------- Sticky mobile bar / floating CTA ---------- */
.mbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px;
  background: var(--ink); padding: 8px; border-radius: 18px; box-shadow: var(--shadow-float);
  margin-bottom: env(safe-area-inset-bottom);
}
.mbar a, .mbar button { text-decoration: none; color: #fff; font-weight: 600; text-align: center; padding: 14px 6px; border-radius: 12px; background: var(--ink-2); border: 0; font-size: 16px; cursor: pointer; }
.mbar button { color: var(--ink); font-weight: 700; background: var(--mint); }
.float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 60; cursor: pointer; border: 0; background: var(--mint); color: var(--ink);
  font-weight: 700; font-size: 16px; padding: 16px 22px; border-radius: 999px; box-shadow: 0 14px 40px rgba(11, 31, 75, .35);
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s, transform .2s;
}
.float-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { background: var(--mint-hover); }
@media (max-width: 859px) { .footer { padding-bottom: 90px; } .float-cta { display: none; } }
@media (min-width: 860px) { .mbar { display: none; } }

/* ---------- Content pages (service pages, pricing guide) ---------- */
.crumbs { padding-top: 26px; font-size: 14px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: .5; }

.page-hero { padding-top: 44px; padding-bottom: 12px; display: flex; flex-direction: column; gap: 20px; max-width: 780px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.02; letter-spacing: -.035em; text-wrap: balance; }

.prose { max-width: 720px; display: flex; flex-direction: column; gap: 20px; font-size: 17px; line-height: 1.65; color: var(--text); }
.prose h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.12; letter-spacing: -.02em; color: var(--ink); margin-top: 26px; text-wrap: balance; }
.prose h3 { font-size: 20px; line-height: 1.25; color: var(--ink); margin-top: 12px; }
.prose ul, .prose ol { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.prose li::marker { color: var(--muted); }
.prose strong { color: var(--ink); }
.prose a { color: var(--ink-2); font-weight: 600; }

/* Job photos inside article prose. Plain flow images — .ph-img is absolute and
   belongs only to the fixed-height slots on the home page. */
.prose figure { margin: 6px 0; display: flex; flex-direction: column; gap: 10px; }
.prose figure img { display: block; width: 100%; height: auto; border-radius: 18px; }
.prose figcaption { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* Price table used by the cost guide */
.ptable { width: 100%; border-collapse: collapse; font-size: 16px; }
.ptable caption { text-align: left; font-size: 14px; color: var(--muted); padding-bottom: 10px; }
.ptable th, .ptable td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--border); }
.ptable th { font-family: var(--body); font-weight: 700; color: var(--ink); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.ptable td:last-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.ptable tbody tr:hover { background: var(--soft); }

/* Callout box for the "text us photos" nudge inside articles */
.callout { background: var(--mint-tint); border: 1px solid var(--mint); border-radius: 18px; padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.callout strong { font-family: var(--display); font-size: 19px; color: var(--ink); }

/* Cross-links to the other service pages */
.xlinks { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); padding: 0; margin: 0; list-style: none; }
.xlinks a {
  display: flex; flex-direction: column; gap: 4px; text-decoration: none; background: var(--card);
  border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; transition: border-color .15s, transform .15s;
}
.xlinks a:hover { border-color: var(--ink); transform: translateY(-2px); }
.xlinks b { font-family: var(--display); font-size: 17px; color: var(--ink); }
.xlinks span { font-size: 14px; color: var(--muted); }

/* ---------- 404 ---------- */
.nf { min-height: 60vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; }
.nf .big { font-family: var(--display); font-weight: 800; font-size: clamp(80px, 14vw, 160px); line-height: .9; letter-spacing: -.04em; color: var(--mint); -webkit-text-stroke: 2px var(--ink); }
.nf h1 { font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -.03em; line-height: 1; }
