/* ===================================================================
   Recruitment NYC — Shared Stylesheet
   Brand: teal #0E7C7B · navy #0D1B2A · amber #F4A025
   Fonts: DM Serif Display (headings) · DM Sans (body)
   =================================================================== */

:root {
  --teal: #0E7C7B;
  --teal-dark: #0a5f5e;
  --teal-light: #e6f2f2;
  --navy: #0D1B2A;
  --navy-soft: #1a2c3f;
  --amber: #F4A025;
  --amber-dark: #d8860d;
  --ink: #1d2733;
  --muted: #5a6b7a;
  --line: #e3e8ec;
  --paper: #ffffff;
  --paper-soft: #f7f9fa;
  --paper-tint: #eef4f4;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 3px rgba(13,27,42,.08), 0 1px 2px rgba(13,27,42,.04);
  --shadow-md: 0 6px 20px rgba(13,27,42,.10);
  --shadow-lg: 0 18px 50px rgba(13,27,42,.16);
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; line-height: 1.12; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
.eyebrow {
  font-family: "DM Sans", sans-serif;
  font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tint { background: var(--paper-soft); }
.section--teal { background: var(--teal-light); }
.center { text-align: center; }
.measure { max-width: 660px; }
.measure.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: "DM Sans", sans-serif; font-weight: 700; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--amber { background: var(--amber); color: var(--navy); box-shadow: 0 6px 16px rgba(244,160,37,.35); }
.btn--amber:hover { background: var(--amber-dark); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 6px 16px rgba(14,124,123,.3); }
.btn--teal:hover { background: var(--teal-dark); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }

/* ===================================================================
   Header / Nav
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: "DM Serif Display", serif; font-size: 1.35rem; color: var(--navy); }
.brand b { color: var(--teal); font-weight: 400; }
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--amber); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: .9rem; list-style: none; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink); padding: .3rem 0; position: relative; white-space: nowrap; }
.nav-links a:hover { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.lang { display: flex; gap: .2rem; align-items: center; font-size: .8rem; font-weight: 700; color: var(--muted); }
.lang a { padding: .2rem .4rem; border-radius: 6px; }
.lang a.active { background: var(--teal); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }

@media (max-width: 1400px) {
  .nav-links, .nav .nav-cta-desktop { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: .25rem;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: .6rem 0; width: 100%; border-bottom: 1px solid var(--paper-soft); }
}

/* ===================================================================
   Hero
   =================================================================== */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(14,124,123,.45), transparent 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(244,160,37,.18), transparent 55%);
}
.hero .wrap { position: relative; padding-block: clamp(64px, 11vw, 130px); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: rgba(255,255,255,.82); margin-top: 1.1rem; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-trust { margin-top: 1.8rem; font-size: .9rem; color: rgba(255,255,255,.7); display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

/* ===================================================================
   Cards / Grid
   =================================================================== */
.grid { display: grid; gap: 1.4rem; }
.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: 900px) { .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 {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card .ico { width: 46px; height: 46px; border-radius: 11px; background: var(--teal-light); display: grid; place-items: center; margin-bottom: 1rem; color: var(--teal); }
.card .ico svg { width: 24px; height: 24px; }

/* Routing cards (home) */
.route-card { display: flex; flex-direction: column; }
.route-card .arrow { margin-top: auto; padding-top: 1rem; color: var(--teal); font-weight: 700; font-size: .92rem; }
.route-card:hover .arrow { color: var(--teal-dark); }

/* ---------- Pastel tinted tiles (matching brand site) ---------- */
.tile {
  border-radius: 18px; padding: 1.7rem; border: 1px solid transparent;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile .ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.1rem; color: #fff; }
.tile .ico svg { width: 26px; height: 26px; }
.tile h3 { margin-bottom: .55rem; }
.tile p { color: #45525f; font-size: .98rem; }
.tile .arrow { margin-top: auto; padding-top: 1.1rem; font-weight: 700; font-size: .93rem; }

/* tile color themes */
.tile.mint    { background:#e6f3f1; }
.tile.mint    .ico{ background:#0E7C7B; } .tile.mint   .arrow{ color:#0E7C7B; }
.tile.peach   { background:#fcefdc; }
.tile.peach   .ico{ background:#E89A2C; } .tile.peach  .arrow{ color:#c9810f; }
.tile.lavender{ background:#ecebf8; }
.tile.lavender .ico{ background:#6C5CE0; } .tile.lavender .arrow{ color:#6C5CE0; }
.tile.pink    { background:#fbe7ee; }
.tile.pink    .ico{ background:#D6477E; } .tile.pink   .arrow{ color:#D6477E; }
.tile.sage    { background:#e4f1e4; }
.tile.sage    .ico{ background:#2E9E54; } .tile.sage   .arrow{ color:#258345; }
.tile.blue    { background:#e3eef9; }
.tile.blue    .ico{ background:#2D7DD2; } .tile.blue   .arrow{ color:#2D7DD2; }

/* ---------- Pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .55rem; }
.pill { background: var(--paper-tint); color: var(--navy); border-radius: 999px; padding: .5em 1em; font-size: .9rem; font-weight: 600; }

/* ---------- Trust band ---------- */
.band { background: var(--teal); color: #fff; }
.band .wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding-block: 2.4rem; }
.band .item { display: flex; flex-direction: column; gap: .2rem; }
.band .item b { font-family: "DM Serif Display", serif; font-size: 1.15rem; }
.band .item span { font-size: .88rem; color: rgba(255,255,255,.8); }
@media (max-width: 760px){ .band .wrap { grid-template-columns: repeat(2,1fr); } }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step .n {
  counter-increment: step; flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: "DM Serif Display", serif; font-size: 1.2rem;
}
.step .n::before { content: counter(step); }
.step h4 { font-family: "DM Sans", sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: .15rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Offer / callout ---------- */
.callout {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  color: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem);
  position: relative; overflow: hidden;
}
.callout::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(244,160,37,.25), transparent 70%);
}
.callout h3 { color: #fff; font-size: clamp(1.4rem,3vw,2rem); margin-bottom: .6rem; position: relative; }
.callout p { color: rgba(255,255,255,.85); position: relative; max-width: 60ch; }
.callout .btn { margin-top: 1.3rem; position: relative; }
.callout .fineprint { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .9rem; position: relative; }

/* ===================================================================
   Forms
   =================================================================== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .7em .85em; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light);
}
.field textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--muted); }
.consent input { margin-top: .25rem; flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--teal); }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .3rem; }

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding-block: clamp(40px, 6vw, 64px) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: "DM Sans", sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.75); font-size: .95rem; display: block; padding: .25rem 0; }
.site-footer a:hover { color: var(--amber); }
.footer-brand .brand { color: #fff; margin-bottom: .8rem; }
.footer-brand p { font-size: .92rem; max-width: 30ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-bottom a { display: inline; }

/* ---------- Utility ---------- */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.stack > * + * { margin-top: 1rem; }
@media (prefers-reduced-motion: reduce){ *{ transition: none !important; scroll-behavior: auto !important; } }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* ===================================================================
   Page utilities (added for full multi-page build)
   =================================================================== */
.prose p { margin-bottom: 1rem; }
.prose h3 { margin: 1.8rem 0 .6rem; }
.prose ul { margin: .4rem 0 1rem; padding-left: 1.2rem; }
.prose li { margin-bottom: .3rem; color: var(--ink); }
.measure-wide { max-width: 820px; }
.measure-wide.center { margin-inline: auto; }

/* Disclaimers / notes */
.note { background: var(--teal-light); border: 1px solid #cfe6e5; border-left: 4px solid var(--teal); border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: .95rem; color: var(--ink); }
.note + .note { margin-top: 1rem; }
.note.warn { background: #fef6e7; border-color: #f3dca0; border-left-color: var(--amber); }
.note b { color: var(--navy); }

/* Check list */
.ul-check { list-style: none; display: grid; gap: .65rem; padding: 0; }
.ul-check li { position: relative; padding-left: 1.8rem; color: var(--ink); }
.ul-check li::before { content: ""; position: absolute; left: 0; top: .42em; width: 13px; height: 13px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.ul-check.amber li::before { background: var(--amber); box-shadow: 0 0 0 3px rgba(244,160,37,.18); }

/* Price tag */
.price { display: inline-flex; align-items: baseline; gap: .35rem; font-family: "DM Serif Display", serif; color: var(--navy); }
.price b { font-size: 2.1rem; line-height: 1; }
.price span { font-size: .95rem; color: var(--muted); font-family: "DM Sans", sans-serif; }

/* Two-col content (text + media/form) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; gap: 1.8rem; } }

/* Google Translate widget — blended into nav */
.gt-widget { display:inline-flex; align-items:center; }
.gt-widget .goog-te-gadget { font-size:0 !important; color:transparent !important; }
.gt-widget .goog-te-gadget .goog-te-combo {
  margin:0; padding:.2rem .4rem; border:1px solid var(--line,#e5e7eb); border-radius:6px;
  font-family:inherit; font-size:.78rem; font-weight:700; color:var(--muted,#6b7280); background:#fff; cursor:pointer;
}
.gt-widget .goog-te-gadget span { display:none !important; }
/* Stop Google's top banner from pushing the page down */
body { top:0 !important; }
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon { display:none !important; }
iframe.skiptranslate { display:none !important; }

/* Brand logo image in header */
.brand-logo { height: 48px; width: auto; display: inline-block; vertical-align: middle; }
.site-header .brand .dot { display: none; }
@media (max-width: 600px){ .brand-logo { height: 32px; } }

/* Mobile: show logo icon only (hide wordmark text) to declutter */
@media (max-width: 600px){
  .site-header .brand { font-size: 0; gap: 0; }
  .site-header .brand b { font-size: 0; }
}

/* Stacked wordmark + wider header nav */
.site-header .wrap.nav { max-width: 1480px; }
.brand .wordmark { display: inline-flex; flex-direction: column; line-height: .98; font-family: "DM Serif Display", serif; font-size: 1.15rem; color: var(--navy); }
.brand .wordmark b { color: var(--teal); font-weight: 400; }
.nav-links { gap: .72rem !important; }
.nav-links a { font-size: .92rem; }


/* Footer full logo on white panel for contrast on navy */
.footer-logo { display: inline-block; background: #fff; padding: 14px 18px; border-radius: 14px; line-height: 0; }
.footer-logo img { height: 104px; width: auto; display: block; }
@media (max-width: 600px){ .footer-logo img { height: 88px; } }

/* Footer full logo on light panel for contrast on navy */
.footer-logo { display: inline-block; background: #fff; padding: 16px 20px; border-radius: 14px; box-shadow: var(--shadow-sm); }
.footer-logo img { height: 104px; width: auto; display: block; }
@media (max-width: 600px){ .footer-logo img { height: 84px; } }

/* Fix icon-only brand collapsing to zero width in flex */
.site-header .brand { flex: 0 0 auto; }
.brand-logo { width: auto; max-width: none; flex: 0 0 auto; }

/* Footer logo card hugs the logo (don't stretch to column width) */
.footer-logo { width: max-content; max-width: 100%; align-self: flex-start; padding: 12px 14px; }
.footer-logo img { height: 96px; }

/* ===== WhatsApp groups + floating button ===== */
.wa-float{position:fixed;right:20px;bottom:20px;width:56px;height:56px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;z-index:900;
  box-shadow:0 6px 18px rgba(0,0,0,.22);border:3px solid #fff;transition:transform .15s ease}
.wa-float:hover{transform:scale(1.06)}
.wa-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:10px}
.wa-card{display:flex;align-items:center;gap:10px;background:#fff;border:1px solid #cfe6e4;
  border-radius:12px;padding:.8rem .9rem;text-decoration:none;transition:border-color .15s ease,transform .15s ease}
.wa-card:hover{border-color:#25D366;transform:translateY(-2px)}
.wa-card-t{display:flex;flex-direction:column;line-height:1.25}
.wa-name{color:var(--navy);font-weight:600;font-size:.95rem}
.wa-join{color:var(--teal);font-size:.8rem}
.wa-open{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  margin-top:12px;background:var(--teal);border-radius:12px;padding:1rem 1.15rem;text-decoration:none}
.wa-open-l{display:flex;flex-direction:column}
.wa-open-h{color:#fff;font-weight:600;font-size:1rem}
.wa-open-p{color:#bfe3df;font-size:.85rem}
.wa-open-btn{background:var(--amber);color:#3d2600;font-weight:700;font-size:.85rem;
  padding:.55rem .95rem;border-radius:999px;white-space:nowrap}

/* ===== Footer social icons ===== */
.footer-social{display:flex;gap:10px;margin-top:1rem}
.footer-social a{display:inline-flex;width:34px;height:34px;align-items:center;justify-content:center;
  border-radius:50%;background:rgba(255,255,255,.12);color:#fff;transition:background .15s ease}
.footer-social a:hover{background:var(--teal)}
.footer-social svg{width:18px;height:18px}

/* ===== FAQ accordion ===== */
.faq-list{display:flex;flex-direction:column;gap:.6rem}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:12px;overflow:hidden}
.faq-item summary{cursor:pointer;padding:1rem 1.15rem;font-weight:600;color:var(--navy);
  list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:1.4rem;color:var(--teal);font-weight:400;line-height:1}
.faq-item[open] summary::after{content:"\2013"}
.faq-a{padding:0 1.15rem 1.1rem;color:#3a4a52;line-height:1.6}
.faq-a p{margin:0}

/* ===== Floating call button (stacked above WhatsApp) ===== */
.call-float{position:fixed;right:20px;bottom:86px;width:56px;height:56px;border-radius:50%;
  background:var(--teal);display:flex;align-items:center;justify-content:center;z-index:900;
  box-shadow:0 6px 18px rgba(0,0,0,.22);border:3px solid #fff;transition:transform .15s ease}
.call-float:hover{transform:scale(1.06)}

/* ===== Trust badges band ===== */
.trust-band{background:var(--navy);padding:.9rem 0}
.trust-strip{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem 2rem}
.trust-badge{display:flex;align-items:center;gap:.5rem;color:#fff;font-size:.9rem;font-weight:500}
.trust-ico{display:inline-flex;width:20px;height:20px;color:var(--amber)}
.trust-ico svg{width:20px;height:20px}

/* ===== Map embeds ===== */
.map-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.map-embed{width:100%;height:200px;border:0;border-radius:12px}

/* ===== Testimonials ===== */
.rev-grid{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}
.rev-card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:2rem 1.75rem;
  max-width:34rem;text-align:center;display:flex;flex-direction:column;align-items:center;gap:.75rem}
.rev-stars{display:flex;gap:3px;color:var(--amber)}
.rev-stars svg{width:22px;height:22px}
.rev-quote{margin:0;font-family:var(--serif,"DM Serif Display",Georgia,serif);font-size:1.3rem;
  line-height:1.4;color:var(--navy)}
.rev-by{display:flex;flex-direction:column;gap:.15rem;margin-top:.25rem}
.rev-name{font-weight:600;color:var(--navy)}
.rev-meta{font-size:.85rem;color:var(--muted,#6b7a82)}
