/* ============================================================
   FCHS Dispositions — investor-tuned brand stylesheet
   Tokens mirror /Branding/style-guide.md + /Branding/components.md
   ============================================================ */

:root {
  /* Brand */
  --brand-navy: #02568B;
  --brand-navy-dark: #013E66;
  /* Gold pulled directly from the FCHS logo icon (the warm yellow "C" mark) */
  --brand-gold: #FBAF42;
  --brand-gold-dark: #E89B2A;
  --brand-cream: #FAF7F2;
  --brand-ink: #0F1E36;
  --brand-slate: #475569;
  --brand-slate-light: #94A3B8;
  --brand-border: #E2E8F0;
  --brand-success: #16A34A;
  --brand-warn: #CA8A04;
  --white: #FFFFFF;

  /* Investor-tone surfaces (slightly darker than consumer brand) */
  --surface-deep: #0A1E33;
  --surface-card: #FFFFFF;
  --surface-muted: #F1F5F9;

  /* Type */
  --font-display: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Shadow */
  --shadow-card: 0 1px 3px rgba(15,30,54,.08), 0 1px 2px rgba(15,30,54,.04);
  --shadow-lift: 0 10px 25px -10px rgba(15,30,54,.20);
  --shadow-hover: 0 20px 40px -15px rgba(15,30,54,.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--brand-ink);
  background: var(--brand-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brand-navy);
  margin: 0 0 .5em;
  line-height: 1.2;
}

a { color: var(--brand-navy); text-decoration: none; }
a:hover { color: var(--brand-gold); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255,255,255,.92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand img {
  height: 48px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.nav-right { display: flex; gap: 12px; align-items: center; }

.pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-navy);
  background: rgba(2,86,139,.08);
  padding: 6px 12px;
  border-radius: 999px;
}

/* "All Deals" hub link in nav */
.nav-link-hub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-navy);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: background .15s ease;
}
.nav-link-hub:hover { background: rgba(2,86,139,.06); color: var(--brand-navy); }
@media (max-width: 560px) { .nav-link-hub span, .nav-link-hub { font-size: 13px; padding: 6px 8px; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 700;
  box-shadow: 0 6px 16px -8px rgba(251,175,66,.7);
}
.btn-primary:hover:not(:disabled) {
  background: var(--brand-gold-dark);
  color: var(--brand-navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(251,175,66,.8);
}
.btn-primary:disabled {
  background: var(--brand-slate-light);
  cursor: not-allowed;
  box-shadow: none;
}
.btn-secondary {
  background: var(--brand-navy);
  color: var(--white);
}
.btn-secondary:hover { background: var(--brand-navy-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost-navy {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--brand-border);
  padding: 8px 14px;
  font-size: 14px;
}
.btn-ghost-navy:hover { border-color: var(--brand-navy); color: var(--brand-navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--brand-cream) 0%, var(--white) 100%);
  padding: 40px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-navy);
  background: var(--brand-gold);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero-left h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -.01em;
}

.hero-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--brand-slate);
  margin: 0 0 24px;
}
.hero-loc svg { color: var(--brand-navy); flex-shrink: 0; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--surface-muted);
  aspect-ratio: 16 / 10;
}
.gallery .photo {
  background-size: cover;
  background-position: center;
  background-color: var(--brand-slate-light);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery .photo:first-child {
  grid-row: 1 / 3;
  grid-column: 1;
}
.gallery .more-badge {
  position: absolute;
  inset: 0;
  background: rgba(15,30,54,.55);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.stat {
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid var(--brand-border);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-ink);
  font-variant-numeric: tabular-nums;
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand-slate);
  margin-top: 2px;
}
@media (max-width: 560px) {
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(4), .stat:nth-child(5) { border-top: 1px solid var(--brand-border); }
}

.summary-blurb {
  font-size: 16px;
  color: var(--brand-ink);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Teaser tiles */
.teaser-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.teaser-tile {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-md);
  padding: 16px;
}
.teaser-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brand-slate);
  margin-bottom: 4px;
}
.teaser-val {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-navy);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   FORM CARD
   ============================================================ */
.hero-right { position: sticky; top: 84px; }
@media (max-width: 900px) { .hero-right { position: static; } }

.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--brand-border);
  overflow: hidden;
}
.form-card-header {
  padding: 22px 24px 0;
}
.form-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 6px;
}
.form-card-header h2 {
  font-size: 22px;
  color: var(--brand-navy);
  margin: 0 0 6px;
}
.form-sub {
  margin: 0;
  color: var(--brand-slate);
  font-size: 14px;
  line-height: 1.5;
}

#lead-form {
  padding: 18px 24px 24px;
}
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-ink);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--brand-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 4px rgba(2,86,139,.10);
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 8px 0 16px;
  font-size: 11px;
  color: var(--brand-slate);
  line-height: 1.5;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-gold);
  cursor: pointer;
}

#submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--brand-slate);
  margin: 12px 0 0;
}

/* Success state */
.form-success {
  padding: 32px 24px;
  text-align: center;
  animation: fadeIn .4s ease;
}
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(22,163,74,.12);
  color: var(--brand-success);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 {
  color: var(--brand-navy);
  margin: 0 0 8px;
}
.form-success p {
  color: var(--brand-slate);
  font-size: 15px;
  margin: 0 0 18px;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ============================================================
   GATED CONTENT
   ============================================================ */
.gated-wrap {
  padding: 40px 0 80px;
  background: var(--brand-cream);
}
.lock-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(2,86,139,.08);
  color: var(--brand-navy);
  padding: 12px 18px;
  border-radius: var(--r-md);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1px dashed rgba(2,86,139,.25);
}
.lock-banner.hidden { display: none; }

.gated-content {
  position: relative;
  transition: filter .6s ease;
}
.gated-content[data-locked="true"] {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
}
.gated-content[data-locked="true"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,247,242,0) 0%, rgba(250,247,242,.4) 70%);
  pointer-events: none;
}

.section-h {
  font-size: 22px;
  margin: 32px 0 14px;
  color: var(--brand-navy);
}

.card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}
.address-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.address-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: var(--brand-ink);
  margin: 0;
}
.address-card .card-sub {
  margin: 0;
  color: var(--brand-slate);
  font-size: 16px;
}
.card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 4px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-navy);
  align-self: flex-start;
}

/* Financials grid */
.fin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.fin-card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-md);
  padding: 18px;
}
.fin-card.highlight {
  background: var(--brand-navy);
  color: var(--white);
  border-color: var(--brand-navy);
}
.fin-card.highlight .fin-lbl { color: rgba(255,255,255,.7); }
.fin-card.highlight .fin-val { color: var(--white); }
.fin-card.highlight-success {
  background: rgba(22,163,74,.08);
  border-color: rgba(22,163,74,.35);
}
.fin-card.highlight-success .fin-val { color: var(--brand-success); }

.fin-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand-slate);
  margin-bottom: 6px;
}
.fin-val {
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-ink);
  font-variant-numeric: tabular-nums;
}

/* Scope list */
.scope-list {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-md);
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.scope-list li {
  padding: 12px 20px;
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}
.scope-list li:last-child { border-bottom: 0; }
.scope-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gold);
  margin-top: 9px;
  flex-shrink: 0;
}

/* Comps table */
.comps-table-wrap {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-md);
  overflow-x: auto;
}
.comps-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.comps-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--surface-muted);
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brand-border);
}
.comps-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--brand-border);
  vertical-align: top;
}
.comps-table tr:last-child td { border-bottom: 0; }
.comps-table .price {
  font-weight: 700;
  color: var(--brand-success);
  font-variant-numeric: tabular-nums;
}

/* Logistics */
.logistics-grid {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: grid;
  gap: 8px;
  font-size: 15px;
}
.logistics-grid strong { color: var(--brand-navy); }

/* Dispo contact CTA */
.dispo-contact {
  margin-top: 28px;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.dispo-contact .dispo-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.dispo-contact .dispo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.dispo-contact .dispo-role {
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.dispo-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-deep);
  color: rgba(255,255,255,.85);
  padding: 48px 0 24px;
  margin-top: 60px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
/* Footer brand lockup — icon (keeps its gold color) + wordmark in white text.
   Replaces the old single-image footer-logo that was being CSS-filtered to flat
   white (which destroyed the gold icon). */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand-icon {
  height: 48px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.footer-brand-text {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.footer-brand-text .first  { font-size: 17px; font-weight: 700; display: block; }
.footer-brand-text .second { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.78; }

/* Legacy class kept so any old markup using .footer-logo still renders sanely */
.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
  image-rendering: -webkit-optimize-contrast;
}
.footer-blurb { font-size: 14px; max-width: 360px; line-height: 1.6; color: rgba(255,255,255,.7); }
.site-footer address { font-style: normal; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.8); }
.site-footer a { color: rgba(255,255,255,.9); }
.site-footer a:hover { color: var(--brand-gold); }
.footer-legal {
  padding-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.footer-legal p { margin: 4px 0; }

/* Footer interconnection CTA → fchomesale.com */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 10px 16px;
  background: var(--brand-gold);
  color: var(--brand-navy) !important;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  transition: background .15s ease;
}
.footer-cta:hover { background: var(--brand-gold-dark); color: var(--brand-navy) !important; }

/* ============================================================
   TRUST STRIP — below hero on deal pages, also used on hub
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item .trust-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--brand-navy);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.trust-item .trust-lbl {
  font-size: 13px;
  color: var(--brand-slate);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust-item .trust-num { font-size: 20px; }
}

/* ============================================================
   FLOOR PLAN
   ============================================================ */
.floor-plan {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 20px;
}
.floor-plan .card-eyebrow { margin-bottom: 8px; }
.floor-plan img {
  width: 100%;
  height: auto;
  border-radius: var(--r-sm);
  display: block;
}

/* ============================================================
   FORM additions — honeypot, opt-in
   ============================================================ */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.optin {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 12px 0 4px;
  font-size: 13px;
  color: var(--brand-ink);
  line-height: 1.45;
  cursor: pointer;
}
.optin input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-gold);
  cursor: pointer;
}

/* ============================================================
   DISPO CONTACT — add headshot + bio
   ============================================================ */
.dispo-contact {
  margin-top: 28px;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
@media (max-width: 720px) {
  .dispo-contact { grid-template-columns: 1fr; text-align: center; }
}
.dispo-headshot img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: var(--white);
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) { .dispo-headshot img { margin: 0 auto; } }
.dispo-info .dispo-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.dispo-info .dispo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
}
.dispo-info .dispo-role {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  margin-top: 2px;
}
.dispo-info .dispo-bio {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  margin: 8px 0 0;
  max-width: 460px;
  line-height: 1.5;
}
.dispo-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
@media (max-width: 720px) { .dispo-actions { align-items: center; } }

/* ============================================================
   HUB PAGE — deals.fchomesale.com root
   ============================================================ */
.hub-hero {
  background: linear-gradient(180deg, var(--brand-navy) 0%, #03345a 100%);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.hub-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.hub-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.55;
}
.hub-hero .hub-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(251,175,66,.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hub-section {
  padding: 56px 0;
  background: var(--brand-cream);
}
.hub-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  gap: 16px;
}
.hub-section-head h2 {
  font-size: 28px;
  margin: 0;
}
.hub-section-head .hub-count {
  font-size: 14px;
  color: var(--brand-slate);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.deal-card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(2,86,139,.30);
  color: inherit;
}
.deal-card .card-photo {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-slate-light);
  position: relative;
}
.deal-card .card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.deal-card .card-body { padding: 18px 20px 20px; }
.deal-card .card-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--brand-slate);
  margin-bottom: 8px;
}
.deal-card .card-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0 0 12px;
}
.deal-card .card-stats {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--brand-ink);
  border-top: 1px solid var(--brand-border);
  padding-top: 12px;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.deal-card .card-stats span { font-weight: 600; }
.deal-card .card-stats em {
  font-style: normal;
  color: var(--brand-slate);
  font-weight: 400;
  margin-left: 2px;
}
.deal-card .card-arv {
  margin-top: 12px;
  font-size: 14px;
  color: var(--brand-slate);
}
.deal-card .card-arv strong {
  color: var(--brand-navy);
  font-weight: 700;
}
.deal-card .card-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-navy);
}
.deal-card .card-cta svg { transition: transform .15s ease; }
.deal-card:hover .card-cta svg { transform: translateX(2px); }

.hub-empty {
  text-align: center;
  padding: 48px 24px;
  border: 1.5px dashed var(--brand-border);
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--brand-slate);
}
.hub-empty h3 { color: var(--brand-navy); margin: 0 0 8px; }
