/* =========================================================
   Law Office of Diana A. Ho-Yen, P.A. — hoyenlaw.com
   Design system & global styles
   ========================================================= */

:root {
  /* Brand palette */
  --navy-900: #0c2035;
  --navy-800: #12314e;
  --navy-700: #1a4066;
  --navy-600: #24547f;
  --gold-600: #a97e3f;
  --gold-500: #c19a53;
  --gold-400: #d8b877;
  --cream:    #f8f5ef;
  --sand:     #efe9df;
  --ink:      #16232e;
  --slate:    #4f6270;
  --slate-light: #7a8b98;
  --line:     #e4ddd1;
  --white:    #ffffff;

  --shadow-sm: 0 1px 2px rgba(12, 32, 53, .06), 0 2px 8px rgba(12, 32, 53, .05);
  --shadow-md: 0 6px 22px rgba(12, 32, 53, .09), 0 2px 6px rgba(12, 32, 53, .06);
  --shadow-lg: 0 24px 60px rgba(12, 32, 53, .16);

  --radius: 6px;
  --radius-lg: 14px;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy-900); line-height: 1.15; font-weight: 600; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 108px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.muted { color: var(--slate); }

/* ---------- Utility: eyebrow / headings ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-400); }
.h-xl { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.h-lg { font-size: clamp(2rem, 4vw, 3rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--slate); max-width: 62ch; }
.section-head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); }
.section-head.left { margin-left: 0; text-align: left; }
.rule { width: 58px; height: 3px; background: var(--gold-500); border: 0; margin: 1.4rem auto; }
.section-head.left .rule { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  padding: .92em 1.7em; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  letter-spacing: .01em; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold-500); color: #23180a; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); color: #23180a; box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn--ghost:hover { background: var(--navy-800); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: #fff; color: var(--navy-900); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 245, 239, .88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-serif); font-weight: 600; font-size: 1.24rem; color: var(--navy-900); letter-spacing: .01em; white-space: nowrap; }
.brand__sub { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 500; font-size: .96rem; color: var(--navy-900);
  padding: .55em .95em; border-radius: var(--radius); position: relative;
}
.nav a:hover { color: var(--gold-600); background: rgba(193,154,83,.08); }
.nav a.is-active { color: var(--gold-600); }
.nav a.is-active::after {
  content: ""; position: absolute; left: .95em; right: .95em; bottom: .28em;
  height: 2px; background: var(--gold-500); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta { display: none; }
.header-phone { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--navy-800); font-size: .96rem; }
.header-phone svg { color: var(--gold-600); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--white); border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center; color: var(--navy-900);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #eaf1f8; overflow: hidden;
  background:
    radial-gradient(1200px 520px at 78% -8%, rgba(193,154,83,.20), transparent 60%),
    linear-gradient(160deg, #0c2035 0%, #12314e 55%, #17395a 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding: clamp(64px, 9vw, 118px) 0 clamp(56px, 8vw, 104px); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.6vw, 4.3rem); }
.hero .lead { color: #c7d5e2; max-width: 54ch; }
.hero .eyebrow { color: var(--gold-400); }
.hero .btn-row { margin-top: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge b { font-family: var(--font-serif); font-size: 1.85rem; color: var(--gold-400); font-weight: 600; line-height: 1; }
.hero-badge span { font-size: .82rem; letter-spacing: .04em; color: #a9bccd; margin-top: 6px; }

/* Hero side card */
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 30px 30px 26px; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.35rem; }
.hero-card .stars { color: var(--gold-400); letter-spacing: 2px; font-size: 1.1rem; }
.hero-card blockquote { margin: 14px 0 16px; color: #d5e0ea; font-style: italic; font-size: 1.02rem; line-height: 1.6; }
.hero-card cite { color: #9fb4c6; font-style: normal; font-size: .86rem; }
.hero-card .divider { height: 1px; background: rgba(255,255,255,.12); margin: 20px 0; }
.hero-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.hero-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: #dbe6f0; }
.hero-card li svg { flex: none; color: var(--gold-400); margin-top: 3px; }

/* ---------- Trust bar ---------- */
.trust {
  background: var(--navy-900); color: #cdd9e4;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; padding: 20px 0; text-align: center; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; letter-spacing: .02em; }
.trust-item svg { color: var(--gold-400); flex: none; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,.16); }

/* ---------- Practice areas grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.pa-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
.pa-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.pa-icon {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); color: var(--gold-400);
  margin-bottom: 20px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.pa-card h3 { font-size: 1.28rem; margin-bottom: .35em; }
.pa-card p { color: var(--slate); font-size: .97rem; margin-bottom: 1.1em; }
.pa-card .more { margin-top: auto; font-weight: 600; font-size: .92rem; color: var(--gold-600); display: inline-flex; align-items: center; gap: .4em; }
.pa-card:hover .more { gap: .7em; }

/* ---------- Split / about preview ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.split--portrait { grid-template-columns: .85fr 1.15fr; }
.portrait-frame { position: relative; }
.portrait-frame img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.portrait-frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 2px solid var(--gold-400); border-radius: var(--radius-lg);
}
.portrait-placeholder {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  display: grid; place-items: center; color: var(--gold-400);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.portrait-placeholder .mono { font-family: var(--font-serif); font-size: 6rem; font-weight: 600; opacity: .9; }
.portrait-placeholder small { position: absolute; bottom: 26px; color: #b9cad9; letter-spacing: .1em; font-size: .8rem; text-transform: uppercase; }

.fact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.fact-list li { display: flex; gap: 13px; align-items: flex-start; }
.fact-list svg { flex: none; color: var(--gold-600); margin-top: 3px; }
.fact-list b { color: var(--navy-900); }

/* Credential cards */
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 12px; }
.cred {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-sm); text-align: center;
}
.cred b { display: block; font-family: var(--font-serif); font-size: 2.1rem; color: var(--navy-800); line-height: 1; }
.cred span { font-size: .88rem; color: var(--slate); margin-top: 8px; display: block; }

/* ---------- Why choose / value ---------- */
.value-band { background: var(--sand); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.value {
  display: flex; flex-direction: column; gap: 12px;
}
.value .vico { width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center; background: var(--white); color: var(--gold-600); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.value h3 { font-size: 1.2rem; margin: 0; }
.value p { color: var(--slate); font-size: .97rem; margin: 0; }

/* ---------- Testimonial band ---------- */
.testi-band {
  background:
    linear-gradient(160deg, #0c2035, #16324d);
  color: #e7eef5; position: relative; overflow: hidden;
}
.testi-band::before {
  content: "\201C"; position: absolute; top: -40px; left: 40px;
  font-family: var(--font-serif); font-size: 20rem; color: rgba(193,154,83,.14); line-height: 1;
}
.testi-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; }
.testi-inner .stars { color: var(--gold-400); letter-spacing: 3px; font-size: 1.3rem; margin-bottom: 18px; }
.testi-quote { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.7vw, 2.05rem); line-height: 1.45; color: #fff; font-style: italic; margin-bottom: 22px; }
.testi-cite { color: var(--gold-400); font-weight: 600; letter-spacing: .04em; }
.testi-cite span { display: block; color: #a9bccd; font-weight: 400; font-size: .88rem; margin-top: 4px; letter-spacing: .02em; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold-500); color: #23180a; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta-inner h2 { color: #201404; margin: 0 0 .25em; }
.cta-inner p { color: #4a3714; margin: 0; font-size: 1.05rem; }
.cta-band .btn--navy { background: var(--navy-900); }
.cta-band .btn--navy:hover { background: var(--navy-800); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(193,154,83,.18), transparent 60%),
    linear-gradient(160deg, #0c2035, #14304c);
  color: #fff; padding: clamp(54px, 8vw, 96px) 0 clamp(46px, 6vw, 74px);
}
.page-hero .crumbs { color: #9fb4c6; font-size: .86rem; margin-bottom: 18px; }
.page-hero .crumbs a { color: #c7d5e2; }
.page-hero .crumbs a:hover { color: var(--gold-400); }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.5rem); }
.page-hero .lead { color: #c7d5e2; }

/* ---------- Practice detail sections ---------- */
.pa-detail { display: grid; grid-template-columns: 1fr; gap: 0; }
.pa-block {
  scroll-margin-top: 100px;
  display: grid; grid-template-columns: 64px 1fr; gap: 26px;
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.pa-block:last-child { border-bottom: 0; }
.pa-block .pa-icon { margin: 0; }
.pa-block h2 { font-size: 1.7rem; }
.pa-block ul { columns: 2; column-gap: 34px; margin-top: 1em; }
.pa-block li { margin-bottom: .5em; break-inside: avoid; }

.chip-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.chip {
  font-size: .9rem; font-weight: 500; padding: .5em 1.05em; border-radius: 40px;
  background: var(--white); border: 1px solid var(--line); color: var(--navy-800);
}
.chip:hover { border-color: var(--gold-400); color: var(--gold-600); background: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.info-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.info-card__head { background: var(--navy-900); color: #fff; padding: 26px 30px; }
.info-card__head h2 { color: #fff; margin: 0; font-size: 1.4rem; }
.info-card__head p { margin: 6px 0 0; color: #b9cad9; font-size: .95rem; }
.info-list { list-style: none; padding: 8px 30px 24px; margin: 0; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-ico { width: 44px; height: 44px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--sand); color: var(--gold-600); }
.info-list .k { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }
.info-list .v { color: var(--navy-900); font-weight: 600; font-size: 1.05rem; }
.info-list .v a { color: var(--navy-900); }
.info-list .v a:hover { color: var(--gold-600); }
.info-list small { color: var(--slate); font-weight: 400; }

.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(26px, 4vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-900); margin-bottom: 7px; }
.field .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .8em .95em; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fdfcfa; transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(193,154,83,.18);
}
.form-note { font-size: .84rem; color: var(--slate); margin-top: 4px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--slate); }
.form-consent input { width: auto; margin-top: 4px; flex: none; }

.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-top: 26px; filter: grayscale(.15); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours-table td:last-child { text-align: right; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 24px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--navy-900); font-weight: 600; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-sans); font-size: 1.6rem; color: var(--gold-600); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--slate); margin: 0 0 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #b3c2d0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(50px, 7vw, 80px) 0 46px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #93a6b6; font-size: .94rem; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 1rem; letter-spacing: .02em; margin-bottom: 18px; font-family: var(--font-sans); font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: #b3c2d0; font-size: .95rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; margin-bottom: 13px; color: #b3c2d0; }
.footer-contact svg { flex: none; color: var(--gold-400); margin-top: 3px; }
.footer-contact a { color: #b3c2d0; }
.footer-contact a:hover { color: var(--gold-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0 40px; }
.footer-disclaimer { font-size: .8rem; color: #7f93a4; line-height: 1.6; margin-bottom: 18px; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: #7f93a4; }
.footer-meta a { color: #93a6b6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .pa-card:hover { transform: none; }
}

/* ---------- Floating call btn (mobile) ---------- */
.fab-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 55; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--gold-500); color: #23180a;
  align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .grid-3, .value-grid, .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .header-cta .btn--gold { display: none; }
  .header-inner { min-height: 66px; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open .nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 2px; background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 22px; box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .nav a { padding: .85em .6em; font-size: 1.05rem; }
  .site-header.nav-open .nav a.is-active::after { display: none; }
  .site-header.nav-open .nav .nav-cta {
    display: block; margin-top: 12px; padding: .85em; text-align: center;
    background: var(--gold-500); color: #23180a; border-radius: var(--radius); font-weight: 600;
  }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 13px; text-align: left; }
  .trust-item { font-size: .9rem; }
  .trust-sep { display: none; }
  .split, .split--portrait, .contact-grid, .cta-inner { grid-template-columns: 1fr; }
  .split--portrait .portrait-frame, .split--portrait .portrait-placeholder { max-width: 420px; margin: 0 auto; }
  .fab-call { display: flex; }
  .pa-block ul { columns: 1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .value-grid, .cred-grid, .footer-top, .form-row { grid-template-columns: 1fr; }
  .hero-badges { gap: 20px 30px; }
  .cta-inner { text-align: left; }
  .pa-block { grid-template-columns: 1fr; }
  .pa-block .pa-icon { margin-bottom: 4px; }
}
