/* ============ We Buy In FL — Design System ============ */
:root {
  --navy-900: #0B2240;
  --navy-800: #0E2A47;
  --navy-700: #163A5E;
  --navy-600: #1F4D7A;
  --navy-100: #E6ECF3;

  --gold-700: #9B7F3D;
  --gold-600: #B89653;
  --gold-500: #C2A45C;
  --gold-400: #D7BC7C;
  --gold-100: #F4ECD6;

  --sand-50:  #FBF9F5;
  --sand-100: #F5F1E8;
  --sand-200: #E9E2D2;

  --ink: #131922;
  --ink-soft: #3A4252;
  --ink-mute: #6B7280;
  --line: #E5E0D3;
  --line-strong: #D4CCB8;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(14, 42, 71, 0.05), 0 1px 1px rgba(14, 42, 71, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(14, 42, 71, 0.18), 0 2px 6px rgba(14, 42, 71, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(14, 42, 71, 0.28), 0 6px 14px rgba(14, 42, 71, 0.08);

  --font-display: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 16px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

/* ===== Layout ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-600);
}

.h-display {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
  font-weight: 600;
}
.h-section {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
}
.h-card { font-size: 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--navy-700); }
.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 8px 24px -10px rgba(184, 150, 83, 0.6);
}
.btn-gold:hover { background: var(--gold-400); }
.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
}
.btn-ghost:hover { color: var(--gold-700); }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-full { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-mark-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.brand-name {
  display: flex; flex-direction: column;
  line-height: 1.05;
}
.brand-name b {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 18px;
  color: var(--navy-900);
}
.brand-name span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav a:hover { color: var(--navy-800); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy-800);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s ease;
}
.phone-pill:hover { background: var(--navy-700); }
.phone-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(194, 164, 92, 0.25);
}
@media (max-width: 900px) {
  .nav { display: none; }
}
@media (max-width: 540px) {
  .header-inner { height: 64px; }
  .phone-pill span.long { display: none; }
  .brand-name span { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 90% -10%, rgba(194, 164, 92, 0.12), transparent 60%),
    linear-gradient(180deg, #FBF9F5 0%, #FFFFFF 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 72px; }
}
.hero h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5.2vw, 60px);
}
.hero h1 .accent {
  font-style: italic;
  color: var(--navy-700);
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  display: block;
  height: 6px;
  background: var(--gold-500);
  opacity: 0.55;
  margin-top: -8px;
  border-radius: 4px;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.6;
}
.hero-trust {
  margin-top: 28px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--gold-600); flex-shrink: 0; }
.hero-cta-row {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero form card */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(194,164,92,0.55), transparent 40%, rgba(14,42,71,0.10) 80%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.form-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.form-card .form-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.form-row { display: grid; gap: 14px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .form-row-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--line-strong);
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(22, 58, 94, 0.12);
}
.form-foot {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-mute);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--ink-mute);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.form-divider::before, .form-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* Success state */
.form-success {
  text-align: center;
  padding: 14px 0;
}
.form-success .checkmark {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gold-100);
  display: grid; place-items: center;
  color: var(--gold-700);
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); font-size: 15px; }

/* ===== Marquee bar ===== */
.marquee {
  background: var(--navy-900);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.95;
}
.marquee-dot { color: var(--gold-500); font-size: 10px; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ===== What we buy ===== */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .buy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .buy-grid { grid-template-columns: 1fr; } }

.buy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.buy-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.buy-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--sand-100);
  color: var(--navy-800);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.buy-card h3 { font-size: 19px; margin-bottom: 8px; }
.buy-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ===== How it works ===== */
.how {
  background: var(--sand-50);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(194,164,92,0.18), transparent 70%);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::after {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--gold-400) 0 6px, transparent 6px 14px);
  z-index: 0;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps::after { display: none; }
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  display: grid; place-items: center;
  margin-bottom: 22px;
  border: 4px solid var(--sand-50);
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15px; }
.step-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold-700);
  font-weight: 600;
}

/* ===== Areas served ===== */
.areas {
  background: #fff;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr; } }

.area-counties {
  display: grid;
  gap: 18px;
}
.county-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  background: #fff;
}
.county-card h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 10px;
}
.county-card .city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.county-card .city-list span {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy-900);
}
.county-card .city-list span:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: var(--gold-500);
}

/* Map illustration */
.map-card {
  background: linear-gradient(180deg, #FBF9F5, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.map-card h4 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-700);
  font-weight: 700;
  margin-bottom: 6px;
}
.map-card .map-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 16px;
}

/* ===== Why us ===== */
.why {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  left: -100px; bottom: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(194, 164, 92, 0.16), transparent 70%);
}
.why h2 { color: #fff; }
.why .lead { color: rgba(255,255,255,0.78); }
.why .eyebrow { color: var(--gold-400); }
.why .eyebrow::before { background: var(--gold-400); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: background .2s ease, border-color .2s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(194,164,92,0.4);
}
.why-card .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold-400);
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}
.why-card h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.7); font-size: 14.5px; }

/* ===== Investor network ===== */
.investor {
  background: var(--sand-50);
}
.investor-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .investor-grid { grid-template-columns: 1fr; } }
.investor-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.stat {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
}
.stat .v {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1;
}
.stat .l {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.network-visual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}

/* ===== FAQ ===== */
.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--navy-700); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--navy-800);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.faq-item.open .faq-icon {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 26px 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 720px;
}

/* ===== Contact ===== */
.contact {
  background:
    linear-gradient(180deg, #FBF9F5 0%, #fff 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-info h2 { color: #fff; }
.contact-info::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(194,164,92,0.20), transparent 70%);
}
.contact-info .phone-big {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 48px);
  color: #fff;
  font-weight: 600;
  margin: 18px 0 6px;
  display: inline-block;
}
.contact-info .phone-big:hover { color: var(--gold-400); }
.contact-info .phone-hours {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.contact-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s ease;
}
.contact-pill:hover { background: rgba(194,164,92,0.18); border-color: rgba(194,164,92,0.5); }
.contact-pill svg { color: var(--gold-400); }
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.82);
}
.contact-list svg { color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }

/* ===== Reviews / social proof ===== */
.reviews {
  background: #fff;
  border-top: 1px solid var(--line);
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .reviews-head { grid-template-columns: 1fr; } }
.google-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.google-summary .g {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 18px;
  color: #4285F4;
}
.google-summary .rating-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}
.google-summary .stars { display: inline-flex; gap: 2px; color: var(--gold-500); }
.google-summary small {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.review-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.review-card .stars { color: var(--gold-500); display: inline-flex; gap: 2px; }
.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.45;
  color: var(--navy-900);
  font-weight: 500;
}
.review-card .review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-900);
  background: var(--gold-100);
  flex-shrink: 0;
}
.review-meta .who { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-meta .where { font-size: 12px; color: var(--ink-mute); }
.review-meta .source {
  margin-left: auto;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Trust strip below hero */
.trust-strip {
  background: var(--sand-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-pill .stars { color: var(--gold-500); display: inline-flex; gap: 2px; }
.trust-pill b { color: var(--navy-900); font-weight: 700; }

/* ===== Social ===== */
.social-row {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.social-row-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
}
.social-icons { display: inline-flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.social-icon:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}
.footer-social {
  margin-top: 16px;
  display: inline-flex;
  gap: 10px;
}
.footer-social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-soft);
  background: var(--sand-50);
  border: 1px solid var(--line);
  transition: all .15s ease;
}
.footer-social-icon:hover {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}

/* ===== Footer ===== */
.footer {
  background: #fff;
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col li a {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.footer-col li a:hover { color: var(--navy-800); }
.footer-blurb {
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 320px;
  line-height: 1.6;
  margin-top: 14px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ===== Generic utilities ===== */
.kicker-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-100);
  color: var(--gold-700);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.list-checks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.list-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.list-checks svg {
  color: var(--gold-600);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Coastal divider */
.coast-divider {
  width: 100%;
  height: 36px;
  display: block;
  color: var(--gold-500);
  opacity: 0.5;
}

.float-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  display: none;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 540px) { .float-cta { display: inline-flex; } }
