/* ============================================================
   PLAT — Shared Brand System
   "Your real estate, clearly."
   ============================================================ */

:root {
  /* Core palette — from brand sheet */
  --teal:        #2AADA3;   /* primary brand */
  --teal-deep:   #0E7A72;   /* darker teal */
  --teal-light:  #4DC8BE;   /* lighter teal */
  --teal-dark:   #0F2B2A;   /* dark-mode surface / deep ground */
  --teal-card:   #163633;   /* dark-mode card */
  --teal-strip:  #1E4D4A;   /* dark-mode hero strip */

  --gold:        #C9923A;   /* brass — premium / AI / alerts */
  --gold-light:  #E8B870;   /* brass on dark */
  --gold-deep:   #A07028;   /* brass text on light */

  --cream:       #F5F0E8;   /* warm light surface */
  --cream-2:     #FBF6EE;   /* warmer panel */
  --white:       #FFFFFF;

  --ink:         #1A1A14;   /* near-black warm */
  --ink-2:       #3D3D30;   /* body */
  --ink-3:       #5A5A4A;   /* secondary */
  --muted:       #8A8878;   /* labels / captions */
  --border:      #DDD8CE;   /* hairlines on light */
  --border-2:    #E8E4DA;   /* softer hairline */

  --neg:         #B05040;   /* negative cash flow (light) */
  --neg-dark:    #E07060;   /* negative (dark) */

  /* Fonts */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Barlow', system-ui, sans-serif;
  --cond:  'Barlow Condensed', 'Barlow', sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, monospace;

  /* Spacing rhythm */
  --gut: 48px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* -- Shared utility type -- */
.kicker {
  font-family: var(--cond);
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal-deep);
}
.kicker::before {
  content: ''; display: block; width: 26px; height: 2px;
  background: var(--teal); flex-shrink: 0;
}
.kicker.on-dark { color: var(--teal); }
.kicker.on-dark::before { background: var(--teal); }
.kicker.gold { color: var(--gold-deep); }
.kicker.gold::before { background: var(--gold); }

.serif { font-family: var(--serif); }
.mono  { font-family: var(--mono); }

/* Gradient wordmark — teal family only, used sparingly */
.wm-grad {
  background: linear-gradient(135deg, #0E7A72 0%, #2AADA3 55%, #4DC8BE 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Hairline rule */
.rule { border: none; border-top: 1px solid var(--border); }

/* The Plat mark (survey parcel grid) wrapper */
.plat-mark { display: block; }

/* Buttons */
.btn {
  font-family: var(--cond);
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--cream);
  cursor: pointer; text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-teal { background: var(--teal); border-color: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

::selection { background: var(--teal); color: var(--white); }
