/* Hippo Realty — shared stylesheet for content, city, neighborhood and guide pages.
   Design tokens mirror the homepage (sampled from the logo: coral-red hippo,
   royal-blue wordmark). The homepage keeps its own inline block so this file
   can evolve without touching an approved page. */
:root {
  --ink: #1e2c48;
  --ink-2: #27395c;
  --white: #ffffff;
  --ivory: #faf8f4;
  --sand: #f2eee6;
  --gray: #66707f;
  --gray-2: #8a929f;
  --line: rgba(30, 44, 72, 0.14);
  --line-2: rgba(30, 44, 72, 0.07);
  --red: #e94f57;
  --red-deep: #d7353c;
  --coral: #f8969c;
  --blue: #3a63ae;
  --blue-deep: #2d4f91;
  --r-lg: 14px;
  --r-md: 10px;
  --r-sm: 8px;
  --head: "Oswald", "Arial Narrow", sans-serif;
  --body: "Open Sans", "Helvetica Neue", sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--red); color: var(--white); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.head { font-family: var(--head); font-weight: 600; text-transform: uppercase; line-height: 1.05; letter-spacing: 0.02em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.9em;
  font-family: var(--head); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--red-deep);
}
.eyebrow::after { content: ""; width: 2.4rem; height: 2px; background: var(--red); opacity: 0.5; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.head-in {
  max-width: var(--maxw); margin: 0 auto; padding: 0.7rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.brand-tag {
  font-family: var(--head); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray); line-height: 1.35;
  border-left: 1px solid var(--line); padding-left: 0.8rem;
}
nav.main { display: flex; align-items: center; gap: clamp(0.8rem, 1.6vw, 1.7rem); }
nav.main a {
  font-family: var(--head); font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); white-space: nowrap; transition: color 0.18s;
}
nav.main a:hover { color: var(--red-deep); }
nav.main a.cta {
  background: var(--red); color: var(--white); padding: 0.62rem 1.15rem;
  border-radius: 100px; transition: background 0.18s, transform 0.18s;
}
nav.main a.cta:hover { background: var(--red-deep); color: var(--white); transform: translateY(-1px); }
.navwrap { position: relative; }
.navwrap > a { display: block; }
.drop { position: relative; }
.drop > button {
  font: inherit; font-family: var(--head); font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink);
  background: none; border: 0; cursor: pointer; display: inline-flex;
  align-items: center; gap: 0.4em; padding: 0;
}
.drop > button::after { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); }
.drop:hover > button { color: var(--red-deep); }
.drop-menu {
  position: absolute; top: calc(100% + 0.9rem); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 240px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: 0 22px 50px rgba(30, 44, 72, 0.16);
  padding: 0.5rem; opacity: 0; visibility: hidden; transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-menu a {
  display: block; padding: 0.55rem 0.8rem; border-radius: var(--r-sm);
  font-family: var(--body); font-size: 0.92rem; letter-spacing: 0; text-transform: none;
}
.drop-menu a:hover { background: var(--ivory); color: var(--red-deep); }
.navtoggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.navtoggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: 0.2s; }

@media (max-width: 940px) {
  .navtoggle { display: block; }
  nav.main {
    position: fixed; inset: 62px 0 auto; background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem var(--gutter) 2rem; border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 62px); overflow-y: auto;
    transform: translateY(-120%); transition: transform 0.26s ease; box-shadow: 0 20px 40px rgba(30,44,72,0.12);
  }
  nav.main.open { transform: translateY(0); }
  nav.main a, .drop > button { padding: 0.85rem 0; border-bottom: 1px solid var(--line-2); width: 100%; text-align: left; }
  nav.main a.cta { text-align: center; margin-top: 1rem; border: 0; }
  .drop-menu { position: static; transform: none; opacity: 1; visibility: visible; border: 0; box-shadow: none; padding: 0 0 0 1rem; min-width: 0; display: none; }
  .drop.open .drop-menu { display: block; }
  .drop:hover .drop-menu { transform: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--head); font-weight: 500; font-size: 0.86rem;
  letter-spacing: 0.13em; text-transform: uppercase; text-decoration: none;
  padding: 0.95rem 1.6rem; border-radius: 100px; border: 1.5px solid var(--ink);
  color: var(--ink); background: transparent; cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn.red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn.red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn.blue { background: var(--blue); border-color: var(--blue); color: var(--white); }
.btn.blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn.sm { padding: 0.6rem 1.05rem; font-size: 0.76rem; }

/* ---------- page shells ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.crumbs {
  font-size: 0.8rem; color: var(--gray); padding: 1.1rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.45em; align-items: center;
}
.crumbs a { text-decoration: none; border-bottom: 1px solid var(--line); }
.crumbs a:hover { color: var(--red-deep); border-color: var(--red); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 600; }

.phero { padding: clamp(2.2rem, 5vh, 3.6rem) 0 clamp(1.8rem, 4vh, 2.8rem); border-bottom: 1px solid var(--line-2); }
.phero h1 {
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.1rem, 5.6vw, 4rem); line-height: 1.02; letter-spacing: -0.005em;
  margin: 0.9rem 0 0; max-width: 17ch;
}
.phero h1 em { font-style: normal; color: var(--red-deep); }
.phero .lede { font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: var(--ink-2); max-width: 62ch; margin-top: 1.2rem; }
.phero .meta { margin-top: 1.3rem; font-size: 0.82rem; color: var(--gray); display: flex; flex-wrap: wrap; gap: 0.5em 1.4em; }
.phero .meta b { color: var(--ink); font-weight: 600; }
.phero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.7rem; }

/* key-facts strip: the block AI engines lift */
.keyfacts {
  margin-top: 2rem; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--ivory); overflow: hidden;
}
.keyfacts h2 {
  font-family: var(--head); font-size: 0.78rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--red-deep); padding: 0.95rem 1.4rem;
  border-bottom: 1px solid var(--line); background: var(--white);
}
.keyfacts dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.keyfacts div { padding: 1.05rem 1.4rem; border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.keyfacts dt { font-family: var(--head); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.keyfacts dd { font-size: 1.12rem; font-weight: 700; margin-top: 0.28rem; line-height: 1.35; }
.keyfacts dd small { display: block; font-size: 0.78rem; font-weight: 400; color: var(--gray); line-height: 1.5; margin-top: 0.2rem; }

/* ---------- editorial two-column layout ---------- */
.dossier {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
  padding: clamp(2.4rem, 6vh, 4rem) 0;
}
@media (max-width: 1000px) { .dossier { grid-template-columns: 1fr; } }

.rail { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.2rem; }
@media (max-width: 1000px) { .rail { position: static; } }
.rail-box { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.3rem; background: var(--white); }
.rail-box.dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.rail-box.dark .rail-h { color: var(--coral); }
.rail-box.dark a { color: var(--white); }
.rail-h {
  font-family: var(--head); font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--red-deep); margin-bottom: 0.9rem;
}
.toc ol { list-style: none; counter-reset: t; font-size: 0.92rem; }
.toc li { counter-increment: t; border-bottom: 1px solid var(--line-2); }
.toc li:last-child { border-bottom: 0; }
.toc a { display: flex; gap: 0.7em; padding: 0.55rem 0; text-decoration: none; color: var(--ink-2); }
.toc a::before { content: counter(t, decimal-leading-zero); font-family: var(--head); font-size: 0.72rem; color: var(--gray-2); padding-top: 0.28em; }
.toc a:hover { color: var(--red-deep); }

.rail-agent { display: flex; gap: 0.9rem; align-items: center; margin-bottom: 1rem; }
.rail-agent img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.rail-agent b { display: block; font-family: var(--head); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; }
.rail-agent span { font-size: 0.8rem; opacity: 0.75; }
.rail-box p { font-size: 0.9rem; }
.rail-box .btn { width: 100%; margin-top: 0.9rem; }
.rail-box.dark .btn { border-color: rgba(255,255,255,0.4); color: var(--white); }
.rail-box.dark .btn:hover { background: var(--white); color: var(--ink); }
.rail-box.dark .btn.red { border-color: var(--red); }

.rail-links { list-style: none; font-size: 0.92rem; }
.rail-links li { border-bottom: 1px solid var(--line-2); }
.rail-links li:last-child { border-bottom: 0; }
.rail-links a { display: block; padding: 0.55rem 0; text-decoration: none; color: var(--ink-2); }
.rail-links a:hover { color: var(--red-deep); }

/* ---------- prose ---------- */
.prose { max-width: 74ch; font-size: 1.06rem; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 {
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.1; letter-spacing: 0.01em;
  margin-top: 2.5em; padding-top: 0.2em; scroll-margin-top: 96px;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: normal; color: var(--red-deep); }
.prose h3 {
  font-family: var(--head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.3rem); letter-spacing: 0.04em;
  margin-top: 2em; scroll-margin-top: 96px;
}
.prose h4 { font-weight: 700; font-size: 1.02rem; margin-top: 1.6em; }
.prose p a, .prose li a { color: var(--blue-deep); text-decoration: none; border-bottom: 1px solid rgba(58, 99, 174, 0.4); transition: border-color 0.18s, color 0.18s; }
.prose p a:hover, .prose li a:hover { color: var(--red-deep); border-color: var(--red); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.5em; }
.prose ul li::marker { color: var(--red); }
.prose strong { font-weight: 700; }
.prose blockquote {
  border-left: 3px solid var(--red); padding: 0.2em 0 0.2em 1.3em;
  font-size: 1.12rem; line-height: 1.6; color: var(--ink-2);
}
.prose blockquote cite { display: block; font-style: normal; font-size: 0.85rem; color: var(--gray); margin-top: 0.7em; }

/* answer block: short, quotable, schema-backed */
.answer {
  border-left: 4px solid var(--red); background: var(--ivory);
  padding: 1.2rem 1.4rem; border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1.06rem; line-height: 1.65;
}
.answer b.q { display: block; font-family: var(--head); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red-deep); margin-bottom: 0.5rem; }

/* data table */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 480px; }
table.data caption { text-align: left; padding: 0.9rem 1.1rem; font-size: 0.82rem; color: var(--gray); border-bottom: 1px solid var(--line); background: var(--ivory); }
table.data th, table.data td { padding: 0.72rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line-2); }
table.data thead th { font-family: var(--head); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); background: var(--white); }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:nth-child(even) { background: rgba(250, 248, 244, 0.6); }
table.data td b { font-weight: 700; }
table.data tfoot td { font-size: 0.82rem; color: var(--gray); background: var(--ivory); border-top: 1px solid var(--line); }

/* source note */
.src { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.src a { color: var(--blue-deep); }

/* callout */
.note {
  border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.1rem 1.3rem; background: var(--white);
  font-size: 0.97rem;
}
.note b.lbl { display: block; font-family: var(--head); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 0.4rem; }

/* stat row */
.statrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.statrow div { background: var(--white); padding: 1.15rem 1.2rem; }
.statrow .n { font-family: var(--head); font-weight: 700; font-size: 1.9rem; line-height: 1; color: var(--red-deep); }
.statrow .l { font-size: 0.82rem; color: var(--gray); margin-top: 0.4rem; line-height: 1.45; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.6rem 1.15rem 0;
  font-family: var(--head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(0.95rem, 1.7vw, 1.1rem); letter-spacing: 0.02em; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0.4rem; top: 1.5rem;
  width: 11px; height: 11px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(45deg); transition: transform 0.22s;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq .a { padding: 0 0 1.35rem; max-width: 72ch; }
.faq .a > * + * { margin-top: 0.9em; }
.faq .a a { color: var(--blue-deep); }

/* ---------- card grids ---------- */
.grid { display: grid; gap: 1.3rem; }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.card {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem;
  background: var(--white); text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
a.card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(30, 44, 72, 0.1); border-color: var(--red); }
.card .k { font-family: var(--head); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-deep); }
.card h3 { font-family: var(--head); font-weight: 600; text-transform: uppercase; font-size: 1.18rem; letter-spacing: 0.02em; margin: 0.6rem 0 0.5rem; line-height: 1.15; }
.card p { font-size: 0.93rem; color: var(--ink-2); flex: 1; }
.card .go { font-family: var(--head); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-deep); margin-top: 1rem; }
a.card:hover .go { color: var(--red-deep); }

.sec { padding: clamp(2.6rem, 6vh, 4.5rem) 0; }
.sec.ivory { background: var(--ivory); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.sec-head { margin-bottom: 2rem; max-width: 62ch; }
.sec-head h2 { font-family: var(--head); font-weight: 700; text-transform: uppercase; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.08; margin-top: 0.8rem; }
.sec-head h2 em { font-style: normal; color: var(--red-deep); }
.sec-head p { margin-top: 0.9rem; color: var(--ink-2); }

/* ---------- lead form ---------- */
.leadblk { background: var(--ink); color: var(--white); }
.leadblk .wrap { padding-top: clamp(2.6rem, 6vh, 4.2rem); padding-bottom: clamp(2.6rem, 6vh, 4.2rem); }
.leadgrid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 880px) { .leadgrid { grid-template-columns: 1fr; } }
.leadblk h2 { font-family: var(--head); font-weight: 700; text-transform: uppercase; font-size: clamp(1.8rem, 3.8vw, 2.8rem); line-height: 1.05; margin-top: 0.8rem; }
.leadblk h2 em { font-style: normal; color: var(--coral); }
.leadblk .eyebrow { color: var(--coral); }
.leadblk .eyebrow::after { background: var(--coral); }
.leadblk p { color: rgba(255, 255, 255, 0.82); margin-top: 1rem; max-width: 46ch; }
.leadblk .who { display: flex; gap: 0.9rem; align-items: center; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.leadblk .who img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.leadblk .who b { display: block; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em; }
.leadblk .who span { font-size: 0.84rem; color: rgba(255, 255, 255, 0.7); }
.leadblk .who a { color: var(--coral); text-decoration: none; }

form.lead { background: var(--white); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); color: var(--ink); }
form.lead .fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 560px) { form.lead .fgrid { grid-template-columns: 1fr; } }
form.lead label { display: block; font-family: var(--head); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.35rem; }
form.lead .f { margin-bottom: 0.9rem; }
form.lead input, form.lead select, form.lead textarea {
  width: 100%; font-family: var(--body); font-size: 0.98rem; color: var(--ink);
  padding: 0.78rem 0.9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); transition: border-color 0.18s, box-shadow 0.18s;
}
form.lead input:focus, form.lead select:focus, form.lead textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58, 99, 174, 0.14);
}
form.lead textarea { resize: vertical; min-height: 92px; }
form.lead .hp { position: absolute; left: -9999px; opacity: 0; }
form.lead button { width: 100%; margin-top: 0.4rem; }
form.lead .fine { font-size: 0.78rem; color: var(--gray); margin-top: 0.9rem; line-height: 1.55; }
form.lead .msg { font-size: 0.92rem; margin-top: 0.9rem; padding: 0.8rem 1rem; border-radius: var(--r-sm); display: none; }
form.lead .msg.ok { display: block; background: #eaf5ec; color: #1f6b39; border: 1px solid #bfe0c8; }
form.lead .msg.err { display: block; background: #fdecec; color: #a3282f; border: 1px solid #f2c4c6; }

/* ---------- footer ---------- */
footer.site { background: var(--ink); color: rgba(255, 255, 255, 0.78); padding: clamp(2.6rem, 6vh, 4rem) 0 0; font-size: 0.92rem; }
footer.site .foot-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(2rem, 4vh, 3rem);
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 3rem);
}
@media (max-width: 880px) { footer.site .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .foot-grid { grid-template-columns: 1fr; } }
footer.site h4 { font-family: var(--head); font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 0.55rem; line-height: 1.5; }
footer.site a { text-decoration: none; transition: color 0.18s; }
footer.site a:hover { color: var(--coral); }
footer.site .foot-brand img { height: 44px; background: var(--white); padding: 0.5rem 0.7rem; border-radius: var(--r-sm); }
footer.site .foot-brand p { margin-top: 1rem; max-width: 34ch; line-height: 1.6; }
footer.site .foot-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 1.2rem var(--gutter);
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap;
  gap: 0.6rem 1.5rem; justify-content: space-between; font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- mobile action bar ---------- */
.mob-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.14);
  transform: translateY(110%); transition: transform 0.26s ease;
}
.mob-bar.show { transform: translateY(0); }
.mob-bar a {
  flex: 1; text-align: center; padding: 0.9rem 0.5rem; text-decoration: none;
  color: var(--white); font-family: var(--head); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.mob-bar a.call { background: var(--red); }
.mob-bar a.search { background: var(--blue); }
@media (max-width: 780px) { .mob-bar { display: flex; } body { padding-bottom: 0; } }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- page hero: two-column so the right half carries trust signal ---------- */
.phero-in {
  display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(272px, 0.8fr);
  gap: clamp(1.8rem, 4.5vw, 4rem); align-items: start;
}
@media (max-width: 940px) { .phero-in { grid-template-columns: 1fr; } }

.trustcard {
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: 0 14px 34px rgba(30, 44, 72, 0.07);
}
.trustcard .tc-top {
  background: var(--ink); color: var(--white); padding: 1.1rem 1.3rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.trustcard .tc-top img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.trustcard .tc-top b { display: block; font-family: var(--head); font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.04em; }
.trustcard .tc-top span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.72); }
.trustcard .tc-rows { display: grid; }
.trustcard .tc-row {
  display: flex; align-items: baseline; gap: 0.8rem; justify-content: space-between;
  padding: 0.78rem 1.3rem; border-bottom: 1px solid var(--line-2); text-decoration: none;
  transition: background 0.16s;
}
a.tc-row:hover { background: var(--ivory); }
.trustcard .tc-row .v { font-family: var(--head); font-weight: 700; font-size: 1.15rem; color: var(--red-deep); white-space: nowrap; }
.trustcard .tc-row .l { font-size: 0.82rem; color: var(--gray); line-height: 1.45; text-align: right; }
.trustcard .tc-stars { letter-spacing: 0.1em; color: var(--red); font-size: 0.9rem; }
.trustcard .tc-foot { padding: 1.1rem 1.3rem; display: grid; gap: 0.55rem; }
.trustcard .tc-foot .btn { width: 100%; }
.trustcard .tc-note { font-size: 0.74rem; color: var(--gray); text-align: center; line-height: 1.5; }
