/* ============================================================================
   DRAWBRIDGE (landing) — HOUSEBOOKER SKIN
   Re-tints the getdrawbridge.app marketing homepage to the Forever Still house
   look (warm ivory + gilt + Cinzel/Jost). This page carries its OWN inline
   :root (--bg / --gold / --cream …) that drives the visible landing, AND it
   loads the shared /theme.css (--db-* "Dark Sleek"). We DO NOT edit theme.css;
   instead we remap BOTH token sets to the warm values on THIS page only.

   The gold accent (both --gold and --db-gold) and the decorative Tangerine
   script are LEFT untouched. Additive + reversible, loaded last so it wins.
   Values mirror keep/keep-theme.css and housebooker-ui.css.
   Source of truth: C:\foreverstill\housebooker-ui\
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Jost:wght@300;400;500;600&display=swap');

:root{
  /* ---- this page's inline tokens ---- */
  --bg:#f2ead6; --bg-soft:#faf4e5; --bg-warm:#faf4e5; --cream:#faf4e5;
  --text:#26221c; --text-muted:#6b6152; --text-soft:#26221c;
  --ink:#26221c; --ink-soft:#6b6152;
  --rule:rgba(177,144,77,.28);
  --ok:#4e7a46; --err:#9a4432;
  --font-display:'Cinzel',Georgia,serif;
  --font-sans:'Jost',system-ui,-apple-system,sans-serif;
  /* gold + gold-ink + blush LEFT as-is (brand accent) */

  /* ---- shared theme.css --db-* tokens, remapped warm (accent gold kept) ---- */
  --db-bg:#f2ead6; --db-surface:#faf4e5; --db-surface-low:#fffdf8;
  --db-surface-high:#f3edde; --db-card:#faf4e5;
  --db-glass-bg:rgba(250,244,229,.86); --db-glass-border:rgba(177,144,77,.28);
  --db-text:#26221c; --db-text-muted:#6b6152; --db-text-dim:#8a7f6d;
  --db-outline:#ddd0b1; --db-outline-strong:#c9ad74;
  --db-brick:#211d18; --db-brick-deep:#96793b; --db-brick-soft:rgba(177,144,77,.15);
  --db-hearth:#4e7a46; --db-hearth-soft:rgba(78,122,70,.14);
  --db-shadow-sm:0 1px 2px rgba(33,29,24,.06);
  --db-shadow-card:0 1px 2px rgba(33,29,24,.06),0 8px 26px rgba(33,29,24,.08);
  --db-shadow-hover:0 2px 4px rgba(33,29,24,.07),0 16px 44px rgba(33,29,24,.14);
  --db-noise:none;
  --db-font-serif:'Cinzel',Georgia,serif;
  --db-font-body:'Jost',system-ui,-apple-system,sans-serif;
}

/* warm page + soft gilt glow at top */
body.db{ background-color:var(--bg);
  background-image:radial-gradient(circle at 50% 0%, rgba(177,144,77,.10) 0%, transparent 55%); }

/* Cinzel: a touch more presence than the old 300 weight */
.hero__tagline, h2, .card h3, .step h3, .benefit h3, .cta h2, .family h2,
.footer__brand{ font-weight:500; }

/* the scrolled nav reads as warm stationery, not smoked glass */
.nav.scrolled{ background:rgba(250,244,229,.92); border-bottom:1px solid var(--rule); }

/* Consistency sweep: the hero H1 is the most prominent type on the page — force it
   to the house display face even when a class-based rule would otherwise win. */
h1 { font-family: 'Cinzel', Georgia, serif !important; }
