/* ============================================================
   DebtReliefSimple — Global Styles
   Layout, typography, and shared components used across every page.
   Depends on tokens.css.
   ============================================================ */

/* ------------------------------------------------------------
   1. Reset & base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: var(--teal); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--teal-dark); }

button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

ul, ol { list-style: none; }

/* Accessible focus ring (do not remove — restyle only) */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------------------------------------
   2. Layout helpers
   ------------------------------------------------------------ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

.prose {
  max-width: var(--prose-w);
  margin: 0 auto;
}

/* ------------------------------------------------------------
   3. Scroll reveal
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero sections are always above the fold — never start hidden.
   Overrides .reveal so page/blog heroes load instantly without
   waiting for IntersectionObserver to fire. */
.page-hero .reveal,
.blog-hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ------------------------------------------------------------
   4. Disclosure bar (amber, top of every page)
   ------------------------------------------------------------ */
.disclosure-bar {
  background: var(--amber-bg);
  border-bottom: 1px solid rgba(217, 119, 6, .2);
  color: var(--gray-800);
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 20px;
  text-align: center;
}
.disclosure-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.disclosure-bar strong { color: var(--amber); font-weight: 600; }
.disclosure-bar a {
  color: var(--gray-800);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.disclosure-bar a:hover { color: var(--amber); }

/* ------------------------------------------------------------
   5. Navigation
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) {
  .nav__inner { padding: 16px 32px; }
}

.nav__logo {
  font-family: var(--font-sans);
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--navy);
  white-space: nowrap;
}
.nav__logo .debt   { font-weight: 700; color: var(--navy); }
.nav__logo .relief { font-weight: 300; color: var(--teal); }
.nav__logo .simple { font-weight: 300; color: var(--gray-400); }

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--navy); }

.nav__links a.nav__cta,
.nav__cta {
  display: none;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav__links a.nav__cta:hover,
.nav__cta:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .nav__links,
  .nav__cta { display: inline-flex; }
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
}
@media (min-width: 769px) {
  .nav__hamburger { display: none; }
}

/* Mobile menu panel */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--gray-200);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile a:hover { color: var(--navy); }
.nav__mobile .nav__cta {
  display: inline-block;
  margin-top: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .nav__links { display: none; }
}
@media (min-width: 769px) {
  .nav__mobile { display: none !important; }
}

/* ------------------------------------------------------------
   6. Section rhythm & eyebrow
   ------------------------------------------------------------ */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: var(--gray-50); }
.section--navy {
  background: var(--navy);
  color: rgba(255,255,255,.85);
}
.section--navy .section__title { color: #fff; }
.section--navy .section__lead { color: rgba(255,255,255,.7); }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section__eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 400;
}

.section__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--gray-600);
  font-weight: 300;
  max-width: var(--prose-w);
  margin-bottom: 48px;
}

.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__eyebrow { justify-content: center; }
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------
   7. Typography helpers for article/prose body
   ------------------------------------------------------------ */
h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; letter-spacing: -.01em; }
h1, h2 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -.02em; }
h3, h4 { font-family: var(--font-sans); font-weight: 600; }

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose table { margin-bottom: 20px; }

.prose h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.prose h3 {
  font-size: clamp(19px, 1.8vw, 22px);
  margin-top: 32px;
  margin-bottom: 12px;
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-700);
}
.prose ul, .prose ol {
  padding-left: 24px;
  font-size: 17px;
  color: var(--gray-700);
}
.prose ul li { list-style: disc; margin-bottom: 8px; }
.prose ol li { list-style: decimal; margin-bottom: 8px; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.prose a:hover { color: var(--teal); }
.prose blockquote {
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 20px;
  color: var(--gray-600);
  font-style: italic;
}

/* ------------------------------------------------------------
   8. Buttons
   ------------------------------------------------------------ */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--t-fast), color var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,159,110,.35);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--gray-200);
}
.btn-secondary:hover {
  background: var(--gray-50);
  color: var(--navy);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--teal-dark); gap: 12px; }

.btn-primary svg,
.btn-secondary svg,
.btn-ghost svg {
  width: 16px; height: 16px;
  transition: transform var(--t-fast);
}
.btn-primary:hover svg,
.btn-ghost:hover svg { transform: translateX(2px); }

/* ------------------------------------------------------------
   9. Page hero (inner pages)
   ------------------------------------------------------------ */
.page-hero {
  background: var(--navy);
  padding: clamp(56px, 7vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(8,145,178,.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--prose-w);
}
.page-hero__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,.4);
  transition: color var(--t-fast);
}
.page-hero__breadcrumb a:hover { color: rgba(255,255,255,.85); }
.page-hero__breadcrumb span { margin: 0 6px; }
.page-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-hero__label::after {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--teal);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 400;
}
.page-hero__sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,.65);
  font-weight: 300;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   10. Cards (generic content card)
   ------------------------------------------------------------ */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med),
              border-color var(--t-med);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gray-300);
}
.card:hover::before { transform: scaleX(1); }

.card__title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.card__body {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   11. Comparison table
   ------------------------------------------------------------ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 15px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: var(--gray-50); }
.compare-table th[scope="row"] {
  color: var(--navy);
  font-weight: 600;
  background: var(--gray-50);
}
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
}

/* ------------------------------------------------------------
   12. CTA band
   ------------------------------------------------------------ */
.cta-band {
  background: var(--navy);
  padding: clamp(56px, 7vw, 88px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 400;
}
.cta-band__sub {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-band .btn-primary { font-size: 16px; padding: 16px 32px; }
.cta-band__fineprint {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.cta-band__fineprint a { color: rgba(255,255,255,.7); text-decoration: underline; }

/* ------------------------------------------------------------
   13. Affiliate disclosure inline callout
   ------------------------------------------------------------ */
.aff-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--amber-bg);
  border: 1px solid rgba(217, 119, 6, .2);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 20px 0;
}
.aff-note strong { color: var(--amber); font-weight: 600; }
.aff-note a { color: var(--gray-800); text-decoration: underline; }

/* ------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer__brand {
  font-size: 20px;
  margin-bottom: 16px;
}
.footer__brand--debt   { color: #fff; font-weight: 600; }
.footer__brand--relief { color: var(--teal); font-weight: 300; }
.footer__brand--simple { color: rgba(255,255,255,.4); font-weight: 300; }
/* Logo inside dark footer — override the nav defaults */
.footer .nav__logo .debt   { color: #fff; }
.footer .nav__logo .relief { color: var(--teal); }
.footer .nav__logo .simple { color: rgba(255,255,255,.4); }
.footer__tagline {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}
.footer__col-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
  max-width: 680px;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}
.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal li a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  transition: color var(--t-fast);
}
.footer__legal li a:hover { color: rgba(255,255,255,.8); }

/* ------------------------------------------------------------
   15. Utility
   ------------------------------------------------------------ */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -40px; left: 8px;
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  z-index: 100;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 8px; color: #fff; }

/* ------------------------------------------------------------
   16. Blog — Author Block
   ------------------------------------------------------------ */
.post-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.post-author__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.post-author__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.post-author__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.post-author__bio {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------------------
   17. Blog — Trust Block
   ------------------------------------------------------------ */
.post-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  background: var(--teal-light);
  border: 1px solid rgba(8,145,178,.15);
  border-radius: var(--radius);
}
.post-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}
.post-trust__item svg { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.post-trust__item a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ------------------------------------------------------------
   18. Testimonials Section
   ------------------------------------------------------------ */
.testimonials-section {
  padding: clamp(56px, 7vw, 80px) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.testimonials__eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); text-align: center; margin-bottom: 12px;
}
.testimonials__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--navy); text-align: center;
  font-weight: 400; margin-bottom: 6px;
}
.testimonials__sub {
  font-size: 15px; color: var(--gray-500);
  text-align: center; margin-bottom: 40px;
  font-weight: 300; max-width: 520px; margin-left: auto; margin-right: auto;
}
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 72px; color: var(--teal-light);
  line-height: 1; position: absolute; top: 12px; left: 20px;
  pointer-events: none;
}
.testimonial-card__quote {
  font-size: 15px; color: var(--gray-700);
  line-height: 1.75; font-style: italic;
  padding-top: 28px; font-weight: 300; flex: 1;
}
.testimonial-card__name {
  font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px;
}
.testimonial-card__situation { font-size: 12px; color: var(--gray-400); }
.testimonials__note {
  text-align: center; font-size: 12px; color: var(--gray-400);
  margin-top: 24px; font-style: italic; line-height: 1.5;
}

/* ------------------------------------------------------------
   19. Contact Page
   ------------------------------------------------------------ */
.contact-body {
  padding: clamp(56px, 7vw, 88px) 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}
.contact-block__eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.contact-block__eyebrow::after {
  content: ''; display: block; width: 20px; height: 1px; background: var(--teal);
}
.contact-block__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--navy); font-weight: 400;
  line-height: 1.2; margin-bottom: 16px;
}
.contact-block p {
  font-size: 16px; color: var(--gray-600);
  line-height: 1.8; font-weight: 300; margin-bottom: 16px;
}
.contact-block p:last-child { margin-bottom: 0; }
.contact-block a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 2px; }
.contact-block a:hover { color: var(--teal); }
.contact-email-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
}
.contact-email-card__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.contact-email-card__address {
  font-family: var(--font-serif);
  font-size: 20px; color: #fff;
  margin-bottom: 16px; line-height: 1.3;
}
.contact-email-card__address a { color: var(--teal) !important; text-decoration: none !important; }
.contact-email-card__address a:hover { color: #fff !important; text-decoration: underline !important; }
.contact-email-card p {
  font-size: 13px !important; color: rgba(255,255,255,.55) !important;
  font-weight: 300 !important; line-height: 1.6 !important; margin-bottom: 0 !important;
}
.contact-privacy {
  background: var(--teal-light);
  border: 1px solid rgba(8,145,178,.18);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}
.contact-privacy strong { color: var(--navy); }
