/* Suzanne Furlong — Realtor Landing Site
   Palette: Suzanne's Canva brand kit — midnight navy, SueNami blue, champagne gold,
   warm ivory, charcoal. A deepened SueNami blue (--accent-deep) is used sparingly for
   links/hover states. Buttons are simplified to two states only: navy solid (primary)
   and ivory + navy outline (secondary) — gold is reserved for stars, thin accent lines
   and small details, never large button fills.
   Fonts: Playfair Display for headings, Montserrat for everything else. */

:root {
  --navy: #071c2c;
  --navy-soft: #12314e;
  --accent: #56aeff;       /* SueNami blue — decorative fills, icons only */
  --accent-deep: #1f6fc4;  /* deepened SueNami blue — links, hover states */
  --accent-deep-dark: #17588f;
  --gold: #c9a45f;         /* Champagne gold — stars, thin accent lines, small details */
  --gold-dark: #a9854a;
  --cream: #f7f3ea;        /* Warm ivory — page background, secondary buttons */
  --cream-2: #eaf2fc;      /* pale sky blue — hover/secondary tint */
  --ink: #171717;          /* Charcoal — body text */
  --muted: #5c6b7a;
  --line: #dce6f0;
  --radius: 14px;
  --btn-radius: 999px;
  --shadow: 0 10px 30px rgba(7, 28, 44, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--cream);
  background-image:
    radial-gradient(560px 320px at 15% 0%, rgba(86,174,255,0.10), transparent 60%),
    radial-gradient(620px 360px at 100% 10%, rgba(7,28,44,0.08), transparent 55%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

h1, h2, .page-title, .section-heading, .hero-headline, .final-cta h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.wrap-wide { max-width: 720px; }

@media (min-width: 860px) {
  .wrap { max-width: 1120px; padding: 0 40px 70px; }
  .wrap-wide { max-width: 1120px; }
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.topbar span { color: #a9d3f5; }

/* ============ Site nav (hamburger on mobile, inline on desktop) ============ */
.site-nav {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 60;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 20px;
}

.nav-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 26px rgba(7,28,44,0.14);
  transition: max-height 0.25s ease;
}

.nav-menu.open { max-height: 320px; }

.nav-menu a {
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  border-top: 1px solid var(--line);
}

.nav-menu a.current { color: var(--accent-deep); }

@media (min-width: 860px) {
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 40px;
  }
  .nav-inner { max-width: none; margin: 0; padding: 0; flex: 0 0 auto; }
  .nav-brand { font-size: 22px; }
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
  }
  .nav-menu a { border-top: none; padding: 4px 0; font-size: 13px; }
}

/* ============ Hero split (photo protected — never covered by text) ============ */
.hero-split {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(7, 28, 44, 0.18);
  margin-top: 18px;
  margin-bottom: 20px;
}

.hero-split-photo { width: 100%; line-height: 0; }
.hero-split-photo img { width: 100%; height: auto; display: block; }

.hero-split-copy {
  padding: 26px 22px 28px;
  text-align: left;
}

.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.hero-headline {
  font-size: 27px;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 700;
}

.hero-sub {
  font-size: 15.5px;
  line-height: 1.5;
  color: #3a4552;
  margin: 0 0 20px;
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .hero-split { flex-direction: row-reverse; align-items: stretch; }
  .hero-split-photo { flex: 1 1 48%; }
  .hero-split-photo img { height: 100%; object-fit: cover; }
  .hero-split-copy { flex: 1 1 52%; display: flex; flex-direction: column; justify-content: center; padding: 50px 52px; }
  .hero-headline { font-size: 39px; }
  .hero-sub { font-size: 16px; }
  .hero-cta-row { flex-direction: row; gap: 14px; }
  .hero-cta-row .btn { flex: 0 1 auto; width: auto; white-space: nowrap; padding-left: 24px; padding-right: 24px; }
}

/* ============ Credibility columns ============ */
.credibility-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 6px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.credibility-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6px;
}

.credibility-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.credibility-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

.credibility-accent {
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 7px 0 6px;
}

.credibility-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.credibility-divider {
  width: 1px;
  background: var(--line);
  margin: 2px 0;
}

@media (min-width: 860px) {
  .credibility-label { font-size: 11.5px; }
  .credibility-number { font-size: 30px; }
}

/* ============ Section heading ============ */
.section-heading {
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 4px;
  text-align: left;
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 16px;
  text-align: left;
}

.wave-accent {
  display: block;
  width: 84px;
  height: 9px;
  margin: 8px 0 14px;
}

.section-block { margin: 30px 0; }

@media (min-width: 860px) {
  .section-heading { font-size: 24px; }
  .section-sub { font-size: 16px; max-width: 640px; }
}

/* ============ Action cards ============ */
.action-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.08s ease;
}

.action-card:active { transform: scale(0.99); }

.action-card-text { display: flex; flex-direction: column; gap: 3px; }

.action-card-title {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.action-card-sub {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}

.action-card-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--line);
}

@media (min-width: 860px) {
  .action-cards { flex-direction: row; gap: 20px; }
  .action-card { flex: 1 1 0; padding: 22px 20px; }
  .action-card-sub { font-size: 14px; }
}

/* ============ Buttons (two states only: primary navy / secondary ivory-outline) ============ */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 18px;
  border-radius: var(--btn-radius);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
  line-height: 1.3;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7,28,44,0.28);
}

.btn-primary:hover { background: var(--navy-soft); }

.btn-secondary {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover { background: #fff; }

.btn-sub {
  font-weight: 500;
  font-size: 11.5px;
  display: block;
  opacity: 0.85;
  margin-top: 2px;
  text-transform: none;
  letter-spacing: normal;
}

/* CTA buttons (legacy stack, still used on sub-pages) */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

/* ============ Testimonials mini row (homepage) ============ */
.testimonial-mini-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 860px) {
  .testimonial-mini-row { flex-direction: row; align-items: stretch; }
  .testimonial-mini-row .testimonial-card { flex: 1; }
}

/* ============ SueNami Difference section ============ */
.difference-split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.difference-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.difference-photo-wrap img { width: 100%; height: auto; display: block; }

.difference-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.difference-item {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.difference-item-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 3px;
}

.difference-item-sub {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 860px) {
  .difference-split { flex-direction: row; align-items: center; }
  .difference-photo-wrap { flex: 1 1 40%; }
  .difference-list { flex: 1 1 60%; }
  .difference-item-sub { font-size: 14px; }
}

/* ============ Final CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  margin: 30px 0 26px;
  box-shadow: 0 16px 34px rgba(7,28,44,0.32);
}

.final-cta h2 { font-size: 23px; margin: 0 0 8px; color: #fff; }
.final-cta p { font-size: 14px; color: #c9d6e3; margin: 0 0 22px; }
.final-cta .btn-secondary { background: var(--cream); border-color: var(--cream); max-width: 280px; margin: 0 auto; }
.final-cta .btn-secondary:hover { background: #fff; }

/* ============ Social row ============ */
.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}

.social-row a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.social-row svg { width: 22px; height: 22px; fill: var(--navy); }

/* ============ Footer ============ */
.footer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

@media (min-width: 860px) {
  .footer { font-size: 14px; }
}

.footer .phone {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

/* ============ Page header (sub-pages) ============ */
.page-header {
  padding-top: 22px;
  padding-bottom: 4px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.page-title {
  font-size: 23px;
  color: var(--navy);
  margin: 0 0 8px;
}

.page-sub {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 22px;
}

@media (min-width: 860px) {
  .page-sub { font-size: 16px; max-width: 640px; }
}

/* ============ Google reviews card ============ */
.google-review-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  transition: transform 0.08s ease, box-shadow 0.15s ease;
}

.google-review-card:active { transform: scale(0.99); }

.google-review-stars {
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.google-review-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-review-text strong {
  color: var(--navy);
  font-size: 15px;
}

.google-review-text span {
  color: var(--muted);
  font-size: 13.5px;
}

@media (min-width: 860px) {
  .google-review-text span { font-size: 14px; }
}

/* ============ Testimonials ============ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.testimonial-card .quote {
  font-size: 15.5px;
  line-height: 1.6;
  color: #26313c;
  margin: 0 0 10px;
  font-style: italic;
}

@media (min-width: 860px) {
  .testimonial-card .quote { font-size: 16px; }
}

.testimonial-card .attribution {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 13px;
}

/* ============ Forms ============ */
.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.field .hint {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 3px;
}

@media (min-width: 860px) {
  .field .hint { font-size: 13.5px; }
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent-deep);
  background: #fff;
}

.field textarea { resize: vertical; min-height: 70px; }

.submit-btn {
  width: 100%;
  margin-top: 4px;
}

.honey { position: absolute; left: -9999px; opacity: 0; height: 0; }

.privacy-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.5;
}

@media (min-width: 860px) {
  .privacy-note { font-size: 14px; }
}

/* ============ RealScout search embed ============ */
.realscout-embed {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 220px;
}

.widget-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  pointer-events: none;
  animation: rs-fade-out 0.6s ease 2.6s forwards;
}

@keyframes rs-fade-out {
  to { opacity: 0; visibility: hidden; }
}

realscout-advanced-search,
realscout-office-listings,
realscout-home-value,
realscout-your-listings {
  --rs-as-button-text-color: #ffffff;
  --rs-as-background-color: #ffffff;
  --rs-as-widget-title-color: #071c2c;
  --rs-as-button-color: #071c2c;
  width: 100%;
  display: block;
}

.widget-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.5;
}

@media (min-width: 860px) {
  .widget-note { font-size: 14px; }
}

/* ============ Thank you page ============ */
.thanks-box {
  text-align: center;
  padding-top: 60px;
}

.thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
}

/* ============ Meet Suzanne (about page) ============ */
.page-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.about-split {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  margin: 4px 0 6px;
}

@media (max-width: 859px) {
  body.page-meet .page-sub { margin-bottom: 2px; }
  body.page-meet .about-split { margin-top: 0; }
}

.about-photo-wrap {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
  flex-shrink: 0;
}

.about-photo-wrap img { width: 100%; height: auto; display: block; }

.about-intro p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.about-intro p:last-child { margin-bottom: 0; }

@media (min-width: 860px) {
  .about-split { flex-direction: row; align-items: flex-start; gap: 34px; margin-top: 22px; }
  .about-photo-wrap { flex: 0 0 300px; }
  .about-intro { flex: 1 1 auto; padding-top: 4px; }
  .about-intro p { font-size: 17px; }
}

.pull-quote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 16px 34px rgba(7,28,44,0.28);
}

.pull-quote-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}

.pull-quote-sub {
  font-size: 12.5px;
  color: #c9d6e3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

@media (min-width: 860px) {
  .pull-quote-text { font-size: 24px; }
}

/* ============ SueNami panel (Meet Suzanne centerpiece) ============ */
.suenami-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius);
  padding: 0 24px 34px;
  margin: 32px 0;
  text-align: center;
  box-shadow: 0 18px 40px rgba(7,28,44,0.32);
}

.suenami-wave {
  display: block;
  width: 100%;
  height: 64px;
  margin: 0 0 8px;
}

.suenami-eyebrow {
  position: relative;
  color: #8fd3ff;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 10px;
}

.suenami-accent {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.suenami-quote {
  position: relative;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  max-width: 560px;
  margin: 0 auto 22px;
}

.suenami-copy {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.suenami-copy p {
  color: #f2f6fa;
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 14px;
  text-align: left;
}

.suenami-tagline { margin-top: 20px; }

.suenami-tagline-lead {
  position: relative;
  color: #f2f6fa;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.suenami-tagline-bold {
  position: relative;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (min-width: 860px) {
  .suenami-panel { padding: 0 60px 46px; }
  .suenami-wave { height: 70px; }
  .suenami-eyebrow { font-size: 15px; }
  .suenami-quote { font-size: 27px; }
  .suenami-copy { max-width: 660px; }
  .suenami-copy p { font-size: 16.5px; text-align: center; }
  .suenami-tagline-lead { font-size: 15px; }
  .suenami-tagline-bold { font-size: 16px; }
}

/* ============ Info card (Local Roots. Global Reach.) ============ */
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  margin: 24px 0;
}

.info-card-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 5px;
}

.info-card-body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ Footer text links ============ */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-deep);
  margin: 4px 0 20px;
}

.footer-links a { color: var(--accent-deep); }
.footer-links a:hover { text-decoration: underline; }
.footer-links .sep { color: var(--line); }

/* ============ Meet Suzanne — desktop typography bump ============ */
@media (min-width: 860px) {
  body.page-meet .difference-item-title { font-size: 15.5px; }
  body.page-meet .difference-item-sub { font-size: 16px; }
  body.page-meet .info-card-title { font-size: 16.5px; }
  body.page-meet .info-card-body { font-size: 16px; }
}
