:root {
  --navy: #173B57;
  --navy-deep: #0C2338;
  --navy-mid: #1F4A6B;
  --gold: #F5B82E;
  --gold-deep: #D89A0E;
  --bg: #FAF7F0;
  --bg-alt: #F2ECDD;
  --paper: #FFFFFF;
  --ink: #17212B;
  --ink-muted: #57677A;
  --line: #E4DDC9;
  --container: 1220px;
  --radius: 4px;
  --radius-lg: 10px;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 18px 50px rgba(12, 35, 56, 0.14);
  --shadow-sm: 0 4px 16px rgba(12, 35, 56, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.4rem; font-family: var(--sans); font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }

em, .accent { color: var(--gold-deep); font-style: italic; }

p { margin: 0 0 1.1em; color: var(--ink-muted); font-size: 1.02rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

/* Grain texture overlay */
.grain {
  position: absolute; inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s ease;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--navy-deep);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(.65,0,.35,1);
  z-index: 1;
}
.btn:hover::before { transform: translateX(0); }

.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { color: var(--gold); }

.btn-line { background: transparent; color: var(--paper); border: 1px solid rgba(255,255,255,0.4); }
.btn-line::before { background: var(--paper); }
.btn-line:hover { color: var(--navy-deep); }

.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy::before { background: var(--gold); }
.btn-navy:hover { color: var(--navy-deep); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 26px 0;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled { background: var(--navy-deep); padding: 14px 0; box-shadow: var(--shadow-sm); }

.logo {
  display: flex;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--paper);
  letter-spacing: 0;
}
.logo em { font-style: italic; color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 26px; }
.header-phone { display: flex; align-items: center; gap: 8px; color: var(--paper); font-weight: 700; font-size: 0.92rem; }
.header-phone svg { width: 15px; height: 15px; }

.nav-toggle { display: none; background: none; border: none; color: var(--paper); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw); background: var(--navy-deep); flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 40px; transform: translateX(100%); transition: transform 0.35s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 210; }
  .header-phone span.phone-text { display: none; }
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 85% 0%, var(--navy-mid) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  padding: 176px 0 120px;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  right: -4%; top: 8%;
  font-family: var(--serif);
  font-size: 26rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,184,46,0.16);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 700px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.hero h1 { color: var(--paper); margin-bottom: 28px; }
.hero-sub { color: rgba(255,255,255,0.72); font-size: 1.18rem; max-width: 520px; margin-bottom: 40px; }
.hero-ctas { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-call { display: flex; align-items: center; gap: 10px; color: var(--paper); font-weight: 700; }
.hero-call svg { width: 18px; height: 18px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.16); padding-top: 30px; }
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-family: var(--serif); font-size: 2.1rem; color: var(--paper); font-weight: 400; }
.hero-stats span { color: rgba(255,255,255,0.6); font-size: 0.82rem; letter-spacing: 0.02em; }

/* Hero grid + credentials card */
.hero .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
@media (max-width: 960px) { .hero .container { grid-template-columns: 1fr; } }
.hero-inner { max-width: none; }

.cred-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,184,46,0.28);
  border-radius: var(--radius-lg);
  padding: 8px;
}
.cred-card-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(245,184,46,0.2);
}
.cred-card-head span { color: var(--gold); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.cred-card-head h3 { color: var(--paper); font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin-top: 8px; }
.cred-list { list-style: none; margin: 0; padding: 18px 24px 24px; display: flex; flex-direction: column; gap: 18px; }
.cred-list li { display: flex; gap: 14px; align-items: flex-start; }
.cred-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245,184,46,0.14);
  display: flex; align-items: center; justify-content: center;
}
.cred-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; }
.cred-text strong { display: block; color: var(--paper); font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.cred-text span { color: rgba(255,255,255,0.6); font-size: 0.84rem; }

/* Vetting checklist section */
.vet-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .vet-grid { grid-template-columns: 1fr; gap: 40px; } }
.vet-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.vet-checklist li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.vet-checklist li:first-child { padding-top: 0; }
.vet-num { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-deep); width: 34px; flex-shrink: 0; }
.vet-checklist h3 { font-size: 1.05rem; margin-bottom: 6px; }
.vet-checklist p { font-size: 0.94rem; margin-bottom: 0; }

.measure-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: sticky;
  top: 130px;
}
.measure-card h3 { color: var(--paper); font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 22px; }
.measure-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.measure-card li { display: flex; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.94rem; }
.measure-card li svg { width: 18px; height: 18px; flex-shrink: 0; fill: var(--gold); margin-top: 2px; }
@media (max-width: 900px) { .measure-card { position: static; } }

/* Property-type grid */
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .property-grid { grid-template-columns: 1fr; } }
.property-card { background: var(--paper); border-top: 3px solid var(--gold); border-radius: var(--radius); padding: 34px; }
.property-card .prop-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(23,59,87,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.property-card .prop-icon svg { width: 21px; height: 21px; stroke: var(--navy); fill: none; }
.property-card h3 { margin-bottom: 12px; }
.property-card p { font-size: 0.94rem; margin-bottom: 18px; }
.property-card .tag-list span { font-size: 0.78rem; padding: 6px 12px; }

/* Marquee trust strip */
.marquee-strip {
  background: var(--navy-deep);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,184,46,0.25);
  border-bottom: 1px solid rgba(245,184,46,0.25);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.marquee-track span::after { content: "\25C6"; color: var(--gold); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 128px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy-deep); position: relative; }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold-deep);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold-deep); }
.section-navy .eyebrow, .section-navy .eyebrow::before { color: var(--gold); background: var(--gold); }
.section-navy h2 { color: var(--paper); }
.section-navy p { color: rgba(255,255,255,0.68); }

.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head.wide { max-width: 100%; }

/* Intro / drop cap */
.intro-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.intro-grid .label-col { position: sticky; top: 140px; }
.dropcap:first-letter {
  font-family: var(--serif);
  font-size: 4.2rem;
  color: var(--navy);
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 34px; } .intro-grid .label-col { position: static; } }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag-list span {
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--paper);
}

/* Services accordion / index list */
.index-list { border-top: 1px solid var(--line); }
.index-row { border-bottom: 1px solid var(--line); }
.index-row button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
  background: none;
  border: none;
  padding: 30px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
}
.index-num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-deep); width: 46px; flex-shrink: 0; }
.index-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); flex: 1; }
.index-plus { font-size: 1.4rem; color: var(--navy); transition: transform 0.25s ease; flex-shrink: 0; }
.index-row.open .index-plus { transform: rotate(45deg); color: var(--gold-deep); }
.index-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.index-row.open .index-body { max-height: 240px; }
.index-body-inner { padding: 0 0 32px 72px; max-width: 700px; }
.index-body-inner p { font-size: 0.98rem; }
@media (max-width: 640px) {
  .index-body-inner { padding-left: 0; }
  .index-title { font-size: 1.08rem; }
}

/* Process alternating rows */
.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.process-row:last-child { border-bottom: none; }
.process-row .ghost-num {
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,184,46,0.35);
  position: absolute;
  top: 50%; transform: translateY(-50%);
}
.process-row:nth-child(odd) .ghost-num { left: -20px; }
.process-row:nth-child(even) .ghost-num { right: -20px; }
.process-row:nth-child(even) .process-text { order: 2; }
.process-row:nth-child(even) .process-visual { order: 1; }
.process-text h3 { color: var(--paper); font-family: var(--serif); font-weight: 400; font-size: 1.9rem; margin-bottom: 16px; }
.process-text p { color: rgba(255,255,255,0.7); }
.process-visual {
  border: 1px solid rgba(245,184,46,0.3);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: rgba(255,255,255,0.03);
}
.process-visual ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.process-visual li { color: rgba(255,255,255,0.75); font-size: 0.94rem; display: flex; gap: 10px; }
.process-visual li::before { content: "\2192"; color: var(--gold); }
@media (max-width: 860px) {
  .process-row { grid-template-columns: 1fr; gap: 24px; padding: 44px 0; }
  .process-row:nth-child(even) .process-text, .process-row:nth-child(even) .process-visual { order: initial; }
  .process-row .ghost-num { display: none; }
}

/* Versus / compare */
.versus-wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; max-width: 920px; margin: 0 auto; }
.versus-card { background: var(--paper); border: 1px solid var(--line); padding: 40px; }
.versus-card.no { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.versus-card.yes { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; background: var(--navy); }
.versus-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 20px; }
.versus-card.yes h3 { color: var(--gold); }
.versus-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.versus-card li { font-size: 0.95rem; color: var(--ink-muted); padding-left: 20px; position: relative; }
.versus-card li::before { content: "\2013"; position: absolute; left: 0; color: var(--ink-muted); }
.versus-card.yes li { color: rgba(255,255,255,0.85); }
.versus-card.yes li::before { content: "\2713"; color: var(--gold); }
.versus-vs {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  align-self: center;
  margin: 0 -32px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 760px) {
  .versus-wrap { grid-template-columns: 1fr; }
  .versus-card.no, .versus-card.yes { border-radius: var(--radius-lg); }
  .versus-vs { margin: -20px auto; }
}

/* Quote / estimate section */
.quote-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 4px solid var(--gold);
}
.quote-form-side { padding: 54px; }
.quote-card .quote-form-side h2 { font-size: 2rem; margin-bottom: 12px; color: var(--navy); }
.quote-card .quote-form-side > p { margin-bottom: 28px; color: var(--ink-muted); }
.quote-frame { min-height: 420px; }
.quote-frame iframe { width: 100%; height: 420px; border: none; }
.quote-info-side {
  background: var(--navy);
  padding: 54px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.quote-info-side h3 { color: var(--paper); font-family: var(--serif); font-weight: 400; font-size: 1.6rem; margin-bottom: 22px; }
.quote-info-side ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.quote-info-side li { display: flex; gap: 12px; color: rgba(255,255,255,0.82); font-size: 0.96rem; }
.quote-info-side li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; fill: var(--gold); }
@media (max-width: 900px) {
  .quote-card { grid-template-columns: 1fr; }
  .quote-form-side, .quote-info-side { padding: 36px 26px; }
}

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-row { border-bottom: 1px solid var(--line); }
.faq-row button {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: none; border: none;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
}
.faq-num { font-family: var(--serif); color: var(--gold-deep); font-size: 1.2rem; width: 34px; flex-shrink: 0; }
.faq-q { font-size: 1.1rem; font-weight: 700; color: var(--navy); flex: 1; }
.faq-icon { color: var(--navy); font-size: 1.3rem; transition: transform 0.25s ease; }
.faq-row.open .faq-icon { transform: rotate(45deg); color: var(--gold-deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-row.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 0 26px 58px; max-width: 700px; }
@media (max-width: 600px) { .faq-a-inner { padding-left: 0; } }

/* Final CTA */
.final-cta {
  background: var(--navy-deep);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: var(--paper); margin-bottom: 20px; }
.final-cta p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 40px; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 70px 0 30px; font-size: 0.9rem; border-top: 1px solid rgba(245,184,46,0.2); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 30px; }
.footer-grid .logo { margin-bottom: 16px; }
.footer-grid > div p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer-col h4 { color: var(--paper); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal animation: runs once on initial paint only, never gates content on JS or scroll */
.reveal { animation: fadeInUp 0.8s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  .marquee-track { animation: none; }
}

/* Thank-you page */
.ty-wrap { max-width: 660px; margin: 0 auto; padding: 190px 28px 120px; text-align: center; }
.ty-badge { width: 78px; height: 78px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; }
.ty-badge svg { width: 36px; height: 36px; fill: var(--navy-deep); }
.ty-wrap h1 { font-size: 2.6rem; margin-bottom: 16px; }
.ty-wrap .ty-lead { font-size: 1.1rem; color: var(--ink-muted); margin-bottom: 40px; }
.ty-notice { background: var(--paper); border-top: 3px solid var(--gold); border-radius: var(--radius-lg); padding: 30px 32px; text-align: left; box-shadow: var(--shadow-sm); }
.ty-notice p { color: var(--ink); font-size: 0.96rem; margin-bottom: 14px; }
.ty-notice p:last-child { margin-bottom: 0; }

/* Terms page */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 170px 28px 120px; }
.legal-wrap h1 { font-size: 2.6rem; margin-bottom: 10px; }
.legal-meta { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 44px; }
.legal-wrap h2 { font-family: var(--sans); font-weight: 700; font-size: 1.3rem; margin: 46px 0 14px; color: var(--navy); }
.legal-wrap h3 { font-size: 1rem; margin: 24px 0 8px; color: var(--navy-mid); }
.legal-wrap ul { color: var(--ink-muted); padding-left: 20px; }
.legal-wrap li { margin-bottom: 8px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 34px; color: var(--navy); font-weight: 700; font-size: 0.9rem; }
